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

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

Issue 10703129: Fix alignment of select and button controls in chrome://setttings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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 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. */ 6 * chrome:// pages. */
7 7
8 @import url("chrome://resources/css/widgets.css"); 8 @import url("chrome://resources/css/widgets.css");
9 <if expr="pp_ifdef('chromeos')"> 9 <if expr="pp_ifdef('chromeos')">
10 @import url("chrome://resources/css/chromeos/ui_account_tweaks.css"); 10 @import url("chrome://resources/css/chromeos/ui_account_tweaks.css");
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 .radio label { 129 .radio label {
130 padding-bottom: 7px; 130 padding-bottom: 7px;
131 padding-top: 7px; 131 padding-top: 7px;
132 } 132 }
133 133
134 li > button.link-button { 134 li > button.link-button {
135 padding-bottom: 8px; 135 padding-bottom: 8px;
136 padding-top: 8px; 136 padding-top: 8px;
137 } 137 }
138 138
139 button:not(.custom-appearance):not(.link-button), 139 :-webkit-any(button,
140 input[type=button]:not(.custom-appearance), 140 input[type='button'],
141 input[type=submit]:not(.custom-appearance), 141 input[type='submit'],
142 select { 142 select):not(.custom-appearance):not(.link-button) {
143 margin-bottom: 6px; 143 margin-bottom: 6px;
144 margin-top: 6px; 144 margin-top: 6px;
145 padding-bottom: 7px;
146 padding-top: 6px;
147 } 145 }
148 146
149 list button:not(.custom-appearance):not(.link-button), 147 list :-webkit-any(
150 list input[type=button]:not(.custom-appearance), 148 button,
151 list input[type=submit]:not(.custom-appearance), 149 input[type='button'],
152 list select { 150 input[type='submit'],
151 select):not(.custom-appearance):not(.link-button) {
153 margin: 0; 152 margin: 0;
154 padding-bottom: 0; 153 padding-bottom: 0;
155 padding-top: 3px; 154 padding-top: 3px;
156 } 155 }
157 } 156 }
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