sanitysama

userChrome post-AustralAIDS

May 28th, 2014
420
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.44 KB | None | 0 0
  1. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  2. /* tab & url bar font */
  3. window {
  4.     font-family: Segoe UI !important;
  5.     font-size: 9pt !important;
  6.     margin: -1px !important
  7.     }
  8. /* transparency */
  9. #TabsToolbar, #main-menubar, #tab-view-deck, #navigator-toolbox > toolbar, #browser-bottombox, findbar {
  10.     background: transparent !important
  11.     }
  12. /* menu bar */
  13. #main-window menubar > menu {
  14.     -moz-appearance: none !important;
  15.     border: 0 !important;
  16.     color: rgba(55,55,55,0.7) !important;
  17.     font-family: Segoe UI !important;
  18.     font-size: 10px !important;
  19.     font-weight: 400 !important;
  20.     max-height: 12px !important;
  21.     text-shadow: 1px 1px 1px rgba(0,0,0,.15) !important;
  22.     transition: color .15s ease-in-out
  23.     }
  24. #main-window menubar:hover > menu {
  25.     color: rgba(255,255,255,0.9) !important
  26.     }
  27. #main-window menubar menu:hover, #main-window menubar menu:focus {
  28.     background-color: rgba(0,0,0,.1) !important
  29.     }
  30. #main-window #toolbar-menubar {
  31.     max-height: 14px !important;
  32.     min-height: 12px !important
  33.     }
  34. /* urlbar */
  35. #urlbar {
  36.     text-shadow: 0 0 3px rgba(205,205,205,0.5) !important
  37.     }
  38. #searchbar {
  39.     opacity: .7 !important
  40.     }
  41. /* bars */
  42. #urlbar {
  43.     background-color: rgba(255,255,255,0.6) !important
  44.     }
  45. /* separator */
  46. #ctr_puib_separator {
  47.     display: none !important
  48.     }
  49. /* flash nag */
  50. notification[value="plugin-hidden"] {
  51.     display: none !important
  52.     }
  53. /* de-australis tabs */
  54. .tab-background {
  55.     opacity: 0 !important
  56.     }
  57. /* remove tab transitions */
  58. .tabbrowser-tab:not([pinned]) {
  59.     -moz-transition-property: none !important
  60.     }
  61. /* restore TMP tab colors */
  62.     /* other tabs */
  63.     .tabbrowser-tab:not([selected="true"]) {
  64.        background-image: linear-gradient(to top,
  65.            rgba(234,242,251,.7),
  66.            rgba(238,245,252,.7),
  67.            rgba(251,253,255,.7)) !important
  68.        }
  69.     /* unloaded tabs */
  70.     .tabbrowser-tab[pending],
  71.     .tabbrowser-tab[pending]:hover {
  72.        background-image: linear-gradient(to top,
  73.            rgba(234,242,251,.35),
  74.            rgba(238,245,252,.35),
  75.            rgba(251,253,255,.35)) !important;
  76.        background-color: transparent !important;
  77.        color: transparent !important; /* why doesn't this work */
  78.        font-style: italic !important;
  79.        text-shadow: 0 0 0 rgba(255,0,0,1) !important
  80.        }
  81.     /* unread tabs */
  82.     .tabbrowser-tab[unread]:not([selected="true"]):not(:hover),
  83.     .tabbrowser-tab[unread]:not([selected="true"]) {
  84.        color: transparent !important; /* why */
  85.        text-shadow: 0 0 0 rgba(255,0,0,1) !important
  86.        }
  87. /* borders */
  88. #content-deck { /* there is a border here that cannot be removed */
  89.     border: 0 none !important
  90.     }
  91. #nav-bar { /* (above url bar) */
  92.     border: 0 none transparent !important;
  93.     box-shadow: none !important;
  94.     margin: 0 !important
  95.     }
  96. #navigator-toolbox { /* can't get rid of border use margin instead */
  97.     border: 0 none transparent !important;
  98.     margin-bottom: -2px !important
  99.     }
  100. #TabsToolbar {
  101.     margin-bottom: 1px !important
  102.     }
  103. /* necessary to toggle navbar in fullscreen for some reason */
  104. #fullscr-toggler {
  105.     margin-top: 3px
  106.     }
  107. /* find bar */
  108. .findbar-container spacer {
  109.     visibility: collapse
  110.     }
  111. /* download timer color */
  112. #downloads-button * {
  113.     color: white !important;
  114.     text-shadow: black 0px 0px 2px !important
  115.     }
Advertisement
Add Comment
Please, Sign In to add comment