File: options.css

package info (click to toggle)
libnb-platform18-java 12.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 729,800 kB
  • sloc: java: 5,059,097; xml: 574,432; php: 78,788; javascript: 29,039; ansic: 10,278; sh: 6,386; cpp: 4,612; jsp: 3,643; sql: 1,097; makefile: 540; objc: 288; perl: 277; haskell: 93
file content (196 lines) | stat: -rw-r--r-- 4,351 bytes parent folder | download | duplicates (3)
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

* {
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, Tahoma, Helvetica;
    font-size: 10pt;
    font-weight: normal;
    color: #303942;
    background-color: #fff;
}
a {
    color: #303942;
    text-decoration: none;
}

.clear {
    clear: both;
}

button, .button {
    font-size: 9pt;
    color: #444444;
    cursor: pointer;
    text-align: center;
    position: relative;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #ededed), color-stop(1.00, #dddddd));
    border-width: 1px;
    border-style: solid;
    border-radius: 2px;
    padding: 5px 12px;
}
button:hover, .button:hover {
    color: #000000;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #f5f5f5), color-stop(1.00, #e2e2e2));
}
button.disabled, button[disabled=disabled], .button.disabled {
    cursor: not-allowed;
    color: #aaaaaa;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #f0f0f0), color-stop(1.00, #dddddd));
}

.panel {
    margin: 25px;
    padding-left: 25px;
    padding-right: 10px;
    border: 1px solid #a8a8a8;
    border-radius: 1px;
}
.title {
    clear: both;
    margin-top: 35px;
    font-size: 14pt;
    font-weight: bold;
}
.perex {
    margin-top: 10px;
}
.perex a {
    text-decoration: underline;
}
#help {
    display: none;
    margin-left: 40px;
    margin-top: 10px;
}
#help ul {
    margin-left: 20px;
}
#help p {
    margin-top: 5px;
}
#sizes {
    margin-top: 20px;
    margin-bottom: 15px;
}

/* columns */
#presetCustomizerTableWrapper {
    float: left;
    width: 100%;
}
#presetCustomizerTableColumn {
    margin-right: 145px;
}
#presetButtonsColumn {
    float: left;
    width: 145px;
    margin-left: -145px;
}

#presetCustomizerTable {
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    border: 1px solid #e2e2e2;
    border-radius: 1px;
}
#presetCustomizerTable tr {
    height: 25px;
}
#presetCustomizerTable tr.active {
    background-color: #bbcee9;
}
#presetCustomizerTable tr:hover {
    background-color: #e4ecf7;
}
#presetCustomizerTable th {
    font-weight: bold;
    padding: 0 7px 5px 7px;
    text-align: left;
    vertical-align: bottom;
    background-color: #f5f5f5;
    border: 1px solid #e2e2e2;
}
#presetCustomizerTable td {
    position: relative;
    padding: 5px;
    border: 1px solid #e2e2e2;
}
#presetCustomizerTable input, select {
    font-size: 10pt;
    width: 100%;
}
#presetCustomizerTable select, #presetCustomizerTable input[type="checkbox"] {
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #f6f6f6), color-stop(1.00, #e1e1e1));
    border: 1px solid #a8a8a8;
    border-radius: 1px;
}
#presetCustomizerTable input {
    background-color: transparent;
    border: 0;
}
#presetCustomizerTable input[type="checkbox"] {
    width: 13px;
    height: 13px;
}
#presetCustomizerTable input:focus {
    outline: none;
}
#presetCustomizerTable input.error {
    color: red;
}
#presetCustomizerTable .toolbar {
    text-align: center;
}

#presetButtons {
    margin-left: 30px;
    margin-right: 20px;
}
#presetButtons button {
    display: block;
    min-width: 95px;
    margin-bottom: 5px;
}

.mainButtons {
    float: right;
    margin-top: 25px;
    margin-bottom: 10px;
}
.mainButtons button {
    margin-left: 5px;
}

#presetCustomizerCancel {
    margin-right: 0;
}

#resetWarningsPanel .perex {
    float: left;
    margin-top: 15px;
}
#resetWarningsPanel .mainButtons {
    margin-top: 10px;
}