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

Side by Side Diff: ui/webui/resources/css/apps/common.css

Issue 2889113002: web_dev_style: Fix errors in new directories and enable PRESUBMIT (Closed)
Patch Set: merge+fix Created 3 years, 7 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
OLDNEW
1 /* Copyright 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 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 button.white-button, 5 button.white-button,
6 button.blue-button { 6 button.blue-button {
7 border: 5px solid transparent; 7 border: 5px solid transparent;
8 box-sizing: content-box; 8 box-sizing: content-box;
9 cursor: default; 9 cursor: default;
10 font-size: 14px; 10 font-size: 14px;
11 height: 21px; 11 height: 21px;
12 line-height: 21px; 12 line-height: 21px;
13 margin: 0; 13 margin: 0;
14 min-height: 21px; 14 min-height: 21px;
15 min-width: 55px; 15 min-width: 55px;
16 outline: none;
16 padding: 0 10px; 17 padding: 0 10px;
17 position: relative; 18 position: relative;
18 outline: none;
19 text-align: center; 19 text-align: center;
20 z-index: 1; 20 z-index: 1;
21 } 21 }
22 22
23 button.white-button { 23 button.white-button {
24 border-image: -webkit-image-set( 24 border-image: -webkit-image-set(
25 url(chrome://resources/images/apps/button.png) 1x, 25 url(chrome://resources/images/apps/button.png) 1x,
26 url(chrome://resources/images/2x/apps/button.png) 26 url(chrome://resources/images/2x/apps/button.png)
27 2x) 5 fill / 5px / 2px repeat; 27 2x) 5 fill / 5px / 2px repeat;
28 } 28 }
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 background-image: -webkit-image-set( 161 background-image: -webkit-image-set(
162 url(chrome://resources/images/apps/checkbox_focused_checked.png) 1x, 162 url(chrome://resources/images/apps/checkbox_focused_checked.png) 1x,
163 url(chrome://resources/images/2x/apps/checkbox_focused_checked.png) 2x); 163 url(chrome://resources/images/2x/apps/checkbox_focused_checked.png) 2x);
164 } 164 }
165 165
166 input[type='checkbox']:disabled:checked::after { 166 input[type='checkbox']:disabled:checked::after {
167 background-image: -webkit-image-set( 167 background-image: -webkit-image-set(
168 url(chrome://resources/images/apps/checkbox_checked_inactive.png) 1x, 168 url(chrome://resources/images/apps/checkbox_checked_inactive.png) 1x,
169 url(chrome://resources/images/2x/apps/checkbox_checked_inactive.png) 2x); 169 url(chrome://resources/images/2x/apps/checkbox_checked_inactive.png) 2x);
170 } 170 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698