Advertisement
hu6

userChrome.css

hu6
Dec 30th, 2015
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.72 KB | None | 0 0
  1. /* AGENT SHEET */
  2. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  3.  
  4. /* Change all UI fonts to Charcoal*/
  5. * {
  6.   font-family: Charcoal !important;
  7.  font-size: 10px !important;
  8. }
  9.  
  10. /* For UI consistency */
  11. .searchbar-textbox {
  12.   height: 28px !important;
  13. }
  14.  
  15. /* Remove broken search button from searchbar toolbar item */
  16. .search-go-button {
  17.   display: none !important;
  18. }
  19.  
  20. /* Removes bold font from the nostalgia search button [BEST USED WITH FONT SUCH AS Charcoal.ffil*/
  21. #search-button  .button-text {
  22.   font-weight: normal !important;
  23. }
  24.  
  25. /* Remove white flashes */
  26. tabbrowser tabpanels, #appcontent > #content {
  27.   background: #cecece !important;
  28. }
  29.  
  30. /* Fix spacing between favicon and sitename in current seamonkey [2.34] bookmarks toolbar */
  31. #PlacesToolbarItems  .toolbarbutton-icon {
  32.   margin-right: 3px !important;
  33. }
  34.  
  35. /* For UI Consistency*/
  36. #FindToolbar {
  37.   border: none !important;
  38. }
  39.  
  40. /* Revert dropbar to netscape 4 look [above and slightly to the right of the icons]*/
  41. .toolbarbutton-menubutton-dropmarker {
  42.   margin-left: -22px !important;
  43.   margin-top: -28px !important;
  44. }
  45.  
  46. /* Change navigator-throbbers icon to the classic netscape icon... so retro!*/
  47. .button-image-icon {
  48.  
  49.   list-style-image: url("chrome://communicator/skin/brand/Netscape_Blue.png") !important;
  50.   margin-right: 1px !important;
  51.   margin-bottom: 0px !important;
  52.   border: 1px solid #1b1b1b;
  53.  
  54.  
  55.   /*list-style-image: url("chrome://communicator/skin/brand/throbber-single.png") !important;*/
  56.  
  57. }
  58.  
  59. /* Messing around with the spacing of the netscape icon's box */
  60. #navigator-throbber{
  61.   margin-right: 2px !important;
  62.   margin-left:2px !important;
  63.   margin-bottom: 3px !important;
  64.   border:none !important;
  65.   /*border:none !important;*/
  66. }
  67.  
  68. /* Make throbber sillier */
  69. #navigator-throbber:active .button-image-icon {
  70.   list-style-image: url("chrome://communicator/skin/brand/Netscape_Blue_Pressed.png") !important;
  71. }
  72.  
  73. #navigator-throbber[busy] .button-image-icon {
  74.   list-style-image: url("chrome://communicator/skin/brand/NCSA_Mosaic_throbber_Trans.gif") !important;
  75.   margin-right: 1px !important;
  76.   margin-left:2px !important;    
  77.   margin-bottom: 0px !important;
  78.   border:none !important;
  79.  
  80.  
  81.   /*list-style-image: url("chrome://communicator/skin/brand/throbber-anim.png") !important;*/
  82.  
  83.   /*margin-right: 3px !important;*/
  84.   /*border: 1px solid #1b1b1b;*/
  85. }
  86.  
  87. /* Fix chatzilla icon */
  88. #mini-irc > .toolbarbutton-icon{
  89.   list-style-image: url("chrome://messenger/skin/icons/folder-newsgroup.png") !important;
  90.   margin-left: 2px !important;
  91. }
  92.  
  93. /* Fix site loading icon */
  94. .tabbrowser-tab[busy]  .tab-icon {
  95.   list-style-image: url("chrome://communicator/skin/icons/loading.gif");
  96. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement