| 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: 600px; |
| 7 } | 7 } |
| 8 | 8 |
| 9 #content-settings-exceptions-area { | 9 #content-settings-exceptions-area { |
| 10 min-width: 540px; | 10 min-width: 540px; |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 | 64 |
| 65 .settings-list div[role='listitem'][managedby='policy'], | 65 .settings-list div[role='listitem'][managedby='policy'], |
| 66 .settings-list div[role='listitem'][managedby='extension'] { | 66 .settings-list div[role='listitem'][managedby='extension'] { |
| 67 background: -webkit-linear-gradient(rgb(250, 230, 146), rgb(250, 230, 146)); | 67 background: -webkit-linear-gradient(rgb(250, 230, 146), rgb(250, 230, 146)); |
| 68 border-bottom: 1px solid rgb(201, 189, 141); | 68 border-bottom: 1px solid rgb(201, 189, 141); |
| 69 border-top: 0; | 69 border-top: 0; |
| 70 } | 70 } |
| 71 | 71 |
| 72 list div[role='listitem'][managedby='policy'] .close-button { | 72 list div[role='listitem'][managedby='policy'] .close-button { |
| 73 background-image: url('chrome://theme/IDR_MANAGED'); | 73 background-image: url('chrome://theme/IDR_MANAGED'); |
| 74 background-size: 16px; |
| 74 opacity: 1; | 75 opacity: 1; |
| 75 } | 76 } |
| 76 | 77 |
| 77 list div[role='listitem'][managedby='extension'] .close-button { | 78 list div[role='listitem'][managedby='extension'] .close-button { |
| 78 background-image: url('chrome://theme/IDR_EXTENSIONS_SECTION_SMALL'); | 79 background-image: url('chrome://theme/IDR_EXTENSIONS_SECTION_SMALL'); |
| 80 background-size: 16px; |
| 79 opacity: 1; | 81 opacity: 1; |
| 80 } | 82 } |
| OLD | NEW |