Created
September 19, 2009 22:48
-
-
Save indolering/189622 to your computer and use it in GitHub Desktop.
Tranquility
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 Tranquility | |
@author Zach Lym, based on Simpliquity by Yatrik Solanki, | |
@homepage http://gist.github.com/189622 | |
@email [email protected] | |
@license MPL/LGPL/GPL | |
=/skin= | |
*/ | |
@-moz-document url(chrome://browser/content/browser.xul) { | |
#ubiquity-panel { | |
padding: 0px; | |
margin: 10px; | |
background: rgba(100%, 100%, 100%, 0.5); | |
-moz-border-radius: 20px; | |
-moz-border-radius-topleft: 0px; | |
} | |
#ubiquity-entry-container { | |
margin: 8px; | |
padding: 3px; | |
font-size: 12pt; | |
border: 0px solid #aaa; | |
-moz-border-radius: 0px; | |
font-family: Calibri, Helvetica, Verdana, Arial; | |
} | |
#ubiquity-entry { | |
-moz-appearance: none; | |
padding: 5px; | |
margin: 2px 0 0; | |
background: #fff; | |
border: none; | |
-moz-border-radius: 5px; | |
font-size: 12pt; | |
color: #000; | |
width: 489px; | |
/* font-weight: bold; */ | |
font-family: Calibri, Helvetica, Verdana, Arial; | |
} | |
#ubiquity-suggest { | |
background: transparent; | |
border: none; | |
width: 500px; | |
min-height: 32px; | |
overflow: hidden; | |
} | |
#ubiquity-suggest-container, #ubiquity-preview-container { | |
margin: 10px; | |
background: transparent; | |
} | |
#ubiquity-preview { | |
border-top: 1px solid #333; | |
min-height: 0px; | |
max-height: 600px; | |
overflow: hidden; | |
} | |
#ubiquity-browser { | |
width: 500px; | |
height: 600px; | |
} | |
#ubiquity-help { | |
margin: 5px 15px; | |
font-family: Calibri, Helvetica, Verdana, Arial; | |
font-size: 12pt; | |
color: #000; | |
} | |
} | |
@-moz-document url(chrome://ubiquity/content/suggest.html) { | |
#suggestions { | |
margin: 0; | |
} | |
.hilited { | |
padding: 5px; | |
margin: 2px; | |
background: #fff; | |
-moz-border-radius: 5px; | |
color: #000; | |
font-family: Calibri, Helvetica, Verdana, Arial; | |
} | |
.suggested { | |
margin: 2px; | |
padding: 5px; | |
font-weight: bold | |
border-left: solid 10px transparent; | |
font-family: Calibri, Helvetica, Verdana, Arial; | |
font-size: 12pt; | |
color: #000; | |
cursor: pointer; | |
} | |
.verb { | |
font-weight: bold; | |
color: #F90; | |
} | |
.needarg { | |
font-style: italic; | |
} | |
.needarg .object { | |
color: #777; | |
} | |
.delimiter { | |
color: #F90; | |
} | |
/* | |
<.needarg:before { | |
content: "("; | |
} | |
.needarg:after { | |
content: ")"; | |
} | |
*/ | |
.cmdicon { | |
display: inline-block; | |
width: 16px; | |
} | |
.cmdicon img { | |
vertical-align: middle; | |
width: 16px; | |
height: 16px; | |
} | |
.selection { | |
padding: 2px; | |
-moz-border-radius: 3px; | |
display: inline-block; | |
font-variant: small-caps; | |
background-color: #000; | |
color: #333; | |
position: relative; | |
top: -2px; | |
font-size: 8pt; | |
font-weight: normal; | |
border: 1px solid #777; | |
} | |
} | |
/* Formatting for the Preview box */ | |
@-moz-document url-prefix(chrome://ubiquity/content/preview.html) { | |
body { | |
color: #000; | |
background: transparent; | |
padding-left: 15px; | |
padding: 7px; | |
margin: 5px 0 0; | |
font-family: Calibri, Helvetica, Verdana, Arial; | |
font-size: 11pt; | |
} | |
.gresult { | |
margin-bottom: 10px; | |
} | |
.gresult a { | |
color: #FFFFFF; | |
text-decoration: underline; | |
font-size: 12pt; | |
font-family: Calibri, Helvetica, Verdana, Arial; | |
cursor: pointer; | |
} | |
.gresult-url { | |
font-size: x-small; | |
font-family: Calibri, Helvetica, Verdana, Arial; | |
color: #777; | |
} | |
.gresult-content { | |
margin-right: 10px; | |
font-family: Calibri, Helvetica, Verdana, Arial; | |
font-size: small; | |
} | |
.error { | |
color: #d44; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment