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 #managed-user-settings-page { | 5 #managed-user-settings-page { |
6 min-width: 600px; | 6 min-width: 600px; |
7 } | 7 } |
8 | 8 |
9 /* Content Packs list */ | |
10 #content-packs-list { | 9 #content-packs-list { |
11 margin-bottom: 10px; | 10 margin-bottom: 10px; |
12 min-height: 0; | 11 min-height: 0; |
13 } | 12 } |
14 | 13 |
15 #spacer { | 14 #spacer { |
16 -webkit-box-flex: 1; | 15 -webkit-box-flex: 1; |
17 display: block; | 16 display: block; |
18 } | 17 } |
19 | 18 |
20 .locked #lock-settings, | 19 .locked #lock-settings, |
21 #managed-user-settings-page:not(.locked) #unlock-settings { | 20 #managed-user-settings-page:not(.locked) #unlock-settings { |
22 display: none; | 21 display: none; |
23 } | 22 } |
| 23 |
| 24 #managed-user-exceptions-area { |
| 25 min-width: 540px; |
| 26 } |
| 27 |
| 28 #managed-user-exceptions-area list { |
| 29 margin-bottom: 10px; |
| 30 margin-top: 4px; |
| 31 } |
| 32 |
| 33 #manual-exception-column-headers { |
| 34 -webkit-margin-start: 17px; |
| 35 display: -webkit-flex; |
| 36 margin-top: 17px; |
| 37 } |
| 38 |
| 39 #manual-exception-column-headers > div { |
| 40 font-weight: bold; |
| 41 } |
| 42 |
| 43 #manual-exception-pattern-column { |
| 44 -webkit-flex: 1; |
| 45 } |
| 46 |
| 47 #manual-exception-behavior-column { |
| 48 width: 145px; |
| 49 } |
OLD | NEW |