equal
deleted
inserted
replaced
|
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; |
|
30 } |
|
31 |
|
32 .attr-name-wide { |
|
33 font-weight: bold; |
|
34 width: 230px; |
|
35 } |
|
36 |
|
37 .attr-value { |
|
38 } |
|
39 |
|
40 /* form panel */ |
|
41 .form-name { |
|
42 font-weight: bold; |
|
43 width: 150px; |
|
44 } |
|
45 |
|
46 .form-value { |
|
47 } |
|
48 |
|
49 td.td-right { |
|
50 text-align: right; |
|
51 } |
|
52 |
|
53 /* fix for active sf-menu item in span tag */ |
|
54 .sf-menu span { |
|
55 padding: 0.75em 1em; |
|
56 } |