| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 | 49 |
| 50 #content-settings-exceptions-area list { | 50 #content-settings-exceptions-area list { |
| 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 margin: 7px 0; | 56 margin: 7px 0; |
| 57 } | 57 } |
| 58 | 58 |
| 59 div[role='listitem'][managedby] { | 59 div[role='option'][managedby] { |
| 60 color: #666; | 60 color: #666; |
| 61 font-style: italic; | 61 font-style: italic; |
| 62 position: relative; | 62 position: relative; |
| 63 } | 63 } |
| 64 | 64 |
| 65 .settings-list div[role='listitem'][managedby='policy'], | 65 .settings-list div[role='option'][managedby='policy'], |
| 66 .settings-list div[role='listitem'][managedby='extension'] { | 66 .settings-list div[role='option'][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='option'][managedby='policy'] .close-button { |
| 73 background-image: url('chrome://theme/IDR_MANAGED'); | 73 background-image: url('chrome://theme/IDR_MANAGED'); |
| 74 opacity: 1; | 74 opacity: 1; |
| 75 } | 75 } |
| 76 | 76 |
| 77 list div[role='listitem'][managedby='extension'] .close-button { | 77 list div[role='option'][managedby='extension'] .close-button { |
| 78 background-image: url('chrome://theme/IDR_EXTENSIONS_SECTION_SMALL'); | 78 background-image: url('chrome://theme/IDR_EXTENSIONS_SECTION_SMALL'); |
| 79 opacity: 1; | 79 opacity: 1; |
| 80 } | 80 } |
| OLD | NEW |