| 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 #content-settings-page { | 5 #content-settings-page { |
| 6 min-width: 600px; | 6 min-width: 620px; |
| 7 } | 7 } |
| 8 | 8 |
| 9 #content-settings-exceptions-area { | 9 #content-settings-exceptions-area { |
| 10 min-width: 540px; | 10 min-width: 540px; |
| 11 } | 11 } |
| 12 | 12 |
| 13 .exception-pattern { | 13 .exception-pattern { |
| 14 -webkit-box-flex: 1; | 14 -webkit-box-flex: 1; |
| 15 -webkit-margin-end: 10px; | 15 -webkit-margin-end: 10px; |
| 16 -webkit-margin-start: 14px; | 16 -webkit-margin-start: 14px; |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 margin-bottom: 10px; | 51 margin-bottom: 10px; |
| 52 margin-top: 4px; | 52 margin-top: 4px; |
| 53 } | 53 } |
| 54 | 54 |
| 55 #disable-plugins-container { | 55 #disable-plugins-container { |
| 56 /* Same as .checkbox and .radio padding. Using padding instead of margin | 56 /* Same as .checkbox and .radio padding. Using padding instead of margin |
| 57 * to ensure minimum height for tap target. */ | 57 * to ensure minimum height for tap target. */ |
| 58 padding: 7px 0; | 58 padding: 7px 0; |
| 59 } | 59 } |
| 60 | 60 |
| 61 div[role='listitem'][managedby] { | 61 div[role='listitem'][controlled-by] { |
| 62 color: #666; | 62 color: #666; |
| 63 font-style: italic; | 63 font-style: italic; |
| 64 position: relative; | 64 position: relative; |
| 65 } | 65 } |
| 66 | 66 |
| 67 .settings-list div[role='listitem'][managedby='policy'], | 67 .settings-list div[role='listitem'][controlled-by='policy'], |
| 68 .settings-list div[role='listitem'][managedby='extension'] { | 68 .settings-list div[role='listitem'][controlled-by='extension'] { |
| 69 background: -webkit-linear-gradient(rgb(250, 230, 146), rgb(250, 230, 146)); | 69 background: rgb(250, 230, 146); |
| 70 border-bottom: 1px solid rgb(201, 189, 141); | 70 border-bottom: 1px solid rgb(201, 189, 141); |
| 71 border-top: 0; | 71 border-top: 0; |
| 72 } | 72 } |
| 73 | 73 |
| 74 list div[role='listitem'][managedby='policy'] .close-button { | |
| 75 background-image: url('chrome://theme/IDR_MANAGED'); | |
| 76 background-size: 16px; | |
| 77 opacity: 1; | |
| 78 } | |
| 79 | |
| 80 list div[role='listitem'][managedby='extension'] .close-button { | |
| 81 background-image: url('chrome://theme/IDR_EXTENSIONS_SECTION_SMALL'); | |
| 82 background-size: 16px; | |
| 83 opacity: 1; | |
| 84 } | |
| 85 | |
| 86 .sublabel { | 74 .sublabel { |
| 87 -webkit-margin-start: 2em; | 75 -webkit-margin-start: 2em; |
| 88 } | 76 } |
| OLD | NEW |