hu6

seamonkey mods windows

hu6
Jan 1st, 2015
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 8.60 KB | None | 0 0
  1. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  2. /* Make about:blank background same as my system-wide OS9 skin.. */
  3. @-moz-document url(about:blank) {
  4.   html,body { background: #cecece !important; }
  5. }
  6. /* AGENT SHEET */
  7.  
  8.   /* Remove white flashes */
  9.   tabbrowser tabpanels, #appcontent > #content { background: #cecece !important; }
  10.  
  11.   /* Fix spacing between favicon and sitename in current seamonkey [2.34] bookmarks toolbar */
  12.   #PlacesToolbarItems > toolbarbutton:nth-child(1) > .toolbarbutton-icon,
  13.   #PlacesToolbarItems > toolbarbutton:nth-child(2) > .toolbarbutton-icon,
  14.   #PlacesToolbarItems > toolbarbutton:nth-child(3) > .toolbarbutton-icon,
  15.   #PlacesToolbarItems > toolbarbutton:nth-child(4) > .toolbarbutton-icon,
  16.   #PlacesToolbarItems > toolbarbutton:nth-child(5) > .toolbarbutton-icon {
  17.     margin-right: 3px !important;
  18.   }
  19.  
  20.   #FindToolbar{
  21.     border: none !important;
  22.   }
  23.  
  24.   /* Revert dropbar to netscape 4 look [above and slightly to the right of the icons]*/
  25.   .toolbarbutton-menubutton-dropmarker {
  26.     margin-left: -22px !important;
  27.     margin-top: -28px !important;
  28.   }
  29.  
  30.   /* Change navigator-throbbers icon to the classic netscape icon... so retro!*/
  31.   .button-image-icon {
  32.     /*list-style-image: url(http://www.ict.griffith.edu.au/images/Animation/netscape_anim.gif) !important;*/
  33.     list-style-image: url(http://www.noonnoo.com/downloads/browsers/netscape4.8%2832x32%29%28256%29.png) !important;
  34.     margin-right: 1px !important;
  35.     margin-bottom: 0px !important;
  36.     border: 1px solid #1b1b1b;
  37.  
  38.   }
  39.  
  40.   /* Messing around with the spacing of the netscape icon's box */
  41.   #navigator-throbber{
  42.     margin-right: 2px !important;
  43.     margin-left:2px !important;
  44.     /*border:none !important;*/
  45.     margin-bottom: 3px !important;
  46.     border:none !important;
  47.  
  48.   }
  49. #navigator-throbber:active .button-image-icon {
  50. outline: 1px solid white;
  51. }
  52. #navigator-throbber[busy] .button-image-icon{
  53.     list-style-image: url(http://www.ict.griffith.edu.au/images/Animation/netscape_anim.gif) !important;
  54.     margin-right: 3px !important;
  55.     margin-bottom: 0px !important;
  56.     border: 1px solid #1b1b1b;
  57.  
  58. }
  59.  
  60.   /* Fix chatzilla icon */
  61.   #mini-irc > .toolbarbutton-icon{
  62.     list-style-image: url("chrome://messenger/skin/icons/folder-newsgroup.png") !important;
  63.   }
  64.  
  65.   /* Fix site loading icon */
  66.   .tabbrowser-tab[busy]  .tab-icon {
  67.     list-style-image: url("chrome://communicator/skin/icons/loading.gif");
  68.   }
  69.  
  70.   /* TABS - Change tabs back to the pretty old version. Fixes the look from the DISGUSTING current ones. */
  71.  
  72.   tabbrowser {
  73.     border: 0 !important;
  74.   }
  75.  
  76.   tabbox {
  77.     margin: 0;
  78.   }
  79.  
  80.   tabpanels {
  81.     -moz-appearance: none;
  82.   }
  83.  
  84.   .tabs-bottom {
  85.     border-bottom: 3px solid;
  86.     -moz-border-bottom-colors: #888 rgba(0, 0, 0, 0.08);
  87.   }
  88.  
  89.   .tabbrowser-tabs {
  90.     font: icon;
  91.     background-color: rgba(0, 0, 0, 0.1);
  92.     border-top: 1px solid rgba(0, 0, 0, 0.08);
  93.     padding: 0;
  94.     margin: 0;
  95.     -moz-box-align: end;
  96.   }
  97.  
  98.   .tabs-stack {
  99.     margin-top: -1px;
  100.   }
  101.  
  102.   .tab-icon {
  103.     -moz-margin-end: 3px;
  104.     width: 16px;
  105.     height: 16px;
  106.   }
  107.  
  108.   .tabbrowser-tab {
  109.     margin: 0;
  110.     padding: 0;
  111.     list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-item.png");
  112.     border: solid transparent;
  113.     border-width: 0 2px;
  114.     -moz-appearance: none;
  115.   }
  116.  
  117.   .tabbrowser-tab:not([selected="true"]):-moz-locale-dir(ltr),
  118.   .tabbrowser-tab:not([selected="true"]):-moz-locale-dir(rtl):first-child {
  119.     -moz-border-right-colors: transparent rgba(0, 0, 0, 0.19);
  120.   }
  121.  
  122.   .tabbrowser-tab:not([selected="true"]):-moz-locale-dir(ltr):first-child,
  123.   .tabbrowser-tab:not([selected="true"]):-moz-locale-dir(rtl) {
  124.     -moz-border-left-colors: transparent rgba(0, 0, 0, 0.19);
  125.   }
  126.  
  127.   .tabbrowser-tab:not(:first-child) {
  128.     -moz-margin-start: -3px;
  129.   }
  130.  
  131.   .tab-middle {
  132.     padding: 4px 7px;
  133.   }
  134.  
  135.   .tab-middle:-moz-lwtheme {
  136.     background-color: rgba(0, 0, 0, 0.1);
  137.   }
  138.  
  139.   .tab-middle:-moz-lwtheme:not([selected="true"]) > .tab-text {
  140.     opacity: 0.8;
  141.   }
  142.  
  143.   .tab-middle[selected="true"] {
  144.     padding: 1px 7px 4px;
  145.     background-color: #E8E8E8;
  146.   }
  147.  
  148.   .tab-middle[selected="true"]:-moz-lwtheme {
  149.     background-color: transparent;
  150.   }
  151.  
  152.   .tabbrowser-tab:hover > .tab-middle:not([selected="true"]) {
  153.     background-color: rgba(0, 0, 0, 0.1);
  154.   }
  155.  
  156.   .tabbrowser-tab:-moz-lwtheme:hover > .tab-middle:not([selected="true"]) {
  157.     background-color: rgba(0, 0, 0, 0.20);
  158.   }
  159.  
  160.   .tabbrowser-tab[busy] {
  161.     list-style-image: url("chrome://global/skin/icons/loading_16.png");
  162.   }
  163.  
  164.   .tabbrowser-tab[selected="true"] {
  165.     color: #000000;
  166.     text-shadow: none;
  167.     border-radius: 2px;
  168.     border-top-width: 2px;
  169.     -moz-border-top-colors: rgba(0, 0, 0, 0.1) #888;
  170.     -moz-border-left-colors: rgba(0, 0, 0, 0.08) #888;
  171.     -moz-border-right-colors: rgba(0, 0, 0, 0.08) #888;
  172.     margin-top: 1px;
  173.     -moz-user-focus: normal;
  174.   }
  175.  
  176.   .tabbrowser-tab:focus {
  177.     outline: 2px solid -moz-mac-focusring;
  178.     outline-offset: -2px;
  179.     -moz-outline-radius: 5px;
  180.   }
  181.  
  182.   .tabbrowser-tab[beforeselected="true"]:-moz-locale-dir(ltr) {
  183.     -moz-border-right-colors: transparent transparent;
  184.   }
  185.  
  186.   .tabbrowser-tab[beforeselected="true"]:-moz-locale-dir(rtl) {
  187.     -moz-border-left-colors: transparent transparent;
  188.   }
  189.  
  190.   .toolbarbutton-text {
  191.  
  192.   }
  193.  
  194.   .toolbarbutton-icon {
  195.     margin: 0 !important; /* needs to override communicator.css */
  196.   }
  197.  
  198.   /* ::::: Tab scrollbox arrow ::::: */
  199.  
  200.   .scrollbutton-up,
  201.   .scrollbutton-down {
  202.     border: 0;
  203.     padding: 0 4px;
  204.     margin: 0;
  205.   }
  206.  
  207.   .scrollbutton-up:-moz-locale-dir(ltr),
  208.   .scrollbutton-down:-moz-locale-dir(rtl) {
  209.     border-right: 2px solid;
  210.     -moz-border-right-colors: rgba(0, 0, 0, 0.19) transparent;
  211.     /*list-style-image: url("chrome://messenger/skin/icons/tab-arrow-left.png");*/
  212.     -moz-image-region: rect(0, 7px, 11px, 0);
  213.     -moz-appearance: none !important;
  214.     box-shadow: 0 0 0 9px transparent inset;
  215.     -moz-transition: box-shadow 1s ease-out;
  216.   }
  217.  
  218. /*.scrollbutton-up:-moz-locale-dir(ltr):active,
  219. .scrollbutton-down:-moz-locale-dir(rtl):active {
  220.  -moz-appearance: none !important;
  221.  -moz-appearance: -moz-mac-unified-toolbar !important;
  222.  }*/
  223.  
  224.  .scrollbutton-up[disabled="true"]:-moz-locale-dir(ltr),
  225.  .scrollbutton-down[disabled="true"]:-moz-locale-dir(rtl) {
  226.   -moz-image-region: rect(0, 14px, 11px, 7px);
  227.   -moz-border-right-colors: transparent transparent;
  228. }
  229.  
  230. .scrollbutton-down:-moz-locale-dir(ltr),
  231. .scrollbutton-up:-moz-locale-dir(rtl) {
  232.   border-left: 2px solid;
  233.   -moz-border-left-colors: rgba(0, 0, 0, 0.19) transparent;
  234.   /*list-style-image: url("chrome://messenger/skin/icons/tab-arrow-right.png");*/
  235.   -moz-image-region: rect(0, 7px, 11px, 0);
  236.   box-shadow: 0 0 0 9px transparent inset;
  237.   -moz-transition: box-shadow 1s ease-out;
  238.   -moz-appearance: none !important;  
  239. }
  240.  
  241. .scrollbutton-down[notifybgtab="true"] {
  242.   box-shadow: 0 0 0 9px rgba(0, 0, 0, 0.2) inset;
  243.   -moz-transition: none;
  244. }
  245.  
  246. .scrollbutton-down[disabled="true"]:-moz-locale-dir(ltr),
  247. .scrollbutton-up[disabled="true"]:-moz-locale-dir(rtl) {
  248.   -moz-image-region: rect(0, 14px, 11px, 7px);
  249.   -moz-border-left-colors: transparent transparent;
  250. }
  251.  
  252. .scrollbutton-up:hover:not([disabled="true"]),
  253. .scrollbutton-down:hover:not([disabled="true"]) {
  254.   background-color: rgba(0, 0, 0, 0.1);
  255. }
  256.  
  257. .scrollbutton-up:hover:active:not([disabled="true"]),
  258. .scrollbutton-down:hover:active:not([disabled="true"]) {
  259.   background-color: rgba(0, 0, 0, 0.2);
  260. }
  261.  
  262. /* All Tabs Menupopup */
  263. .alltabs-item {
  264.   list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-item.png");
  265. }
  266.  
  267. .alltabs-item[busy] {
  268.   list-style-image: url("chrome://global/skin/icons/loading_16.png") !important;
  269. }
  270.  
  271. /* ::::: close button ::::: */
  272.  
  273. .tabs-closebutton {
  274.   margin: 3px;
  275.   padding: 1px;
  276.   list-style-image: url("chrome://global/skin/icons/close.png");
  277.   -moz-image-region: rect(0, 16px, 16px, 0);
  278. }
  279.  
  280. .tabs-closebutton:hover {
  281.   -moz-image-region: rect(0, 32px, 16px, 16px);
  282. }
  283.  
  284. .tabs-closebutton:active:hover {
  285.   -moz-image-region: rect(0, 48px, 16px, 32px);
  286. }
  287.  
  288. .tabs-newbutton {
  289.   margin: 0;
  290.   padding: 1px;
  291.   list-style-image: url("chrome://navigator/skin/icons/tab-new.gif");
  292. }
  293.  
  294. .tab-drop-indicator-bar {
  295.   height: 11px;
  296.   margin-top: -11px;
  297.   -moz-margin-start: -6px;
  298.   position: relative;
  299. }
  300.  
  301. .tab-drop-indicator {
  302.   height: 11px;
  303.   width: 11px;
  304.   margin-bottom: -5px;
  305.   position: relative;
  306.   list-style-image: url('chrome://navigator/skin/icons/tab-drag-indicator.gif');
  307. }
  308.  
  309. tooltip[tabpreview="true"] {
  310.   max-width: none;
  311. }
Advertisement
Add Comment
Please, Sign In to add comment