Advertisement
SingularityUtopia

Moz Firefox Style Editing

Aug 3rd, 2014
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. This is the beginning of my style modifications for Firefox
  2.  
  3. @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
  4.  
  5.  
  6.  
  7. @media not all and (-moz-windows-glass)
  8.  
  9. {
  10. sidebarheader:not(:-moz-lwtheme),
  11. #navigator-toolbox > *:not(#TabsToolbar):not(#toolbar-menubar):not(:-moz-lwtheme),
  12. #browser-bottombox:not(:-moz-lwtheme),
  13. #main-window[tabsontop="false"] :-moz-any(#TabsToolbar, #toolbar-menubar):not(:-moz-lwtheme),
  14. #main-window[chromehidden=""][tabsontop="false"]:not(:-moz-lwtheme),
  15. #main-window findbar
  16.  
  17. {
  18.  
  19. background-color: RGB(212, 208, 200) !important;
  20.  
  21. }
  22. }
  23.  
  24. #toolbar-menubar #menubar-items
  25.  
  26. {
  27. background:RGB(222, 218, 210);
  28. border-radius: 5px !important;
  29. box-shadow: inset grey 0px 0px 28px -13px;
  30. border: 1px solid #DED9D7;
  31. margin:0px 1px 0px 1px;
  32. padding: 2px;
  33. background-color: #E6E1DF !important;
  34. transition: all 0.4s ease-in-out;
  35. }
  36.  
  37. #toolbar-menubar #menubar-items:hover
  38.  
  39. {
  40. background-color: #EDE8E6 !important;
  41. }
  42.  
  43.  
  44. toolbarbutton.bookmark-item:hover
  45.  
  46. {
  47. transition: all 0.07s ease-in-out;
  48. background-color: #E6E1DF !important;
  49. border-radius: 4px;
  50. border-width: 1px !important;
  51. box-shadow: inset white 0px 1px, inset white 0px 1px 5px -2px, inset #B3ACAA 0px -12px 22px -23px !important;
  52. border-color: #A3A3A3 !important;
  53. text-shadow: white 1px 1px 1px;
  54. padding: 0px 3px 0px 3px !important;
  55. }
  56.  
  57. toolbarbutton.bookmark-item:active
  58.  
  59. {
  60. padding: 2px 3px 0px 3px !important;
  61. background-color:white!important;
  62. }
  63.  
  64. toolbarbutton.bookmark-item
  65.  
  66. {
  67. -moz-appearance:none !important;
  68. padding: 0px 3px 0px 3px !important;
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement