OLD | NEW |
---|---|
1 /* Using 100% width within body should exclude margins. */ | 1 /* Using 100% width within body should exclude margins. */ |
2 body { | 2 body { |
3 bottom: 0; | 3 bottom: 0; |
4 left: 0; | 4 left: 0; |
5 position: absolute; | 5 position: absolute; |
6 right: 0; | 6 right: 0; |
7 top: 0; | 7 top: 0; |
8 margin: 8px 0 0 0; | |
8 } | 9 } |
9 | 10 |
10 .title { | 11 .title { |
11 display: inline-block; | 12 display: inline-block; |
12 font-weight: bold; | 13 font-weight: bold; |
13 padding-bottom: 2px; | 14 padding-bottom: 2px; |
14 padding-top: 15px; | 15 padding-top: 15px; |
15 } | 16 } |
16 | 17 |
17 #tabbox { | 18 #tabbox { |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
49 white-space: nowrap; | 50 white-space: nowrap; |
50 } | 51 } |
51 | 52 |
52 .value { | 53 .value { |
53 display: table-cell; | 54 display: table-cell; |
54 white-space: pre-wrap; | 55 white-space: pre-wrap; |
55 } | 56 } |
56 | 57 |
57 .controls { | 58 .controls { |
58 text-align: end; | 59 text-align: end; |
59 } | 60 } |
flackr
2011/11/10 16:03:16
Remove this, no longer used.
bshe
2011/11/21 16:09:37
Done.
| |
60 | 61 |
61 /* Used so that 100% width within tabpanel will correspond to usable space. */ | 62 /* Used so that 100% width within tabpanel will correspond to usable space. */ |
62 tabpanel { | 63 tabpanel { |
63 position: relative; | 64 position: relative; |
64 } | 65 } |
65 | 66 |
66 .vertical-box { | 67 .vertical-box { |
67 -webkit-box-align: stretch; | 68 -webkit-box-align: stretch; |
68 -webkit-box-orient: vertical; | 69 -webkit-box-orient: vertical; |
69 -webkit-box-pack: start; | 70 -webkit-box-pack: start; |
(...skipping 13 matching lines...) Expand all Loading... | |
83 top: 20%; | 84 top: 20%; |
84 } | 85 } |
85 | 86 |
86 #cert-field-value-section { | 87 #cert-field-value-section { |
87 bottom: 0; | 88 bottom: 0; |
88 height: 30%; | 89 height: 30%; |
89 } | 90 } |
90 | 91 |
91 .section-contents { | 92 .section-contents { |
92 -webkit-box-flex: 1; | 93 -webkit-box-flex: 1; |
93 border: 1px solid black; | 94 border: 1px solid #9e9e9e; |
94 /* Scrolling should be enabled on all tree views and value field. */ | 95 /* Scrolling should be enabled on all tree views and value field. */ |
95 overflow: auto; | 96 overflow: auto; |
96 } | 97 } |
98 | |
99 #export { | |
100 -webkit-margin-start: 1px; | |
101 margin-top: 5px; | |
102 margin-bottom: 10px; | |
103 } | |
OLD | NEW |