/*
 * Edit this file and copy it as userChrome.css into your
 * profile-directory/chrome/
 */

/*
 * This file can be used to customize the look of Mozilla's user interface
 * You should consider using !important on rules which you want to
 * override default settings.
 */

/*
 * Do not remove the @namespace line -- it's required for correct functioning
 */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */


/*
 * For more examples see http://www.mozilla.org/unix/customizing.html
 */


/*
 * Make the search box wider...
 */

#search-container {
  -moz-box-flex: 400 !important;
} 



/* 
 * Hide some of the menu items 
 */
 
/*
menu[label="Bookmarks"] {
display: none !important;
}

menu[label="Go"] {
display: none !important;
}
*/

/* make the icons in the tabs a different size */
/*
.tab-icon {
    min-height:	16px !important;
    min-width:	16px !important;
    margin-top: 4px !important;
    }

tab {
height: 25px !important;
max-height: 25px !important;
} 
*/

/* Place the sidebar on the right edge of the window */
window > hbox {
   direction:rtl;
}
window > hbox > * {
   direction:ltr;
}

#bookmarks-view tree {
-moz-appearance: none !important;
background-color: #F0F0F0 !important;
} 

#content .tabs-closebutton {
display: none !important;
}



/* Change color of active tab */

tab[selected="true"] {
   background-color: rgb(222,218,210) !important;
   color: black !important;
}


/* Change color of normal tabs */
tab {
   background-color: rgb(200,196,188) !important;
   color: gray !important;
}


