Advertisement
Guest User

Untitled

a guest
Apr 14th, 2020
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 KB | None | 0 0
  1. DUSK FOX
  2.  
  3.  
  4. ::-moz-selection {background-color: rgba(255, 99, 71, 0.8) !important;}
  5. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  6.  
  7.  
  8.  
  9.  
  10.  
  11. /* menu */
  12. menupopup, popup,
  13. popup > menu > menupopup,
  14. menupopup > menu > menupopup,
  15. #context-navigation {
  16. -moz-appearance: none !important;
  17. background: #282828 !important;
  18. border: none !important;
  19. padding: 2px 0px 2px 0px !important;
  20. }
  21.  
  22. menupopup menuseparator {
  23. -moz-appearance: none !important;
  24. background: #323232 !important;
  25. margin: 2px 0px 2px 0px !important;
  26. padding: 0 !important;
  27. border-top: none !important;
  28. border-color: transparent !important;
  29. }
  30.  
  31. menupopup menu, menuitem{
  32. -moz-appearance: none !important;
  33. color: #eeeef2 !important;
  34. font-family: Calibri !important;
  35. }
  36.  
  37. menupopup menu:hover, menuitem:hover, context-navigation > menuitem:hover {
  38. -moz-appearance: none !important;
  39. color: #eeeef2 !important;
  40. background-color: rgba(255, 99, 71, 0.8) !important;
  41. }
  42.  
  43. /* selected option colour */
  44. .autocomplete-richlistitem[selected],
  45. .View-row[selected] {
  46. background-color: #333333 !important;
  47. }
  48.  
  49. /* find bar (ctrl + f) */
  50. .findbar-container {
  51. background: #282828 !important;
  52. color: #eeeef2 !important;
  53. border-color: 0 !important;
  54. }
  55.  
  56. .findbar-closebutton {
  57. background-color: #282828 !important;
  58. color: #eeeef2 !important;
  59. }
  60.  
  61. .findbar-find-previous,
  62. .findbar-find-next{
  63. background-color: #282828 !important;
  64. border-color: #1c1c1c !important;
  65. }
  66.  
  67. .findbar-find-previous:hover,
  68. .findbar-find-next:hover {
  69. cursor: pointer;
  70. }
  71.  
  72. .findbar-textbox {
  73. background-color: #282828 !important;
  74. border-color: #1c1c1c !important;
  75. }
  76.  
  77. #PopupAutoCompleteRichResult {
  78. margin-left: 0px !important;
  79. }
  80.  
  81. /** bookmarks **/
  82.  
  83. /* Color of bookmarks text */
  84. .bookmark-item[container] {
  85. color: #eeeef2 !important;
  86. }
  87.  
  88. /* Color of bookmarks icon */
  89. .bookmark-item {
  90. fill: #eeeef2 !important;
  91. }
  92.  
  93. /* Global (default) */
  94. .bookmark-item:not([container]){
  95. fill: #eeeef2 !important;
  96. }
  97.  
  98. /* Icon */
  99. .menu-iconic-text {
  100. color: white !important;
  101. }
  102.  
  103.  
  104. /* Hover on children color */
  105. .bookmark-item:not([container]):hover {
  106. background-color: rgba(255, 99, 71, 0.8) !important;
  107. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement