Created
May 16, 2009 17:47
-
-
Save satyr/112743 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
=skin= | |
@name Custom | |
@author You | |
@homepage http://www.yourpage.com | |
@email [email protected] | |
@license MPL/LGPL/GPL | |
=/skin= | |
*/ | |
@-moz-document url(chrome://browser/content/browser.xul) { | |
#ubiquity-panel { | |
} | |
#ubiquity-frame { | |
} | |
#ubiquity-entry-container { | |
} | |
/* Where text is entered */ | |
#ubiquity-entry { | |
} | |
#ubiquity-suggest-container { | |
} | |
/* iframe that suggests */ | |
#ubiquity-suggest { | |
border: none; | |
overflow: hidden; | |
} | |
#ubiquity-preview-container { | |
} | |
/* div that auto-adjusts its height to the preview block */ | |
#ubiquity-preview { | |
max-height: 500px; | |
overflow: hidden; | |
} | |
/* browser that previews */ | |
#ubiquity-browser { | |
width: 500px; | |
height: 500px; | |
} | |
/* div that helps */ | |
#ubiquity-help { | |
} | |
} | |
/* Formatting for the Suggestions */ | |
@-moz-document url(chrome://ubiquity/content/suggest.html) { | |
#suggestions { | |
margin: 0; | |
} | |
.suggested { | |
} | |
.hilited { | |
} | |
.cmdicon { | |
display: inline-block; | |
width: 16px; | |
margin-right: 0.3em; | |
} | |
.cmdicon img { | |
vertical-align: middle; | |
width: 16px; | |
height: 16px; | |
} | |
.needarg { | |
} | |
.hilited .needarg { | |
} | |
.selection { | |
} | |
} | |
/* Formatting for the Preview box */ | |
@-moz-document url-prefix(chrome://ubiquity/content/preview.html) { | |
body { | |
margin: 0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment