| 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 /* This file holds CSS that should be shared, in theory, by all user-visible | 6 /* This file holds CSS that should be shared, in theory, by all user-visible |
| 7 * chrome:// pages. This contrasts chrome_shared.css, which it is meant to | 7 * chrome:// pages. This contrasts chrome_shared.css, which it is meant to |
| 8 * replace, but has CSS specific to options and options-like pages. */ | 8 * replace, but has CSS specific to options and options-like pages. */ |
| 9 | 9 |
| 10 /* Prevent CSS from overriding the hidden property. */ | 10 /* Prevent CSS from overriding the hidden property. */ |
| 11 [hidden] { | 11 [hidden] { |
| 12 display: none !important; | 12 display: none !important; |
| 13 } | 13 } |
| 14 | 14 |
| 15 body { | 15 body { |
| 16 cursor: default; | 16 cursor: default; |
| 17 font-family: Open Sans, sans-serif; | 17 font-family: Open Sans, sans-serif; |
| 18 font-size: 12px; | 18 font-size: 12px; |
| 19 margin: 0; |
| 20 } |
| 21 |
| 22 span { |
| 19 line-height: 22px; | 23 line-height: 22px; |
| 20 margin: 0; | |
| 21 } | 24 } |
| 22 | 25 |
| 23 h1 { | 26 h1 { |
| 24 color: rgb(17, 85, 204); | 27 color: rgb(17, 85, 204); |
| 25 font-size: 18px; | 28 font-size: 18px; |
| 26 font-weight: normal; | 29 font-weight: normal; |
| 27 } | 30 } |
| 28 | 31 |
| 29 a:link { | 32 a:link { |
| 30 color: rgb(63, 110, 194); | 33 color: rgb(63, 110, 194); |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 } | 83 } |
| 81 | 84 |
| 82 /* WebKit does not honor alignment for text specified via placeholder attrib. | 85 /* WebKit does not honor alignment for text specified via placeholder attrib. |
| 83 * This CSS is a workaround. Please remove once WebKit bug is fixed. | 86 * This CSS is a workaround. Please remove once WebKit bug is fixed. |
| 84 * https://bugs.webkit.org/show_bug.cgi?id=63367 | 87 * https://bugs.webkit.org/show_bug.cgi?id=63367 |
| 85 */ | 88 */ |
| 86 html[dir='rtl'] input.weakrtl::-webkit-input-placeholder, | 89 html[dir='rtl'] input.weakrtl::-webkit-input-placeholder, |
| 87 html[dir='rtl'] .weakrtl input::-webkit-input-placeholder { | 90 html[dir='rtl'] .weakrtl input::-webkit-input-placeholder { |
| 88 direction: rtl; | 91 direction: rtl; |
| 89 } | 92 } |
| OLD | NEW |