Здравствуйте. Нужна ваша помощь :cool:
Нужно добиться чередования фона в списке писем, как на скриншоте ниже.
По умолчанию, в свежеустановленном Thunderbird цвет фона списка сообщений - белый (без чередования).


r_IdQoP0U2cCaKSmEVpjNXxawhrNyQn-e-SR8EMKC15ZYkkQAt_K65r1O22Tvtge5F_tVAV_8SgvHDKep6wbyg==?uid=0&filename=thund.jpg&disposition=inline&hash=&limit=0&content_type=image%2Fjpeg&tknv=v2&owner_uid=109946907&size=2048x2048

Изображение не открывается, но как-то так в userchrome.css:

скрытый текст

Выделить код

Код:

/* Do not remove the @namespace line -- it's required for correct functioning  */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */

/* folder list spacing */

#folderTree treechildren::-moz-tree-row    {
  height: 24px !important; 
 background-color: #F7F9EA !important;
}

#threadTree treechildren::-moz-tree-row(odd) {
  -moz-appearance: none !important;
  background-image: none !important;
  background-color:#F7F9EA !important;
}

#threadTree treechildren::-moz-tree-row(selected) {
  background-color: -moz-Dialog !important;
}
#threadTree treechildren::-moz-tree-row(selected, focus) {
  background-color: Highlight !important;
}

#folderTree treechildren::-moz-tree-row(selected) {
  -moz-appearance: none !important;
  background-image: none !important;
  background-color: Highlight !important;
}
#folderTree treechildren::-moz-tree-row(selected, focus) {
  -moz-appearance: none !important;
  background-image: none !important;
  background-color: Highlight !important;
}