OLD | NEW |
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 body { | 5 body { |
6 background-color: #E6E6E6; | 6 background-color: #E6E6E6; |
7 font-family: Helvetica, Arial, sans-serif; | 7 font-family: Helvetica, Arial, sans-serif; |
8 font-size: 10pt; | 8 font-size: 10pt; |
9 margin: 50px 40px 20px 40px; | 9 margin: 50px 40px 20px 40px; |
10 } | 10 } |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 <if expr="is_android"> | 187 <if expr="is_android"> |
188 background-color: rgb(39, 180, 231); | 188 background-color: rgb(39, 180, 231); |
189 border: 1px solid rgb(0, 152, 206); | 189 border: 1px solid rgb(0, 152, 206); |
190 </if> | 190 </if> |
191 <if expr="not is_android and not is_ios"> | 191 <if expr="not is_android and not is_ios"> |
192 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15), inset 0 1px 2px rgba(255, 255, 255, 0
.2); | 192 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15), inset 0 1px 2px rgba(255, 255, 255, 0
.2); |
193 </if> | 193 </if> |
194 } | 194 } |
195 | 195 |
196 .blue-button:hover { | 196 .blue-button:hover { |
| 197 color: #fff; |
197 <if expr="not is_android"> | 198 <if expr="not is_android"> |
198 background-image: -webkit-linear-gradient(#659efd, #659efd 38%, #6097f1); | 199 background-image: -webkit-linear-gradient(#659efd, #659efd 38%, #6097f1); |
199 border: 1px solid rgba(45, 102, 195, 1); | 200 border: 1px solid rgba(45, 102, 195, 1); |
200 </if> | 201 </if> |
201 <if expr="not is_android and not is_ios"> | 202 <if expr="not is_android and not is_ios"> |
202 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0
.2); | 203 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0
.2); |
203 </if> | 204 </if> |
204 } | 205 } |
205 | 206 |
206 .blue-button:active { | 207 .blue-button:active { |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 visibility: visible; | 343 visibility: visible; |
343 } | 344 } |
344 | 345 |
345 /* If the iframe is too small, always hide the error code. */ | 346 /* If the iframe is too small, always hide the error code. */ |
346 /* TODO(mmenke): See if overflow: no-display works better, once supported. */ | 347 /* TODO(mmenke): See if overflow: no-display works better, once supported. */ |
347 @media (max-width: 200px), (max-height: 95px) { | 348 @media (max-width: 200px), (max-height: 95px) { |
348 #sub-frame-error-details { | 349 #sub-frame-error-details { |
349 display: none; | 350 display: none; |
350 } | 351 } |
351 } | 352 } |
OLD | NEW |