| 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 body { | 5 body { |
| 6 position: relative; | 6 position: relative; |
| 7 } | 7 } |
| 8 | 8 |
| 9 #main-content { | 9 #main-content { |
| 10 bottom: 0; | 10 bottom: 0; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 div.disabled { | 40 div.disabled { |
| 41 color: #888; | 41 color: #888; |
| 42 } | 42 } |
| 43 | 43 |
| 44 .settings-row { | 44 .settings-row { |
| 45 display: block; | 45 display: block; |
| 46 margin-bottom: 0.45em; | 46 margin-bottom: 0.45em; |
| 47 margin-top: 0.45em; | 47 margin-top: 0.45em; |
| 48 } | 48 } |
| 49 | 49 |
| 50 /* TEXT */ | |
| 51 input[type='password'], | |
| 52 input[type='text'], | |
| 53 input[type='url'], | |
| 54 input:not([type]) { | |
| 55 -webkit-border-radius: 2px; | |
| 56 border: 1px solid #aaa; | |
| 57 font-size: inherit; | |
| 58 padding: 3px; | |
| 59 } | |
| 60 | |
| 61 input[type='text']:disabled { | |
| 62 color: #888; | |
| 63 } | |
| 64 | |
| 65 .hbox { | 50 .hbox { |
| 66 -webkit-box-orient: horizontal; | 51 -webkit-box-orient: horizontal; |
| 67 display: -webkit-box; | 52 display: -webkit-box; |
| 68 } | 53 } |
| 69 | 54 |
| 70 .vbox { | 55 .vbox { |
| 71 -webkit-box-orient: vertical; | 56 -webkit-box-orient: vertical; |
| 72 display: -webkit-box; | 57 display: -webkit-box; |
| 73 } | 58 } |
| 74 | 59 |
| (...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 596 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); | 581 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); |
| 597 } | 582 } |
| 598 | 583 |
| 599 html[dir='rtl'] .controlled-setting-bubble-text { | 584 html[dir='rtl'] .controlled-setting-bubble-text { |
| 600 background-position: right top; | 585 background-position: right top; |
| 601 } | 586 } |
| 602 | 587 |
| 603 .controlled-setting-bubble-action { | 588 .controlled-setting-bubble-action { |
| 604 padding: 0 !important; | 589 padding: 0 !important; |
| 605 } | 590 } |
| OLD | NEW |