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

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

Issue 23726024: Fix 2x UI issues for Feedback. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | « content/browser/webui/shared_resources_data_source.cc ('k') | 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 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 height: 21px; 10 height: 21px;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 button.white-button[disabled] { 43 button.white-button[disabled] {
44 border-image: -webkit-image-set( 44 border-image: -webkit-image-set(
45 url('chrome://resources/images/apps/button_inactive.png') 1x, 45 url('chrome://resources/images/apps/button_inactive.png') 1x,
46 url('chrome://resources/images/2x/apps/button_inactive.png') 46 url('chrome://resources/images/2x/apps/button_inactive.png')
47 2x) 5 fill / 5px / 2px repeat; 47 2x) 5 fill / 5px / 2px repeat;
48 } 48 }
49 49
50 button.blue-button { 50 button.blue-button {
51 border-image: -webkit-image-set( 51 border-image: -webkit-image-set(
52 url('chrome://resources/images/apps/blue_button.png') 1x, 52 url('chrome://resources/images/apps/blue_button.png') 1x,
53 url('chrome://resources/images/2x/apps/_bluebutton.png') 53 url('chrome://resources/images/2x/apps/blue_button.png')
54 2x) 5 fill / 5px / 2px repeat; 54 2x) 5 fill / 5px / 2px repeat;
55 } 55 }
56 56
57 button.blue-button:hover { 57 button.blue-button:hover {
58 border-image: -webkit-image-set( 58 border-image: -webkit-image-set(
59 url('chrome://resources/images/apps/blue_button_hover.png') 1x, 59 url('chrome://resources/images/apps/blue_button_hover.png') 1x,
60 url('chrome://resources/images/2x/apps/blue_button_hover.png') 60 url('chrome://resources/images/2x/apps/blue_button_hover.png')
61 2x) 5 fill / 5px / 2px repeat; 61 2x) 5 fill / 5px / 2px repeat;
62 } 62 }
63 63
(...skipping 30 matching lines...) Expand all
94 background-image: -webkit-image-set( 94 background-image: -webkit-image-set(
95 url('chrome://resources/images/apps/checkbox.png') 1x, 95 url('chrome://resources/images/apps/checkbox.png') 1x,
96 url('chrome://resources/images/2x/apps/checkbox.png') 2x); 96 url('chrome://resources/images/2x/apps/checkbox.png') 2x);
97 } 97 }
98 98
99 input[type='checkbox']:checked::after { 99 input[type='checkbox']:checked::after {
100 background-image: -webkit-image-set( 100 background-image: -webkit-image-set(
101 url('chrome://resources/images/apps/checkbox_checked.png') 1x, 101 url('chrome://resources/images/apps/checkbox_checked.png') 1x,
102 url('chrome://resources/images/2x/apps/checkbox_checked.png') 2x); 102 url('chrome://resources/images/2x/apps/checkbox_checked.png') 2x);
103 } 103 }
OLDNEW
« no previous file with comments | « content/browser/webui/shared_resources_data_source.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698