/* Simply testing for now until the bubble size can be reduced */
/* Bookmarks Toolbar   Blue for Folders, Red for special bookmarks */
/* ======================================== David McRitchie =======*/
 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

/*Changes to Bookmarks toolbar remove file/folder icons, change folder names to blue, and filenames to red.  Changes do not affect the dropdowns where you will still see the folder/file icons.  The bookmarks drop down width was increased. See these three topics in the userChrome.css code. */

/* Make bookmark folders items bold (900) and navy blue (#0000EE)*/
/*  use 400  #0000E8 on main,  400 #800000 on firefox portable */
 .bookmark-item[type="menu"] > .toolbarbutton-text {  
   font-weight: 500 !important; color:#0000E8 !important;  }
/* make bookmark file items on toolbar red */ /*.bookmark-item, */
 .bookmark-item > .toolbarbutton-text {
  font-weight: 100 !important;   color: red !important;  }

.bookmark-item > .toolbarbutton-text {
  -moz-appearance: none !important;
  background-image: none !important;
  font-size: 8px !important; 
  padding: 0 !important; 
  margin: 0 !important;  }

/* remove folder/file icons from bookmarks toolbar  
 http://www.gfxoasis.com/board/lofiversion/index.php?t11762.html  */
.bookmark-item > .toolbarbutton-icon {display: none !important; } 

/* widen all bookmarks dropdown menus -- Chris Ilias 2007-01-12*/
menu.bookmark-item, menuitem.bookmark-item { max-width: 36em !important; }

