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

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

Issue 544273002: Fix typo from 0effca0b2cc1e55ed3b12ea6a92a73a30698421c (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | no next file » | 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 defines styles for form controls. The order of rule blocks is 5 /* This file defines styles for form controls. The order of rule blocks is
6 * important as there are some rules with equal specificity that rely on order 6 * important as there are some rules with equal specificity that rely on order
7 * as a tiebreaker. These are marked with OVERRIDE. */ 7 * as a tiebreaker. These are marked with OVERRIDE. */
8 8
9 /* Default state **************************************************************/ 9 /* Default state **************************************************************/
10 10
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 } 61 }
62 62
63 html[dir='rtl'] select { 63 html[dir='rtl'] select {
64 background-position: center left; 64 background-position: center left;
65 } 65 }
66 66
67 input[type='checkbox'] { 67 input[type='checkbox'] {
68 <if expr="chromeos"> 68 <if expr="chromeos">
69 bottom: 1px; 69 bottom: 1px;
70 </if> 70 </if>
71 < expr="not chromeos"> 71 <if expr="not chromeos">
72 bottom: 2px; 72 bottom: 2px;
73 </if> 73 </if>
74 height: 13px; 74 height: 13px;
75 position: relative; 75 position: relative;
76 vertical-align: middle; 76 vertical-align: middle;
77 width: 13px; 77 width: 13px;
78 } 78 }
79 79
80 input[type='radio'] { 80 input[type='radio'] {
81 /* OVERRIDE */ 81 /* OVERRIDE */
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 display: block; 307 display: block;
308 } 308 }
309 309
310 :-webkit-any(.checkbox, .radio) label:hover { 310 :-webkit-any(.checkbox, .radio) label:hover {
311 color: black; 311 color: black;
312 } 312 }
313 313
314 label > input:disabled:-webkit-any([type='checkbox'], [type='radio']) ~ span { 314 label > input:disabled:-webkit-any([type='checkbox'], [type='radio']) ~ span {
315 color: #999; 315 color: #999;
316 } 316 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698