Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(139)

Side by Side Diff: ui/webui/resources/css/chrome_shared.css

Issue 1076093002: Minimize flicker by adding a   to nodes that will have (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ::after -> ::before Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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(chrome://resources/css/text_defaults.css); 8 @import url(chrome://resources/css/text_defaults.css);
9 @import url(i18n_process.css);
9 @import url(widgets.css); 10 @import url(widgets.css);
10 <if expr="chromeos"> 11 <if expr="chromeos">
11 @import url(chromeos/ui_account_tweaks.css); 12 @import url(chromeos/ui_account_tweaks.css);
12 </if> 13 </if>
13 14
14 /* Prevent CSS from overriding the hidden property. */ 15 /* Prevent CSS from overriding the hidden property. */
15 [hidden] { 16 [hidden] {
16 display: none !important; 17 display: none !important;
17 } 18 }
18 19
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 } 103 }
103 104
104 /* WebKit does not honor alignment for text specified via placeholder attribute. 105 /* WebKit does not honor alignment for text specified via placeholder attribute.
105 * This CSS is a workaround. Please remove once WebKit bug is fixed. 106 * This CSS is a workaround. Please remove once WebKit bug is fixed.
106 * https://bugs.webkit.org/show_bug.cgi?id=63367 107 * https://bugs.webkit.org/show_bug.cgi?id=63367
107 */ 108 */
108 html[dir='rtl'] input.weakrtl::-webkit-input-placeholder, 109 html[dir='rtl'] input.weakrtl::-webkit-input-placeholder,
109 html[dir='rtl'] .weakrtl input::-webkit-input-placeholder { 110 html[dir='rtl'] .weakrtl input::-webkit-input-placeholder {
110 direction: rtl; 111 direction: rtl;
111 } 112 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698