Advertisement
Guest User

Untitled

a guest
Oct 30th, 2014
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.21 KB | None | 0 0
  1.   @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
  2.    
  3.     #TabsToolbar {
  4.      height: 20px !important;
  5.      background-image: none !important;
  6.     }
  7.     .tabbrowser-tab {
  8.      margin-top: 1px !important;
  9.      margin-right: 0 !important;
  10.      margin-bottom: 0 !important;
  11.      padding: 0px 5px !important;
  12.      border-style: none !important;
  13.      border-width: 0 !important;
  14.      border-radius: 0 !important;
  15.      border-image: none !important;
  16.      background: transparent !important;
  17.     }
  18.     .tabbrowser-tab .tab-text {
  19.      text-align: center;
  20.      padding-right: 10px;
  21.      padding-left: 10px;
  22.      margin-top: 0px !important;
  23.      border-bottom: solid rgba(255,255,255,.0);
  24.      transition: .5s;
  25.      margin-top: 0px !important;
  26.     }
  27.     .tabbrowser-tab:hover .tab-text {
  28.      border-bottom: solid #8AA37B !important;
  29.      transition: .5s;
  30.     }
  31.     #main-window .tabbrowser-tab[selected] .tab-text{
  32.      border-bottom: solid #8AA37B;
  33.      transition: .5s;
  34.     }
  35.     .tabbrowser-tab .tab-icon-image, .tab-throbber, .tab-close-button {
  36.      display: none  !important;
  37.     }
  38.     .scrollbutton-up,
  39.     .scrollbutton-down {
  40.         display: none !important;
  41.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement