OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
4 */ | 4 */ |
5 | 5 |
6 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, | 6 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, |
7 blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, | 7 blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, |
8 font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, | 8 font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, |
9 dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, | 9 dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, |
10 tfoot, thead, tr, th, td, button { | 10 tfoot, thead, tr, th, td, button { |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 } | 242 } |
243 | 243 |
244 h2 { | 244 h2 { |
245 font-size: 16px; | 245 font-size: 16px; |
246 line-height:24px; | 246 line-height:24px; |
247 font-weight: normal; | 247 font-weight: normal; |
248 color: #222; | 248 color: #222; |
249 margin-bottom: 10px; | 249 margin-bottom: 10px; |
250 } | 250 } |
251 | 251 |
| 252 .h2-secondary { |
| 253 float: __MSG_@@bidi_end_edge__; |
| 254 } |
| 255 |
| 256 #host-list-loading-indicator:not(.loading) #host-list-loading, |
| 257 #host-list-loading-indicator.loading #host-list-reload { |
| 258 display: none; |
| 259 } |
| 260 |
| 261 #host-list-reload > img { |
| 262 opacity: 0.3; |
| 263 } |
| 264 |
| 265 #host-list-reload:hover > img { |
| 266 opacity: 0.4; |
| 267 } |
| 268 |
252 section > h2 { | 269 section > h2 { |
253 color: #666; | 270 color: #666; |
254 } | 271 } |
255 | 272 |
256 header { | 273 header { |
257 display: -webkit-flex; | 274 display: -webkit-flex; |
258 width: 100%; | 275 width: 100%; |
259 } | 276 } |
260 | 277 |
261 html { | 278 html { |
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
681 box-sizing: border-box; | 698 box-sizing: border-box; |
682 } | 699 } |
683 | 700 |
684 /* | 701 /* |
685 * Setting hidden on elements that match some rule overriding 'display' doesn't | 702 * Setting hidden on elements that match some rule overriding 'display' doesn't |
686 * do what you would expect unless this is made explicit (and !important). | 703 * do what you would expect unless this is made explicit (and !important). |
687 */ | 704 */ |
688 [hidden] { | 705 [hidden] { |
689 display: none !important; | 706 display: none !important; |
690 } | 707 } |
OLD | NEW |