Advertisement
Guest User

bookmarks only i think

a guest
Nov 16th, 2017
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.04 KB | None | 0 0
  1. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
  2.  
  3. :root {
  4. --arrowpanel-background: #1c1c1c!important;
  5. --arrowpanel-color: #f9f9fa!important;
  6. --panel-background: #1c1c1c!important;
  7. }
  8.  
  9. .PanelUI-subView{
  10. -moz-appearance: none !important;
  11. color: #f9f9fa !important;
  12. background-color: #1c1c1c !important;
  13. }
  14.  
  15. .Panel{
  16. -moz-appearance: none !important;
  17. color: #f9f9fa !important;
  18. background-color: #1c1c1c !important;
  19. }
  20.  
  21. .panel-arrowcontent {
  22. -moz-appearance: none !important;
  23. padding: var(--arrowpanel-padding);
  24. color: #f9f9fa!important;
  25. background-color: #1c1c1c !important;
  26. background-clip: padding-box;
  27. border: 1px solid var(--arrowpanel-border-color);
  28. box-shadow: 0 0 4px hsla(0,0%,0%,.2);
  29. margin: 4px;
  30. }
  31.  
  32. menupopup {
  33. background: #1c1c1c !important;
  34. color: #f9f9fa !important;
  35. }
  36.  
  37. #bookmarksMenuPopup, #bookmarksMenuPopup menupopup {
  38. -moz-appearance: none !important;
  39. background-color: #1c1c1c !important;
  40. }
  41. #bookmarksMenuPopup menu, #bookmarksMenuPopup menuitem {
  42. -moz-appearance: none !important;
  43. color: #f9f9fa !important;
  44. background-color: #1c1c1c !important;
  45. }
  46.  
  47. #bookmarks-menu{
  48. -moz-appearance: none !important;
  49. color: #f9f9fa !important;
  50. background-color: #1c1c1c !important;
  51. }
  52.  
  53. :root{
  54. --in-content-page-color: #f9f9fa !important;
  55. --in-content-page-background: #0c0c0d !important;
  56. --in-content-text-color: #f9f9fa !important;
  57. --in-content-selected-text: #fff;
  58. --in-content-box-background: #fff;
  59. --in-content-box-background-odd: #f3f6fa;
  60. --in-content-box-background-hover: #ebebeb;
  61. --in-content-box-background-active: #dadada;
  62. --in-content-box-border-color: #d7d7db;
  63. --in-content-item-hover: rgba(0,149,221,0.25);
  64. --in-content-item-selected: #0a84ff;
  65. --in-content-border-highlight: #0a84ff;
  66. --in-content-border-focus: #0a84ff;
  67. --in-content-border-color: #d7d7db;
  68. --in-content-category-border-focus: 1px dotted #0a84ff;
  69. --in-content-category-text: #f9f9fa !important;
  70. --in-content-category-text-active: #0c0c0d;
  71. --in-content-category-text-selected: #0a84ff;
  72. --in-content-category-text-selected-active: #0060df;
  73. --in-content-category-background-hover: rgba(12,12,13,0.1);
  74. --in-content-category-background-active: rgba(12,12,13,0.15);
  75. --in-content-category-background-selected-hover: rgba(12,12,13,0.15);
  76. --in-content-category-background-selected-active: rgba(12,12,13,0.2);
  77. --in-content-tab-color: #424f5a;
  78. --in-content-link-color: #0a8dff;
  79. --in-content-link-color-hover: #0060df;
  80. --in-content-link-color-active: #003eaa;
  81. --in-content-link-color-visited: #0a8dff;
  82. --in-content-primary-button-background: #0a84ff;
  83. --in-content-primary-button-background-hover: #0060df;
  84. --in-content-primary-button-background-active: #003EAA;
  85. --in-content-table-border-dark-color: #d1d1d1;
  86. --in-content-table-header-background: #0a84ff;
  87. }
  88.  
  89. .panel-subview-body {
  90. overflow-y: auto;
  91. overflow-x: hidden;
  92. -moz-box-flex: 1;
  93. background-color: #0c0c0c !important;
  94. color: #f0f0f0;
  95. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement