Támogatás keresése

Kerülje el a támogatási csalásokat. Sosem kérjük arra, hogy hívjon fel egy telefonszámot vagy osszon meg személyes információkat. Jelentse a gyanús tevékenységeket a „Visszaélés bejelentése” lehetőséggel.

További tudnivalók

A témacsoportot lezárták és archiválták. Tegyen fel új kérdést, ha segítségre van szüksége.

Part of my userChrome.css file does not execute

  • 1 válasz
  • 1 embernek van ilyen problémája
  • 1 megtekintés
  • Utolsó üzenet ettől: Zenos

more options

I am trying to enlarge the Thunderbird font for the message listing in my inbox, etc., under Windows 10. This is a new computer. Part of my userChrome.css file must be executing, because the background is yellow. But the font and size part has no effect. Here is my file. Thank you very much! Brenda2018

/*

  • Do not remove the @namespace line -- it's required for correct functioning
*/

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

/*Background colour for message list*/

  1. threadTree > treechildren::-moz-tree-row {
   background-color: #fffacd !important;

}

/*

* Make all the default font sizes xxx:
  • /
  • {
   font-family: "Calibri" !important;
   font-size: 10pt !important;   

}

I am trying to enlarge the Thunderbird font for the message listing in my inbox, etc., under Windows 10. This is a new computer. Part of my userChrome.css file must be executing, because the background is yellow. But the font and size part has no effect. Here is my file. Thank you very much! Brenda2018 /* * Do not remove the @namespace line -- it's required for correct functioning */ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /*Background colour for message list*/ #threadTree > treechildren::-moz-tree-row { background-color: #fffacd !important; } /* * Make all the default font sizes xxx: */ * { font-family: "Calibri" !important; font-size: 10pt !important; }

Kiválasztott megoldás

/*

 * Do not remove the @namespace line -- it's required for correct functioning
 */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 
/*Background colour for message list*/
#threadTree > treechildren::-moz-tree-row {
   background-color: #fffacd !important;
}
/* 
 * Make all the default font sizes xxx:
 */
* {
   font-family: "Calibri" !important;
   font-size: 10pt !important;   
}

Grasping at straws here; is the double colon after treechildren correct?

Hint: on this forum, asterisks and hashes are used for lists. Insert a leading space to defeat this and use fixed-width font.

Válasz olvasása eredeti szövegkörnyezetben 👍 0

Összes válasz (1)

more options

Kiválasztott megoldás

/*

 * Do not remove the @namespace line -- it's required for correct functioning
 */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 
/*Background colour for message list*/
#threadTree > treechildren::-moz-tree-row {
   background-color: #fffacd !important;
}
/* 
 * Make all the default font sizes xxx:
 */
* {
   font-family: "Calibri" !important;
   font-size: 10pt !important;   
}

Grasping at straws here; is the double colon after treechildren correct?

Hint: on this forum, asterisks and hashes are used for lists. Insert a leading space to defeat this and use fixed-width font.