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

Side by Side Diff: chrome/browser/resources/file_manager/css/common.css

Issue 10907238: [FileBrowser] Fixed default hover state. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed copy-paste issue. 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/browser/resources/file_manager/css/file_manager.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 contains "borrowed" copy of standard styles. To simplify merging, 5 /* This file contains "borrowed" copy of standard styles. To simplify merging,
6 * when altering, please preserve original property value by adding comments. 6 * when altering, please preserve original property value by adding comments.
7 */ 7 */
8 input.common[type='checkbox'], 8 input.common[type='checkbox'],
9 input.common[type='radio'] { 9 input.common[type='radio'] {
10 -webkit-appearance: none; 10 -webkit-appearance: none;
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 height: 27px; 162 height: 27px;
163 line-height: 27px; 163 line-height: 27px;
164 margin: 0 0 0 8px; 164 margin: 0 0 0 8px;
165 min-width: 54px; 165 min-width: 54px;
166 padding: 0 8px; 166 padding: 0 8px;
167 position: relative; 167 position: relative;
168 text-align: center; 168 text-align: center;
169 z-index: 1; 169 z-index: 1;
170 } 170 }
171 171
172 .buttonbar button:hover {
173 -webkit-transition: all 0;
174 background-image: -webkit-linear-gradient(top, #F8F8F8, #F1F1F1);
175 border: 1px solid #C6C6C6;
176 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
177 color: #222;
178 }
179
180 .buttonbar button:active {
181 background-color: #F6F6F6;
182 background-image: -webkit-linear-gradient(top,#F6F6F6,#F1F1F1);
183 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
184 }
185
172 .buttonbar button[disabled] { 186 .buttonbar button[disabled] {
173 background-color: #EEE; 187 background-color: #EEE;
174 background-image: -webkit-linear-gradient(top, #EEE, #E0E0E0); 188 background-image: -webkit-linear-gradient(top, #EEE, #E0E0E0);
175 border: 1px solid #CCC; 189 border: 1px solid #CCC;
176 color: #333; 190 color: #333;
177 } 191 }
178 192
179 .buttonbar button:active img { 193 .buttonbar button:active img {
180 opacity: 1.0; 194 opacity: 1.0;
181 } 195 }
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 menu.chrome-menu > :not(hr)[checked] { 269 menu.chrome-menu > :not(hr)[checked] {
256 background-image: -webkit-image-set( 270 background-image: -webkit-image-set(
257 url('../images/common/check_no_box.png') 1x, 271 url('../images/common/check_no_box.png') 1x,
258 url('../images/common/2x/check_no_box.png') 2x); 272 url('../images/common/2x/check_no_box.png') 2x);
259 background-position: 2px center; 273 background-position: 2px center;
260 } 274 }
261 275
262 menu.chrome-menu > [checked]:before { 276 menu.chrome-menu > [checked]:before {
263 display: none; 277 display: none;
264 } 278 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/css/file_manager.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698