LCARStrek support of new toolbar iconsize/mode controls, no small icons yet
[themes.git] / LCARStrek / global / formatting.css
CommitLineData
351107c9 1/* ***** BEGIN LICENSE BLOCK *****
2 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
3 *
4 * The contents of this file are subject to the Mozilla Public License Version
5 * 1.1 (the "License"); you may not use this file except in compliance with
6 * the License. You may obtain a copy of the License at
7 * http://www.mozilla.org/MPL/
8 *
9 * Software distributed under the License is distributed on an "AS IS" basis,
10 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 * for the specific language governing rights and limitations under the
12 * License.
13 *
14 * The Original Code is "Classic" theme of mozilla.org code.
15 *
16 * The Initial Developer of the Original Code is
17 * the Mozilla Organization.
18 * Portions created by the Initial Developer are Copyright (C) 1998-2001
19 * the Initial Developer. All Rights Reserved.
20 *
21 * Contributor(s):
22 * Robert Kaiser <KaiRo@KaiRo.at>
23 *
24 * Alternatively, the contents of this file may be used under the terms of
25 * either the GNU General Public License Version 2 or later (the "GPL"), or
26 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
35 *
36 * ***** END LICENSE BLOCK ***** */
37
38@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
39
40/* inset areas */
2b722888 41.inset {
42/* border: 1px inset #FF9F00;
43 margin: 0px 5px 5px 5px; */
44}
a12570b9 45
7aa65558 46.box-inset {
47 -moz-border-radius: 3px;
48 margin: 2px 4px;
49 border: 1px solid #9C9CFF;
50 background-color: #000000;
51 color: #FF9F00;
52}
53
351107c9 54/* formatting */
2b722888 55.groove-top {
c79d2bbe 56 border-top: 2px groove #FF9F00;
2b722888 57}
a12570b9 58
2b722888 59.groove-right {
60 border-right: 2px groove #FF9F00;
61}
a12570b9 62
2b722888 63.groove-left {
64 border-left: 2px groove #FF9F00;
65}
a12570b9 66
2b722888 67.groove-bottom {
a12570b9 68 border-bottom: 2px groove #FF9F00;
2b722888 69}
a12570b9 70
2b722888 71.outset {
72/* border: 1px outset #FF9F00; */
c79d2bbe
RK
73}
74
75.outset-top-bottom {
76/* border-top: 1px outset #FF9F00;
77 border-bottom: 1px outset #FF9F00; */
78}
351107c9 79
351107c9 80/** separator rules **/
81/* standard separators */
2b722888 82separator, separator[orient="horizontal"] {
83 height: 1.5em;
84}
a12570b9 85
2b722888 86separator[orient="vertical"] {
87 width: 1.5em;
88}
351107c9 89
90/* thinner separators (50% size) */
2b722888 91separator.thin, separator.thin[orient="horizontal"] {
92 height: 0.5em;
93}
a12570b9 94
2b722888 95separator.thin[orient="vertical"] {
96 width: 0.5em;
97}
351107c9 98
99/* groove separators (50% size) */
2b722888 100separator.groove,
101separator.groove[orient="horizontal"] {
102 border-top: 2px groove #FF9F00;
103 height: 0px;
104 margin-top: 0.4em;
105 margin-bottom: 0.4em;
106}
a12570b9 107
2b722888 108separator.groove[orient="vertical"] {
109 border-left: 2px groove #FF9F00;
110 margin-left: 0.4em;
111 margin-right: 0.4em;
112}
a12570b9 113
114/* groove separators (0 padding, for dividing effects) */
2b722888 115separator.groove-thin {
116 border-top: 2px groove #FF9F00;
117 height: 0px;
118}
a12570b9 119
2b722888 120separator[orient="vertical"].groove-thin {
121 border-left: 2px groove #FF9F00;
122}
351107c9 123
124/** text formatting rules **/
125/** Reduced Margin for some UI **/
2b722888 126.small-margin {
127 margin: 0px 1px;
128}
a12570b9 129
c79d2bbe
RK
130.plain {
131 margin: 0px !important;
132 border: none;
133 padding: 0px;
134}
135
2b722888 136label[disabled="true"] {
137 color: #8050B0;
a12570b9 138}
139
2b722888 140description, label {
141 cursor: default;
142 margin: 1px 3px;
143}
a12570b9 144
2b722888 145description {
146/* margin: 1px 5px 4px 5px; */
147}
351107c9 148
2b722888 149label {
c79d2bbe
RK
150/*
151 margin-top: 1px;
152 margin-bottom: 2px;
153 -moz-margin-start: 6px;
154 -moz-margin-end: 5px;
155*/
2b722888 156}
351107c9 157
2b722888 158.header {
159 font-weight: bold;
160}
351107c9 161
2b722888 162.larger-text {
163 font-size: larger;
164}
351107c9 165
2b722888 166.smaller-text {
167 font-size: smaller;
168}
a12570b9 169
2b722888 170.monospace {
171 font-family: monospace;
172}
a12570b9 173
2b722888 174.indent {
175/* margin-left: 23px; */
176 margin-left: 15px;
177}
351107c9 178
2b722888 179.box-padded {
180 padding: 5px;
a12570b9 181}
351107c9 182
2b722888 183.spaced {
184 margin: 1px 3px;
a12570b9 185}
351107c9 186
2b722888 187.wizard-box {
188 padding: 15px 35px 10px 35px;
a12570b9 189}
351107c9 190
2b722888 191.caption-text {
192 margin: 0px 2px 0px 1px !important;
193}
a12570b9 194
195/* class for text with a 'link' appearance */
196.text-link {
197 color: blue;
198 text-decoration: underline;
c79d2bbe 199 cursor: pointer;
a12570b9 200}
201
202.text-link:focus {
203 color: red;
c79d2bbe
RK
204 /* Don't specify the outline-color, we should always use initial value. */
205 outline: 1px dotted;
a12570b9 206}
207
208.text-link:hover:active {
209 color: red;
210}
211
212.text-link[visited="true"] {
213 color: purple;
214}