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

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

Issue 9923005: [WebUI] Fix rest of CSS style nits so I can turn on CSS checker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: padding fixes, remove a no-op change Created 8 years, 8 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 /* 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 * 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
4 * found in the LICENSE file. 3 * found in the LICENSE file.
5 */ 4 */
6 5
7 /* 6 /* This file contains "borrowed" copy of standard styles. To simplify merging,
8 * This file contains "borrowed" copy of standard styles. To simplify merging,
9 * when altering, please preserve original property value by adding comments. 7 * when altering, please preserve original property value by adding comments.
10 */ 8 */
11 input.common[type="checkbox"], input.common[type="radio"] { 9 input.common[type='checkbox'],
10 input.common[type='radio'] {
12 -webkit-appearance: none; 11 -webkit-appearance: none;
13 width: 13px; 12 -webkit-border-radius: 1px;
14 height: 13px; 13 -webkit-box-sizing: border-box;
15 border: 1px solid #C6C6C6; 14 border: 1px solid #C6C6C6;
16 margin: 0;
17 -webkit-border-radius: 1px;
18 border-radius: 1px; 15 border-radius: 1px;
19 -webkit-box-sizing: border-box;
20 box-sizing: border-box; 16 box-sizing: border-box;
21 cursor: default; 17 cursor: default;
22 /* position: relative;*/ 18 height: 13px;
19 margin: 0;
20 width: 13px;
23 } 21 }
24 22
25 input.common[type="checkbox"]:checked::after { 23 input.common[type='checkbox']:checked::after {
26 content: url('../images/common/check_no_box.png'); 24 content: url('../images/common/check_no_box.png');
27 display: block; 25 display: block;
26 left: -5px;
28 position: absolute; 27 position: absolute;
29 top: -6px; 28 top: -6px;
30 left: -5px; 29 }
31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698