/*
________________________________________________________________________
|                  |                                                    |
|          Title:  |  Remove Extra Padding From the Navigation Bar      |
|    Description:  |  Condenses Back Forward... buttons for more space  |
|         Author:  |  -=Ben=-                                           |
|   Date Created:  |  June 2, 2008                                      |
|   Last Updated:  |  June 2, 2008                                      |
|        Version:  |  1.0.0.0                                           |
|__________________|____________________________________________________|

*/



@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);




/* Remove extra padding from the Navigation Bar Code1: */

.toolbarbutton-1, .toolbarbutton-menubutton-button 
{
  padding: 2px 3px !important;
}

.toolbarbutton-1[checked="true"], .toolbarbutton-1[open="true"],
.toolbarbutton-menubutton-button[checked="true"],
.toolbarbutton-menubutton-button[open="true"] 
{
  padding: 4px 1px 1px 4px !important;
}




/* Remove extra padding from the Navigation Bar Code2: */

.toolbarbutton-1, .toolbarbutton-menubutton-button 
{
  padding: 0px !important;
  margin: 0px !important;
}