| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
| 3 Use of this source code is governed by a BSD-style license that can be | |
| 4 found in the LICENSE file. | |
| 5 */ | |
| 6 | |
| 7 .exception-pattern { | |
| 8 -webkit-box-flex: 1; | |
| 9 -webkit-margin-end: 10px; | |
| 10 -webkit-margin-start: 14px; | |
| 11 } | |
| 12 | |
| 13 .exception-setting { | |
| 14 display: inline-block; | |
| 15 width: 120px; | |
| 16 } | |
| 17 | |
| 18 select.exception-setting { | |
| 19 vertical-align: middle; | |
| 20 } | |
| 21 | |
| 22 #exception-column-headers { | |
| 23 -webkit-margin-start: 17px; | |
| 24 display: -webkit-box; | |
| 25 margin-top: 17px; | |
| 26 } | |
| 27 | |
| 28 #exception-column-headers > div { | |
| 29 font-weight: bold; | |
| 30 } | |
| 31 | |
| 32 #exception-pattern-column { | |
| 33 -webkit-box-flex: 1; | |
| 34 } | |
| 35 | |
| 36 #exception-behavior-column { | |
| 37 width: 145px; | |
| 38 } | |
| 39 | |
| 40 .otr-explanation { | |
| 41 font-style: italic; | |
| 42 } | |
| 43 | |
| 44 #content-settings-exceptions-area list { | |
| 45 margin-bottom: 10px; | |
| 46 margin-top: 4px; | |
| 47 } | |
| 48 | |
| 49 #disable-plugins-container { | |
| 50 margin: 7px 0px; | |
| 51 } | |
| 52 | |
| 53 div[role="listitem"][managedby] { | |
| 54 color: #666; | |
| 55 font-style: italic; | |
| 56 position: relative; | |
| 57 } | |
| 58 | |
| 59 .settings-list div[role="listitem"][managedby="policy"], | |
| 60 .settings-list div[role="listitem"][managedby="extension"] { | |
| 61 background: -webkit-linear-gradient(#fff1b5, #fae692); | |
| 62 border-top: 0; | |
| 63 border-bottom: 1px solid #c9bd8d; | |
| 64 } | |
| 65 | |
| 66 list div[role="listitem"][managedby="policy"] .close-button { | |
| 67 background-image: url("chrome://theme/IDR_MANAGED"); | |
| 68 opacity: 1; | |
| 69 } | |
| 70 | |
| 71 list div[role="listitem"][managedby="extension"] .close-button { | |
| 72 background-image: url("chrome://theme/IDR_EXTENSIONS_SECTION_SMALL"); | |
| 73 opacity: 1; | |
| 74 } | |
| OLD | NEW |