Created
November 6, 2009 20:29
-
-
Save satyr/228271 to your computer and use it in GitHub Desktop.
1280x800 + Fx3.6↑ + Ubiq5.5pre8↑ + extensions.ubiquity.openAt=0,0
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 eLasty | |
@author satyr | |
@license MIT | |
@homepage http://gist.github.com/228271 | |
=/skin=*/ | |
@-moz-document url(chrome://browser/content/browser.xul) { | |
#ubiquity-panel { | |
position: relative; | |
width: 943px; | |
} | |
#ubiquity-frame {} | |
#ubiquity-entry, | |
#ubiquity-suggest-container, | |
#ubiquity-preview-container, | |
#ubiquity-help { | |
background-color: rgba(9%, 9%, 9%, 0.8); | |
} | |
#ubiquity-entry-container { | |
padding: 2px 0 2px 242px; | |
width: 700px; | |
text-align: center; | |
} | |
#ubiquity-entry { | |
-moz-border-radius: 10px; | |
-moz-appearance: none; border: none; | |
color: #eee; | |
width: 88%; height: 18px; | |
font: bold 15px "Consolas",monospace; | |
margin: 0; padding: 0; | |
text-align: center; | |
ime-mode: inactive !important; | |
} | |
#ubiquity-suggest-container { | |
-moz-border-radius: 0 9px 9px 0; | |
float: left; | |
} | |
#ubiquity-suggest { | |
-moz-appearance: none; border: none; | |
width: 240px; min-height: 16px; max-height: 750px; | |
margin-bottom: -3px; padding: 0; | |
overflow: hidden; | |
} | |
#ubiquity-preview-container { | |
-moz-border-radius: 11px; | |
float: right; | |
} | |
#ubiquity-preview { | |
min-height: 2em; max-height: 750px !important; | |
} | |
#ubiquity-browser { | |
width: 700px; height: 750px; | |
} | |
#ubiquity-help { | |
color: #ddd; | |
width: 50%; | |
margin: 1ex auto 0; padding: 0 9px; | |
-moz-border-radius: 18px; | |
} | |
#ubiquity-help > .default { | |
display: none; | |
} | |
#ubiquity-help > box { | |
display: inline; | |
} | |
} | |
@-moz-document url(chrome://ubiquity/content/suggest.html) { | |
body { | |
color: #eee; | |
font-size: 9.5pt; | |
margin: 0; padding: 0; | |
} | |
.suggested { | |
vertical-align: middle; | |
background-color: rgba(99%, 99%, 99%, 0.15); | |
min-height: 16px; | |
font-size: 12px; line-height: 16px; | |
padding-left: 17px; | |
cursor: pointer; | |
} | |
.suggested:hover { | |
background-color: rgba(99%, 99%, 99%, 0.25); | |
} | |
.suggested:not(.hilited) + .suggested:not(.hilited) { | |
border-top: 1px solid rgba(99%, 99%, 99%, 0.3); | |
} | |
.suggested:first-child { | |
-moz-border-radius-topright: 9px; | |
} | |
.suggested:last-child { | |
-moz-border-radius-bottomright: 9px; | |
} | |
.hilited { | |
background-color: rgba(99%, 99%, 99%, 0.3); | |
color: #fff; | |
} | |
.cmdicon { | |
position: absolute; left: 0; | |
width: 16px; | |
} | |
.cmdicon > img { | |
vertical-align: middle; | |
width: 16px; height: 16px; | |
} | |
.object, .delimiter { font-weight: bolder } | |
.delimiter { font-family: monospace } | |
.argument { color: #d8d8d8 } | |
.needarg { color: #ddd; font-size: 11px } | |
.needarg:before { content: "[" } | |
.needarg:after { content: "]" } | |
.selection { | |
-moz-border-radius: 3px; | |
display: inline-block; | |
background-color: rgba(99%, 99%, 99%, 0.6); color: #000; | |
height: 14px; | |
font-size: 11px; font-weight: normal; | |
margin: 1px 0; padding: 0 1px; | |
} | |
} | |
@-moz-document url(resource://ubiquity/preview.html) { | |
body { | |
display: inline-block; | |
width: 100%; height: 100%; | |
margin: 0; padding: 0; | |
background: none; color: #eee; | |
font-size: 9.5pt; | |
line-height: 1.4; | |
} | |
table { font-size: inherit } | |
a { text-decoration: none !important } | |
a:link { color: #cdf } | |
a:visited { color: #abd } | |
a:hover { color: #fdc } | |
a:active { color: #edf } | |
pre { white-space: pre-wrap } | |
pre, code, samp, kbd, button { font-family: "Consolas",monospace } | |
dl { margin: 0.5ex 0.1em } | |
dd { margin: 0 0 0.5ex 0.7em } | |
#jquery-api { margin: 0 0.1em } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment