@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

/*
 * Adjust font and size of Bookmarks Toolbar items
 */
#bookmarks-ptf .toolbarbutton-text {
  /* font-size: 10px !important;*/
  font-size: 8pt !important;
}
/*
 * Squeeze the space between each item
 */
#bookmarks-ptf toolbarbutton {
   padding-left: 0px !important;
   padding-right: 0px !important;
}
/*
 * Show dropdown arrow for items that hold multiple bookmarks.
 * e.g. bookmark folders or RSS feeds (like "Latest Headlines")
 */
#bookmarks-ptf toolbarbutton[container="true"]  .toolbarbutton-menu-dropmarker {
   display: -moz-box !important;
   padding-right: 2px !important;
}
/*
 * Hide icon for these items (we're already showing the dropdown arrow)
 */
#bookmarks-ptf toolbarbutton[container="true"] .toolbarbutton-icon {
   display: none;
}
/*
 * Also hide icon for items that hold just a single bookmark
 */
#bookmarks-ptf toolbarbutton:not([container="true"]) .toolbarbutton-icon {
   display: none;
}
/*
 * Use a dotted line as separator between each item...
 */
#bookmarks-ptf toolbarbutton .toolbarbutton-text {
   border-left: dotted 1px;
   padding-left: 2px;
   padding-right: 2px;
}
/*
 * ... except when it's the first item on the toolbar
 */
#bookmarks-ptf toolbarbutton:first-child .toolbarbutton-text {
   border-left: none !important;
}