Advertisement
Guest User

Firefox Reader View Toolbar Inherit Background Color

a guest
Mar 16th, 2018
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. /*======= Firefox Reader View Toolbar Inherit Background. =======*/
  2.  
  3. /*======= Controls toolbar =======*/
  4.  
  5. .toolbar {
  6. font-family: Helvetica, Arial, sans-serif;
  7. position: fixed;
  8. height: 100%;
  9. top: 0;
  10. left: 0;
  11. margin: 0;
  12. padding: 0;
  13. list-style: none;
  14. background-color: #333333 !important;
  15. -moz-user-select: none;
  16. border-right: 1px solid #333333 !important;
  17. z-index: 1;
  18. /*visibility: hidden !important;*/
  19. }
  20.  
  21. .button {
  22. display: block;
  23. background-size: 24px 24px;
  24. background-repeat: no-repeat;
  25. color: #333;
  26. background-color: #333333 !important;
  27. height: 40px;
  28. padding: 0;
  29. }
  30.  
  31. .toolbar .button {
  32. width: 40px;
  33. background-position: center;
  34. margin-right: -1px;
  35. border-top: 0;
  36. border-left: 0;
  37. border-right: 1px solid #333333 !important;
  38. border-bottom: 1px solid #333333 !important;
  39. }
  40.  
  41. /*======= Popup =======*/
  42.  
  43. .dropdown-popup {
  44. min-width: 300px;
  45. text-align: start;
  46. position: absolute;
  47. left: 48px; /* offset to account for toolbar width */
  48. z-index: 1000;
  49. background-color: #2B2B2B !important;
  50. visibility: hidden;
  51. border-radius: 4px;
  52. border: 1px solid #b5b5b5;
  53. border-bottom-width: 0;
  54. box-shadow: 0 1px 3px #c1c1c1;
  55. }
  56.  
  57. /*======= Toolbar icons =======*/
  58.  
  59. .close-button {
  60. background-image: url("chrome://global/skin/reader/RM-Close-24x24.svg");
  61. -moz-context-properties: fill;
  62. fill: #808080;
  63. height: 68px;
  64. background-position: center 8px;
  65. /* visibility: hidden !important; */
  66. }
  67.  
  68. .style-button {
  69. background-image: url("chrome://global/skin/reader/RM-Type-Controls-24x24.svg");
  70. /* visibility: hidden !important; */
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement