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

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

Issue 17356008: Fixed the disabled button to be the same size as enabled. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 | 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 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 input.common[type='checkbox'], 7 input.common[type='checkbox'],
8 input.common[type='radio'] { 8 input.common[type='radio'] {
9 -webkit-appearance: none; 9 -webkit-appearance: none;
10 border: 1px solid #555; 10 border: 1px solid #555;
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 input[type='submit'][disabled]:hover { 307 input[type='submit'][disabled]:hover {
308 background-color: rgb(250, 250, 250); 308 background-color: rgb(250, 250, 250);
309 background-image: none; 309 background-image: none;
310 border: 1px solid rgb(255, 255, 255); 310 border: 1px solid rgb(255, 255, 255);
311 border-bottom: 1px solid rgb(180, 180, 180); 311 border-bottom: 1px solid rgb(180, 180, 180);
312 border-left: 1px solid rgb(220, 220, 220); 312 border-left: 1px solid rgb(220, 220, 220);
313 border-right: 1px solid rgb(200, 200, 200); 313 border-right: 1px solid rgb(200, 200, 200);
314 border-top: 1px solid rgb(220, 220, 220); 314 border-top: 1px solid rgb(220, 220, 220);
315 box-shadow: inset 0 1px 1px 0 rgb(255, 255, 255); 315 box-shadow: inset 0 1px 1px 0 rgb(255, 255, 255);
316 color: rgb(150, 150, 150); 316 color: rgb(150, 150, 150);
317 padding: 2px 14px;
317 } 318 }
318 319
319 /* Gray progress bar. */ 320 /* Gray progress bar. */
320 .progress-bar { 321 .progress-bar {
321 background-color: #e6e6e6; 322 background-color: #e6e6e6;
322 border-radius: 3px; 323 border-radius: 3px;
323 height: 6px; 324 height: 6px;
324 } 325 }
325 326
326 .progress-track { 327 .progress-track {
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
492 width: 44px; 493 width: 44px;
493 } 494 }
494 495
495 .cr-dialog-close:hover { 496 .cr-dialog-close:hover {
496 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_H'); 497 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_H');
497 } 498 }
498 499
499 .cr-dialog-close:active { 500 .cr-dialog-close:active {
500 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_P'); 501 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_P');
501 } 502 }
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