We Recommend

CSS: The Definitive Guide CSS: The Definitive Guide
Provides you with a comprehensive guide to CSS implementation, along with a thorough review of all aspects of CSS 2.1. Updated to cover Internet Explorer 7, Microsoft's vastly improved browser, this new edition includes content on positioning, text wrapping (nowrap), lists and generated content, table layout, user interface, paged media, and more.


Posted By

JonnaBlaze on 12/13/07


Tagged


Versions (?)


Who likes this?

2 people have marked this snippet as a favorite

Hirmine
sbbath


UserContent.css


Published in: CSS 


  1. /* Merge Firefox Reload/Stop buttons a la Safari.
  2. Stop button must be placed before Reload button */
  3.  
  4. #stop-button[disabled] { display: none;}
  5.  
  6. #stop-button:not([disabled]) + #reload-button {
  7. display: none;
  8. }
  9.  
  10. /* Hide bookmark icons in the Personal Toolbar */
  11. toolbarbutton.bookmark-item > .toolbarbutton-icon {
  12. display: none; }
  13.  
  14. toolbarbutton.bookmark-item > .toolbarbutton-text {
  15. font-weight: bold; padding-right: 5px; }
  16.  
  17. toolbarbutton.bookmark-item[container="true"] > .toolbarbutton-icon {
  18. display: inline; }
  19.  
  20. /* Remove Bookmark Toolbar folder from the bookmarks menu */
  21. menu[label="Bookmarks Toolbar Folder"] { display: none !important; }

Report this snippet 

You need to login to post a comment.