|
11
|
1 |
/*
|
|
|
2 |
* Copyright 2011 Tomas Zeman <tzeman@volny.cz>
|
|
|
3 |
*
|
|
|
4 |
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
5 |
* you may not use this file except in compliance with the License.
|
|
|
6 |
* You may obtain a copy of the License at
|
|
|
7 |
*
|
|
|
8 |
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
9 |
*
|
|
|
10 |
* Unless required by applicable law or agreed to in writing, software
|
|
|
11 |
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
12 |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
13 |
* See the License for the specific language governing permissions and
|
|
|
14 |
* limitations under the License.
|
|
|
15 |
*/
|
|
|
16 |
|
|
|
17 |
/* table with border */
|
|
|
18 |
.list {
|
|
|
19 |
border-collapse: collapse;
|
|
|
20 |
}
|
|
|
21 |
|
|
|
22 |
.list td, .list thead th {
|
|
|
23 |
border: 1px solid black;
|
|
|
24 |
}
|
|
|
25 |
|
|
|
26 |
/* attribute panel */
|
|
|
27 |
.attr-name {
|
|
|
28 |
font-weight: bold;
|
|
|
29 |
width: 150px;
|
|
41
|
30 |
text-align: justify;
|
|
11
|
31 |
}
|
|
|
32 |
|
|
|
33 |
.attr-name-wide {
|
|
|
34 |
font-weight: bold;
|
|
|
35 |
width: 230px;
|
|
41
|
36 |
text-align: justify;
|
|
11
|
37 |
}
|
|
|
38 |
|
|
|
39 |
.attr-value {
|
|
|
40 |
}
|
|
|
41 |
|
|
|
42 |
/* form panel */
|
|
|
43 |
.form-name {
|
|
|
44 |
font-weight: bold;
|
|
|
45 |
width: 150px;
|
|
|
46 |
}
|
|
|
47 |
|
|
|
48 |
.form-value {
|
|
|
49 |
}
|
|
|
50 |
|
|
|
51 |
td.td-right {
|
|
|
52 |
text-align: right;
|
|
|
53 |
}
|
|
|
54 |
|
|
|
55 |
/* fix for active sf-menu item in span tag */
|
|
|
56 |
.sf-menu span {
|
|
|
57 |
padding: 0.75em 1em;
|
|
|
58 |
}
|