| 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 /* This file holds CSS that should be shared, in theory, by all user-visible | 5 /* This file holds CSS that should be shared, in theory, by all user-visible |
| 6 * chrome:// pages. This contrasts chrome_shared.css, which it is meant to | 6 * chrome:// pages. */ |
| 7 * replace, but has CSS specific to options and options-like pages. */ | |
| 8 | 7 |
| 9 @import url("chrome://resources/css/widgets.css"); | 8 @import url("chrome://resources/css/widgets.css"); |
| 10 <if expr="pp_ifdef('chromeos')"> | 9 <if expr="pp_ifdef('chromeos')"> |
| 11 @import url("chrome://resources/css/chromeos/ui_account_tweaks.css"); | 10 @import url("chrome://resources/css/chromeos/ui_account_tweaks.css"); |
| 12 </if> | 11 </if> |
| 13 | 12 |
| 14 /* Prevent CSS from overriding the hidden property. */ | 13 /* Prevent CSS from overriding the hidden property. */ |
| 15 [hidden] { | 14 [hidden] { |
| 16 display: none !important; | 15 display: none !important; |
| 17 } | 16 } |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 } | 97 } |
| 99 | 98 |
| 100 /* WebKit does not honor alignment for text specified via placeholder attribute. | 99 /* WebKit does not honor alignment for text specified via placeholder attribute. |
| 101 * This CSS is a workaround. Please remove once WebKit bug is fixed. | 100 * This CSS is a workaround. Please remove once WebKit bug is fixed. |
| 102 * https://bugs.webkit.org/show_bug.cgi?id=63367 | 101 * https://bugs.webkit.org/show_bug.cgi?id=63367 |
| 103 */ | 102 */ |
| 104 html[dir='rtl'] input.weakrtl::-webkit-input-placeholder, | 103 html[dir='rtl'] input.weakrtl::-webkit-input-placeholder, |
| 105 html[dir='rtl'] .weakrtl input::-webkit-input-placeholder { | 104 html[dir='rtl'] .weakrtl input::-webkit-input-placeholder { |
| 106 direction: rtl; | 105 direction: rtl; |
| 107 } | 106 } |
| OLD | NEW |