Advertisement
Guest User

Untitled

a guest
May 24th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. /* Unselected Color */
  2. #TabsToolbar {
  3. color: var(--main-text) !important; /*text color*/
  4. }
  5.  
  6. /* Selected Color */
  7. .tab-background[selected="true"] {
  8. background-attachment: none!important;
  9. background-color: var(--alt-bg) !important; /* bg color */
  10. background-image: none!important;
  11. }
  12. #TabsToolbar .tabbrowser-tab[selected] {
  13. color: var(--secondary-text) !important; /*text color*/
  14. }
  15.  
  16. /* New tab button color */
  17. #new-tab-button, .tabs-newtab-button {
  18. list-style-image: url("newtab.png") !important;
  19. -moz-image-region: auto !important;
  20. }
  21.  
  22. /* Close tab color */
  23. #TabsToolbar .close-icon {
  24. filter: opacity(17%) !important;
  25. }
  26.  
  27. /* FAVICONS Color */
  28. /* Default */
  29. .tab-icon-image
  30. {
  31. filter: grayscale(100%) opacity(90%) !important;
  32. /*display: none !important;*/
  33. }
  34. /* Selected */
  35. .tabbrowser-tab[selected] .tab-icon-image
  36. {
  37. filter: grayscale(50%) opacity(90%) !important;
  38. /*display: none !important;*/
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement