Advertisement
Guest User

Untitled

a guest
Jun 4th, 2019
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" );
  2.  
  3. /*Changer la couleur des onglets en arrière-plan:*/
  4. .tab-background {
  5.     background-attachment: none!important;
  6.     background-color: #d6d6d6!important;
  7.     background-image: none!important;
  8. }
  9.  
  10. /*Afficher en gras le texte de l'onglet courant*/
  11.   #TabsToolbar .tabbrowser-tab[selected] {
  12.     color: black !important;
  13.     font-weight: bold !important;
  14. }
  15.  
  16. /*Changer la couleur de l'onglet courant:*/
  17. .tab-background[selected="true"] {
  18.     background-attachment: none!important;
  19.     background-color: #ffffff!important;
  20.     background-image: none!important;
  21. }
  22.  
  23. /*enlever la ligne bleue sur l'onglet actif*/
  24. #tabbrowser-tabs {
  25.     --tab-line-color: var(--lwt-accent-color) !important;
  26. }
  27.  
  28. /*inverser la couleur du tooltip status*/
  29. #statuspanel-label {
  30.   background: black !important;
  31.   color: white !important }
  32.  
  33. /*virer la marge du volet lateral*/
  34. #sidebar-header {
  35.   margin-top: -9px !important;
  36.   margin-bottom: -15px !important;
  37. }
  38.  
  39.  /*Apparence des onglets non chargés*/
  40. .tabbrowser-tab[pending] .tab-label{
  41. color: grey !important;
  42. /*font-weight: bold; !important;*/
  43. font-style: italic !important;
  44.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement