OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |