@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);


/*
By banthaz
Version 1.0 (Jun 03 2011)
*/


/************************* SEARCH SUGGESTIONS *************************/


/* The "URL-text" (clutter) - Remove nicely */
.autocomplete-richlistitem[type="omnibar-suggestion-phrase"] .ac-url-box
{
display: none;
}
.autocomplete-richlistitem[type="omnibar-suggestion-phrase"]
{
padding-top: 0 !important;
padding-bottom: 3px !important;
}


/* Colors */
.autocomplete-richlistitem[type="omnibar-suggestion-phrase"]
{
background-color: #CEFAFD;		/* ← Background color */
/*color: #000000;*/  			/* ← Text color */
}


/* Add an icon to the right */
.autocomplete-richlistitem[type="omnibar-suggestion-phrase"] .ac-type-icon
{
list-style-image: url(chrome://global/skin/icons/Search-glass.png); -moz-image-region: rect(0px, 16px, 16px, 0px);
/* (This icon is "A magnifying glass - The one from Search bar" in the "ICONS" part) */
}






/*************************** URL SUGGESTIONS **************************/


/* The "URL-text" (clutter) - Remove nicely */
.autocomplete-richlistitem[type="omnibar-suggestion-url"] .ac-url-box
{
display: none;
}
.autocomplete-richlistitem[type="omnibar-suggestion-url"]
{
padding-top: 0 !important;
padding-bottom: 3px !important;
}


/* Colors */
.autocomplete-richlistitem[type="omnibar-suggestion-url"]
{
background-color: #CEFAFD;		/* ← Background color */
color: #008800;  			/* ← Text color */
}


/* Add an icon to the right */
.autocomplete-richlistitem[type="omnibar-suggestion-url"] .ac-type-icon
{
list-style-image: url(chrome://browser/skin/Go-arrow.png); -moz-image-region: rect(0px, 16px, 16px, 0px);
/* (This icon is "An arrow - Type 1" in the "ICONS" part) */
}


/* Add an icon to the left */
.autocomplete-richlistitem[type="omnibar-suggestion-url"] .ac-site-icon
{
list-style-image: url(chrome://global/skin/icons/question-16.png);
/* (This icon is "A question mark - Type 2" in the "ICONS" part) */
}






/****************************** FILE PATH *****************************/


/* The "URL-text" (useful) - Remove nicely */
/*.autocomplete-richlistitem[type="omnibar-filepath"] .ac-url-box
{
display: none;
}
.autocomplete-richlistitem[type="omnibar-filepath"]
{
padding-top: 0 !important;
padding-bottom: 3px !important;
}*/


/* Colors */
.autocomplete-richlistitem[type="omnibar-filepath"]
{
background-color: #CEFAFD;		/* ← Background color */
/*color: #000000;*/  			/* ← Text color */
}


/* Add an icon to the right */
/*.autocomplete-richlistitem[type="omnibar-filepath"] .ac-type-icon
{

}*/







/******************************** ICONS *******************************/
/*
Suggestions of icons which already exists in your Firefox theme.
Copy a line and paste it in any "Add an icon to the ..." code.
Of course you could always use other icons!
*/


/*


***** A magnifying glass - The one from Search bar *****
list-style-image: url(chrome://global/skin/icons/Search-glass.png); -moz-image-region: rect(0px, 16px, 16px, 0px);


***** A magnifying glass - The one from Omnibar *****
list-style-image: url(chrome://omnibar/skin/classic/magnifier.png);


***** A question mark - Type 1 *****
list-style-image: url(chrome://browser/skin/preferences/alwaysAsk.png);


***** A question mark - Type 2 *****
list-style-image: url(chrome://global/skin/icons/question-16.png);


***** An arrow - Type 1 *****
list-style-image: url(chrome://browser/skin/Go-arrow.png); -moz-image-region: rect(0px, 16px, 16px, 0px);


***** An arrow - Type 2 *****
list-style-image: url(chrome://browser/skin/menu-forward.png);


***** An "information mark" *****
list-style-image: url(chrome://global/skin/icons/information-16.png);


*/