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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 div.disabled { | 45 div.disabled { |
46 color: #888; | 46 color: #888; |
47 } | 47 } |
48 | 48 |
49 .settings-row { | 49 .settings-row { |
50 display: block; | 50 display: block; |
51 margin-bottom: 0.45em; | 51 margin-bottom: 0.45em; |
52 margin-top: 0.45em; | 52 margin-top: 0.45em; |
53 } | 53 } |
54 | 54 |
55 button:first-child { | |
56 -webkit-margin-start: 0; | |
57 } | |
58 | |
59 /* TEXT */ | 55 /* TEXT */ |
60 input[type='password'], | 56 input[type='password'], |
61 input[type='text'], | 57 input[type='text'], |
62 input[type='url'], | 58 input[type='url'], |
63 input:not([type]) { | 59 input:not([type]) { |
64 -webkit-border-radius: 2px; | 60 -webkit-border-radius: 2px; |
65 border: 1px solid #aaa; | 61 border: 1px solid #aaa; |
66 font-size: inherit; | 62 font-size: inherit; |
67 padding: 3px; | 63 padding: 3px; |
68 } | 64 } |
(...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
610 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); | 606 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); |
611 } | 607 } |
612 | 608 |
613 html[dir='rtl'] .controlled-setting-bubble-text { | 609 html[dir='rtl'] .controlled-setting-bubble-text { |
614 background-position: right top; | 610 background-position: right top; |
615 } | 611 } |
616 | 612 |
617 .controlled-setting-bubble-action { | 613 .controlled-setting-bubble-action { |
618 padding: 0 !important; | 614 padding: 0 !important; |
619 } | 615 } |
OLD | NEW |