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

Side by Side Diff: chrome/common/extensions/docs/examples/api/fontSettings/css/chrome_shared.css

Issue 10907052: Font Settings API: Use Chrome settings CSS in sample extension. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/common/extensions/docs/examples/api/fontSettings/css/uber_shared.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 /* Copy of /resources/shared/css/chrome_shared.css for sample extension. */
6 * chrome:// pages. */
7
8 @import url("chrome://resources/css/widgets.css");
9 <if expr="pp_ifdef('chromeos')">
10 @import url("chrome://resources/css/chromeos/ui_account_tweaks.css");
11 </if>
12 6
13 /* Prevent CSS from overriding the hidden property. */ 7 /* Prevent CSS from overriding the hidden property. */
14 [hidden] { 8 [hidden] {
15 display: none !important; 9 display: none !important;
16 } 10 }
17 11
18 html.loading * { 12 html.loading * {
19 -webkit-transition-delay: 0 !important; 13 -webkit-transition-delay: 0 !important;
20 -webkit-transition-duration: 0 !important; 14 -webkit-transition-duration: 0 !important;
21 } 15 }
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 } 91 }
98 92
99 /* WebKit does not honor alignment for text specified via placeholder attribute. 93 /* WebKit does not honor alignment for text specified via placeholder attribute.
100 * This CSS is a workaround. Please remove once WebKit bug is fixed. 94 * This CSS is a workaround. Please remove once WebKit bug is fixed.
101 * https://bugs.webkit.org/show_bug.cgi?id=63367 95 * https://bugs.webkit.org/show_bug.cgi?id=63367
102 */ 96 */
103 html[dir='rtl'] input.weakrtl::-webkit-input-placeholder, 97 html[dir='rtl'] input.weakrtl::-webkit-input-placeholder,
104 html[dir='rtl'] .weakrtl input::-webkit-input-placeholder { 98 html[dir='rtl'] .weakrtl input::-webkit-input-placeholder {
105 direction: rtl; 99 direction: rtl;
106 } 100 }
OLDNEW
« no previous file with comments | « no previous file | chrome/common/extensions/docs/examples/api/fontSettings/css/uber_shared.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698