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

Side by Side Diff: chrome/browser/resources/shared/css/chrome_shared2.css

Issue 9555016: [uber] css hack n slash (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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 /* 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 holds CSS that should be shared, in theory, by all user-visible 5 /* This file holds CSS that should be shared, in theory, by all user-visible
6 * chrome:// pages. This contrasts chrome_shared.css, which it is meant to 6 * chrome:// pages. This contrasts chrome_shared.css, which it is meant to
7 * replace, but has CSS specific to options and options-like pages. */ 7 * replace, but has CSS specific to options and options-like pages. */
8 8
9 @import url("chrome://resources/css/button.css"); 9 @import url("chrome://resources/css/button.css");
10 @import url("chrome://resources/css/checkbox.css"); 10 @import url("chrome://resources/css/checkbox.css");
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 color: rgb(17, 85, 204); 61 color: rgb(17, 85, 204);
62 text-decoration: underline; 62 text-decoration: underline;
63 } 63 }
64 64
65 a:active { 65 a:active {
66 color: rgb(5, 37, 119); 66 color: rgb(5, 37, 119);
67 } 67 }
68 68
69 div.checkbox, 69 div.checkbox,
70 div.radio { 70 div.radio {
71 margin: 5px 0; 71 margin: 0.45em 0;
72 } 72 }
73 73
74 input[type=radio] ~ span, 74 input[type=radio] ~ span,
75 input[type=checkbox] ~ span { 75 input[type=checkbox] ~ span {
76 color: #444; 76 color: #444;
77 } 77 }
78 78
79 /* Focus for all inputs. */ 79 /* Focus for all inputs. */
80 button:not(.custom-appearance):focus, 80 button:not(.custom-appearance):focus,
81 input:not(.custom-appearance):focus, 81 input:not(.custom-appearance):focus,
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 * For now it's a bandaid until we install open sans properly. */ 193 * For now it's a bandaid until we install open sans properly. */
194 <if expr="is_posix and not is_macosx and not pp_ifdef('chromeos')"> 194 <if expr="is_posix and not is_macosx and not pp_ifdef('chromeos')">
195 @font-face { 195 @font-face {
196 font-family: 'Open Sans'; 196 font-family: 'Open Sans';
197 font-style: normal; 197 font-style: normal;
198 font-weight: 400; 198 font-weight: 400;
199 src: local('Open Sans'), local('OpenSans'), 199 src: local('Open Sans'), local('OpenSans'),
200 url('chrome://resources/fonts/open_sans.woff') format('woff'); 200 url('chrome://resources/fonts/open_sans.woff') format('woff');
201 } 201 }
202 </if> 202 </if>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698