Advertisement
Guest User

Untitled

a guest
Mar 24th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. /* Tab bar customization */
  2. :root:-moz-lwtheme-brighttext {
  3. --chrome-background-color: #424242 !important;
  4. --chrome-color: #8f8f8f !important;
  5. --chrome-secondary-background-color: #363636 !important;
  6. --toolbox-border-bottom-color: #2e2e2e !important;
  7. }
  8. .tabbrowser-tab[visuallyselected="true"]:-moz-lwtheme {
  9. color: #dddddd !important;
  10. }
  11.  
  12. /* Fixing tabGroups menu */
  13. #tabGroups-tabview-button .toolbarbutton-text {
  14. max-height: inherit !important;
  15. }
  16. toolbar {
  17. min-height: 37px !important;
  18. }
  19. toolbar .toolbarbutton-1 {
  20. padding: 3px 2px !important;
  21. }
  22.  
  23. /* Container tab borders */
  24. [data-identity-color="blue"] {
  25. --identity-tab-color: #7193F7 !important;
  26. --identity-icon-color: #7193F7 !important;
  27. }
  28. [data-identity-color="green"] {
  29. --identity-tab-color: #71F78A !important;
  30. --identity-icon-color: #71F78A !important;
  31. }
  32. [data-identity-color="orange"] {
  33. --identity-tab-color: #F2DE73 !important;
  34. --identity-icon-color: #F2DE73 !important;
  35. }
  36. [data-identity-color="pink"] {
  37. --identity-tab-color: #F771E7 !important;
  38. --identity-icon-color: #F771E7 !important;
  39. }/*Darken panels to match theme*/
  40. .panel-arrow { filter: invert(33%); }
  41. .panel-subview-body,#appMenu-zoomReset-button {
  42. color: var(--lwt-text-color) !important;
  43. background: var(--url-and-searchbar-background-color) !important;}
  44. .panel-subview-footer,[class^="PanelUI-"] {
  45. color: var(--lwt-text-color) !important;
  46. background: var(--toolbar-bgcolor) !important;}
  47. #PopupAutoCompleteRichResult .ac-title-text{
  48. color: var(--lwt-text-color) !important;
  49. filter: opacity(.7);}
  50. #PopupAutoCompleteRichResult .autocomplete-richlistbox {
  51. background: var(--url-and-searchbar-background-color) !important;}
  52. /*stops possible clashes with extension popups*/
  53. .webextension-popup-browser {
  54. background: #fff;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement