1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
/**
* (C) Copyright 2004-2006 Shawn Betts
* (C) Copyright 2007-2008 Jeremy Maitin-Shepard
*
* Use, modification, and distribution are subject to the terms specified in the
* COPYING file.
**/
@import url("chrome://global/skin/");
.minibuffer-text-input-mode[minibuffermode="message"],
.minibuffer-textarea-input-mode[minibuffermode="message"],
.minibuffer-select-input-mode[minibuffermode="message"],
.minibuffer-checkbox-input-mode[minibuffermode="message"],
.minibuffer-richedit-input-mode[minibuffermode="message"],
.minibuffer-quote-next-input-mode[minibuffermode="message"],
.minibuffer-quote-input-mode[minibuffermode="message"]{
background-color: #999999;
color: black;
}
#minibuffer[minibuffermode="message"] #minibuffer-prompt,
#minibuffer[minibuffermode="message"] #minibuffer-input,
#minibuffer[minibuffermode="input"] #minibuffer-message,
#minibuffer[minibuffermode="input"] #minibuffer-mode-indicator {
visibility: collapse;
}
.mode-line {
border-left: 1px solid rgb(230,230,230);
border-top: 1px solid rgb(230,230,230);
border-right: 1px solid rgb(100,100,100);
border-bottom: 1px solid rgb(100,100,100);
margin: 0 0 0 0;
background-color: rgb(200,200,200);
}
.mode-line label {
color: black;
}
.mode-line label.current-buffer-name-widget {
-moz-box-flex: 1;
}
window {
background-color: white;
}
/* Completions display */
tree.completions treechildren { border: none !important; }
tree.completions treecol { -moz-binding: none !important; }
tree.completions {
-moz-appearance: none !important;
border: 0px none !important;
margin: 0px !important;
border-top: 4px double #333333 !important;
background-color: #dcdad5 !important;
-moz-border-top-colors: -moz-initial !important;
color: black;
}
tree.completions treechildren::-moz-tree-row {
border: none;
}
tree.completions treechildren::-moz-tree-row(current) {
background-color: blue;
}
tree.completions treechildren::-moz-tree-cell-text(completion-description) {
color: green !important;
font-weight: bold !important;
}
tree.completions treechildren::-moz-tree-cell-text(current) {
color: white !important;
}
.panel {
border-top: 4px double #333333;
background-color: #dcdad5;
}
.panel .panel-row-label {
font-weight: bold;
}
/* tab bar */
#tab-bar {
-moz-box-pack: end;
}
.tab {
-moz-appearance: tab;
margin-top: 2px;
border-top: 2px solid;
border-right: 2px solid;
border-left: 2px solid;
border-bottom: 1px solid ThreeDHighlight;
-moz-border-top-colors: ThreeDHighlight ThreeDLightShadow;
-moz-border-right-colors: ThreeDDarkShadow ThreeDShadow;
-moz-border-left-colors: ThreeDHighlight ThreeDLightShadow;
-moz-border-radius-topleft: 2px;
-moz-border-radius-topright: 2px;
-moz-border-radius-bottomright: 1px;
padding: 1px 4px 2px 4px;
background-color: -moz-Dialog;
color: -moz-DialogText;
min-width: 100px;
max-width: 250px;
-moz-box-flex: 100;
-moz-box-align: center;
}
.tab[selected="true"] {
margin-top: 0;
border-bottom-color: transparent;
padding: 1px 6px 4px 6px;
background-color: -moz-Dialog;
}
.tab-close-button {
-moz-appearance: none !important;
/*padding: 0px 4px 2px 0px;*/
padding: 0px 0px 0px 0px;
margin: 0px;
list-style-image: url("chrome://global/skin/icons/close.png") !important;
-moz-image-region: rect(0px, 16px, 16px, 0px);
border: none !important;
}
.tab[selected="false"] .tab-close-button {
display: none;
}
.tab-close-button:hover {
-moz-image-region: rect(0px, 32px, 16px, 16px);
}
.tab-close-button:active:hover {
-moz-image-region: rect(0px, 48px, 16px, 32px);
}
.tab-label {
-moz-box-flex: 100;
font: icon;
}
.tab[selected="true"] > .tab-label {
font-weight: bold;
}
.tab-icon {
min-width: 16px;
min-height: 16px;
max-width: 16px;
max-height: 16px;
list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.png");
-moz-margin-start: 4px;
-moz-margin-end: 3px;
}
|