Chromium Code Reviews| 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. */ | 6 * chrome:// pages. */ |
| 7 | 7 |
| 8 @import url("widgets.css"); | 8 @import url("widgets.css"); |
| 9 <if expr="chromeos"> | 9 <if expr="chromeos"> |
| 10 @import url("chromeos/ui_account_tweaks.css"); | 10 @import url("chromeos/ui_account_tweaks.css"); |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 101 } | 101 } |
| 102 | 102 |
| 103 /* WebKit does not honor alignment for text specified via placeholder attribute. | 103 /* WebKit does not honor alignment for text specified via placeholder attribute. |
| 104 * This CSS is a workaround. Please remove once WebKit bug is fixed. | 104 * This CSS is a workaround. Please remove once WebKit bug is fixed. |
| 105 * https://bugs.webkit.org/show_bug.cgi?id=63367 | 105 * https://bugs.webkit.org/show_bug.cgi?id=63367 |
| 106 */ | 106 */ |
| 107 html[dir='rtl'] input.weakrtl::-webkit-input-placeholder, | 107 html[dir='rtl'] input.weakrtl::-webkit-input-placeholder, |
| 108 html[dir='rtl'] .weakrtl input::-webkit-input-placeholder { | 108 html[dir='rtl'] .weakrtl input::-webkit-input-placeholder { |
| 109 direction: rtl; | 109 direction: rtl; |
| 110 } | 110 } |
| 111 | |
| 112 /* Stuff some text into empty nodes before JS replaces it; reduces flicker. */ | |
| 113 [i18n-content]:empty::before { | |
| 114 color: transparent !important; | |
|
Evan Stade
2014/11/22 05:14:44
visibility: hidden doesn't work?
| |
| 115 content: '.' !important; | |
| 116 } | |
| OLD | NEW |