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; | |
flackr
2011/11/21 20:43:31
nit: sort.
bshe
2011/11/22 16:26:24
Done.
| |
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 29 matching lines...) Expand all Loading... | |
47 .attribute { | 48 .attribute { |
48 display: table-cell; | 49 display: table-cell; |
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 text-align: end; | |
59 } | |
60 | |
61 /* Used so that 100% width within tabpanel will correspond to usable space. */ | 58 /* Used so that 100% width within tabpanel will correspond to usable space. */ |
62 tabpanel { | 59 tabpanel { |
63 position: relative; | 60 position: relative; |
64 } | 61 } |
65 | 62 |
66 .vertical-box { | 63 .vertical-box { |
67 -webkit-box-align: stretch; | 64 -webkit-box-align: stretch; |
68 -webkit-box-orient: vertical; | 65 -webkit-box-orient: vertical; |
69 -webkit-box-pack: start; | 66 -webkit-box-pack: start; |
70 display: -webkit-box; | 67 display: -webkit-box; |
(...skipping 12 matching lines...) Expand all Loading... | |
83 top: 20%; | 80 top: 20%; |
84 } | 81 } |
85 | 82 |
86 #cert-field-value-section { | 83 #cert-field-value-section { |
87 bottom: 0; | 84 bottom: 0; |
88 height: 30%; | 85 height: 30%; |
89 } | 86 } |
90 | 87 |
91 .section-contents { | 88 .section-contents { |
92 -webkit-box-flex: 1; | 89 -webkit-box-flex: 1; |
93 border: 1px solid black; | 90 border: 1px solid #9e9e9e; |
94 /* Scrolling should be enabled on all tree views and value field. */ | 91 /* Scrolling should be enabled on all tree views and value field. */ |
95 overflow: auto; | 92 overflow: auto; |
96 } | 93 } |
94 | |
95 #export { | |
96 -webkit-margin-start: 1px; | |
97 margin-top: 5px; | |
98 margin-bottom: 10px; | |
flackr
2011/11/21 20:43:31
nit: sort
bshe
2011/11/22 16:26:24
Done.
| |
99 } | |
OLD | NEW |