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

Side by Side Diff: chrome/browser/resources/history/history.css

Issue 9609023: css hack n' slash, continued: New styles for checkboxes and radios. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: csilv review Created 8 years, 9 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 | « chrome/browser/resources/help/help.html ('k') | chrome/browser/resources/ntp4/new_tab.html » ('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 5
6 #editing-controls { 6 #editing-controls {
7 margin-top: 16px; 7 margin-top: 16px;
8 white-space: nowrap; 8 white-space: nowrap;
9 } 9 }
10 10
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 width: 90px; 129 width: 90px;
130 } 130 }
131 131
132 .search-results .time { 132 .search-results .time {
133 width: 110px; 133 width: 110px;
134 } 134 }
135 135
136 .entry input[type=checkbox] { 136 .entry input[type=checkbox] {
137 -webkit-margin-end: 6px; 137 -webkit-margin-end: 6px;
138 -webkit-margin-start: 4px; 138 -webkit-margin-start: 4px;
139 height: 14px; 139 line-height: 1em;
140 line-height: 12px;
141 text-indent: -1px;
142 top: 2px;
143 width: 14px;
144 } 140 }
145 141
146 /* Checkboxes are shown when checked or focused, or when the entry is hovered. 142 /* Checkboxes are shown when checked or focused, or when the entry is hovered.
147 Fade in on focus, but not on hover, because it makes the UI feel laggy. */ 143 Fade in on focus, but not on hover, because it makes the UI feel laggy. */
148 .entry input[type=checkbox]:not(:checked) { 144 .entry input[type=checkbox]:not(:checked) {
149 opacity: 0; 145 opacity: 0;
150 } 146 }
151 147
152 .entry-box:hover input[type=checkbox], 148 .entry-box:hover input[type=checkbox],
153 .entry-box input[type=checkbox]:focus { 149 .entry-box input[type=checkbox]:focus {
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 .fade-out { 203 .fade-out {
208 -webkit-transition: opacity 200ms; 204 -webkit-transition: opacity 200ms;
209 opacity: 0; 205 opacity: 0;
210 } 206 }
211 207
212 .page-navigation { 208 .page-navigation {
213 -webkit-margin-end: 4px; 209 -webkit-margin-end: 4px;
214 background-color: rgb(235, 239, 249); 210 background-color: rgb(235, 239, 249);
215 padding: 8px; 211 padding: 8px;
216 } 212 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/help/help.html ('k') | chrome/browser/resources/ntp4/new_tab.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698