OLD | NEW |
(Empty) | |
| 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. |
| 4 */ |
| 5 |
| 6 html, body { |
| 7 height: 100%; |
| 8 margin: 0; |
| 9 overflow: hidden; |
| 10 } |
| 11 |
| 12 .hfill { |
| 13 width: 100%; |
| 14 } |
| 15 |
| 16 input { |
| 17 box-sizing: border-box; |
| 18 } |
| 19 |
| 20 #url-description { |
| 21 margin: 12px 3px 0 3px; |
| 22 } |
| 23 |
| 24 .action-area { |
| 25 -webkit-box-align: center; |
| 26 -webkit-box-orient: horizontal; |
| 27 -webkit-box-pack: end; |
| 28 display: -webkit-box; |
| 29 padding: 12px; |
| 30 text-align: end; |
| 31 } |
| 32 |
| 33 .button-strip { |
| 34 -webkit-box-orient: horizontal; |
| 35 display: -webkit-box; |
| 36 } |
| 37 |
| 38 .button-strip > button { |
| 39 -webkit-margin-start: 10px; |
| 40 display: block; |
| 41 white-space: nowrap; |
| 42 } |
| 43 |
| 44 .valid { |
| 45 background-image: url("chrome://theme/IDR_INPUT_GOOD"); |
| 46 height: 21px; |
| 47 width: 22px; |
| 48 } |
| 49 |
| 50 .invalid { |
| 51 background-image: url("chrome://theme/IDR_INPUT_ALERT"); |
| 52 height: 21px; |
| 53 width: 22px; |
| 54 } |
| 55 } |
OLD | NEW |