OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html i18n-values="dir:textdirection;"><head> | 2 <html i18n-values="dir:textdirection;"><head> |
3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | 3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
4 <title i18n-content="title"></title> | 4 <title i18n-content="title"></title> |
5 | 5 |
6 <style> | 6 <style> |
7 body { | 7 body { |
8 font-size: 84%; | 8 font-size: 84%; |
9 font-family: Arial, Helvetica, sans-serif; | 9 font-family: Arial, Helvetica, sans-serif; |
10 padding: 0.75em; | 10 padding: 0.75em; |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 | 132 |
133 .number_expanded, .number_collapsed { | 133 .number_expanded, .number_collapsed { |
134 text-align: left; | 134 text-align: left; |
135 width: 80%; | 135 width: 80%; |
136 } | 136 } |
137 | 137 |
138 html[dir='rtl'] .number_expanded, html[dir='rtl'] .number_collapsed { | 138 html[dir='rtl'] .number_expanded, html[dir='rtl'] .number_collapsed { |
139 text-align: right; | 139 text-align: right; |
140 } | 140 } |
141 | 141 |
142 tr:not(.firstRow) > *:nth-child(1, | 142 tr:not(.firstRow) > *:nth-child(1), |
143 tr:not(.firstRow) > *:nth-child(2), | 143 tr:not(.firstRow) > *:nth-child(2), |
144 tr.firstRow th:nth-child(1), | 144 tr.firstRow th:nth-child(1), |
145 tr.firstRow th:nth-child(2) { | 145 tr.firstRow th:nth-child(2) { |
146 border-right: 1px solid #b5c6de; | 146 -webkit-border-end: 1px solid #b5c6de; |
147 } | |
148 | |
149 html[dir='rtl'] tr:not(.firstRow) > *:nth-child(1), | |
150 html[dir='rtl'] tr:not(.firstRow) > *:nth-child(2), | |
151 html[dir='rtl'] tr.firstRow th:nth-child(1), | |
152 html[dir='rtl'] tr.firstRow th:nth-child(2) { | |
153 border-right: auto; | |
154 border-left: 1px solid #b5c6de; | |
155 } | 147 } |
156 | 148 |
157 .name { | 149 .name { |
158 background-position: 5em center; | 150 background-position: 5em center; |
159 background-repeat: no-repeat; | 151 background-repeat: no-repeat; |
160 } | 152 } |
161 | 153 |
162 html[dir='rtl'] #details .name { | 154 html[dir='rtl'] #details .name { |
163 background-position-left: auto; | 155 background-position-left: auto; |
164 background-position-right: 5em; | 156 background-position-right: 5em; |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 jscontent="stat_name"></div></a></td> | 265 jscontent="stat_name"></div></a></td> |
274 <td class="button_cell"><button jsvalues="id:stat_name + '-value-btn'" | 266 <td class="button_cell"><button jsvalues="id:stat_name + '-value-btn'" |
275 class="expand_status"></button></td> | 267 class="expand_status"></button></td> |
276 <td class="number"><div class="stat_value" jscontent="stat_value" | 268 <td class="number"><div class="stat_value" jscontent="stat_value" |
277 jsvalues="id:stat_name + '-value'"></div></td> | 269 jsvalues="id:stat_name + '-value'"></div></td> |
278 </tr> | 270 </tr> |
279 </table> | 271 </table> |
280 </div> | 272 </div> |
281 </body> | 273 </body> |
282 </html> | 274 </html> |
OLD | NEW |