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

Side by Side Diff: chrome/common/extensions/docs/examples/api/fontSettings/css/widgets.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
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 5
6 /* This file defines styles for form controls. The order of rule blocks is 6 /* This file defines styles for form controls. The order of rule blocks is
7 * important as there are some rules with equal specificity that rely on order 7 * important as there are some rules with equal specificity that rely on order
8 * as a tiebreaker. These are marked with OVERRIDE. 8 * as a tiebreaker. These are marked with OVERRIDE.
9 */ 9 */
10 10
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 display: block; 296 display: block;
297 } 297 }
298 298
299 :-webkit-any(.checkbox, .radio) label:hover { 299 :-webkit-any(.checkbox, .radio) label:hover {
300 color: black; 300 color: black;
301 } 301 }
302 302
303 label > input:disabled:-webkit-any([type='checkbox'], [type='radio']) ~ span { 303 label > input:disabled:-webkit-any([type='checkbox'], [type='radio']) ~ span {
304 color: #999; 304 color: #999;
305 } 305 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698