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 /* Controlled setting indicator and bubble. */ | 5 /* Controlled setting indicator and bubble. */ |
6 | 6 |
7 .controlled-setting-with-label input:disabled + span { | 7 .controlled-setting-with-label input:disabled + span { |
8 color: #999; | 8 color: #999; |
9 } | 9 } |
10 | 10 |
(...skipping 14 matching lines...) Expand all Loading... |
25 } | 25 } |
26 | 26 |
27 .controlled-setting-indicator[controlled-by='extension'] > div { | 27 .controlled-setting-indicator[controlled-by='extension'] > div { |
28 background-image: url(chrome://theme/IDR_CONTROLLED_SETTING_EXTENSION); | 28 background-image: url(chrome://theme/IDR_CONTROLLED_SETTING_EXTENSION); |
29 } | 29 } |
30 | 30 |
31 .controlled-setting-indicator[controlled-by='shared'] > div { | 31 .controlled-setting-indicator[controlled-by='shared'] > div { |
32 background-image: url(chrome://theme/IDR_CONTROLLED_SETTING_SHARED); | 32 background-image: url(chrome://theme/IDR_CONTROLLED_SETTING_SHARED); |
33 } | 33 } |
34 | 34 |
| 35 .controlled-setting-indicator[controlled-by='child-custodian'] > div { |
| 36 background-image: url(chrome://theme/IDR_CONTROLLED_SETTING_CHILD); |
| 37 } |
| 38 |
| 39 .controlled-setting-indicator[controlled-by='supervised-user-custodian'] > div { |
| 40 background-image: url(chrome://theme/IDR_CONTROLLED_SETTING_SUPERVISED); |
| 41 } |
| 42 |
35 .controlled-setting-indicator:-webkit-any([controlled-by='recommended'], | 43 .controlled-setting-indicator:-webkit-any([controlled-by='recommended'], |
36 [controlled-by='hasRecommendation']) > div { | 44 [controlled-by='hasRecommendation']) > div { |
37 background-image: url(chrome://theme/IDR_CONTROLLED_SETTING_MANDATORY); | 45 background-image: url(chrome://theme/IDR_CONTROLLED_SETTING_MANDATORY); |
38 } | 46 } |
39 | 47 |
40 .controlled-setting-bubble-action { | 48 .controlled-setting-bubble-action { |
41 padding: 0 !important; | 49 padding: 0 !important; |
42 } | 50 } |
43 | 51 |
44 .controlled-setting-bubble-header { | 52 .controlled-setting-bubble-header { |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 .controlled-setting-bubble-extension-disable-button { | 87 .controlled-setting-bubble-extension-disable-button { |
80 bottom: 0; | 88 bottom: 0; |
81 position: absolute; | 89 position: absolute; |
82 right: 0; | 90 right: 0; |
83 } | 91 } |
84 | 92 |
85 html[dir='rtl'] .controlled-setting-bubble-extension-disable-button { | 93 html[dir='rtl'] .controlled-setting-bubble-extension-disable-button { |
86 left: 0; | 94 left: 0; |
87 right: auto; | 95 right: auto; |
88 } | 96 } |
OLD | NEW |