| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 .otr-explanation { | 46 .otr-explanation { |
| 47 font-style: italic; | 47 font-style: italic; |
| 48 } | 48 } |
| 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 /* Same as .checkbox and .radio padding. Using padding instead of margin |
| 57 * to ensure minimum height for tap target. */ |
| 58 padding: 7px 0; |
| 57 } | 59 } |
| 58 | 60 |
| 59 div[role='listitem'][managedby] { | 61 div[role='listitem'][managedby] { |
| 60 color: #666; | 62 color: #666; |
| 61 font-style: italic; | 63 font-style: italic; |
| 62 position: relative; | 64 position: relative; |
| 63 } | 65 } |
| 64 | 66 |
| 65 .settings-list div[role='listitem'][managedby='policy'], | 67 .settings-list div[role='listitem'][managedby='policy'], |
| 66 .settings-list div[role='listitem'][managedby='extension'] { | 68 .settings-list div[role='listitem'][managedby='extension'] { |
| 67 background: -webkit-linear-gradient(rgb(250, 230, 146), rgb(250, 230, 146)); | 69 background: -webkit-linear-gradient(rgb(250, 230, 146), rgb(250, 230, 146)); |
| 68 border-bottom: 1px solid rgb(201, 189, 141); | 70 border-bottom: 1px solid rgb(201, 189, 141); |
| 69 border-top: 0; | 71 border-top: 0; |
| 70 } | 72 } |
| 71 | 73 |
| 72 list div[role='listitem'][managedby='policy'] .close-button { | 74 list div[role='listitem'][managedby='policy'] .close-button { |
| 73 background-image: url('chrome://theme/IDR_MANAGED'); | 75 background-image: url('chrome://theme/IDR_MANAGED'); |
| 74 background-size: 16px; | 76 background-size: 16px; |
| 75 opacity: 1; | 77 opacity: 1; |
| 76 } | 78 } |
| 77 | 79 |
| 78 list div[role='listitem'][managedby='extension'] .close-button { | 80 list div[role='listitem'][managedby='extension'] .close-button { |
| 79 background-image: url('chrome://theme/IDR_EXTENSIONS_SECTION_SMALL'); | 81 background-image: url('chrome://theme/IDR_EXTENSIONS_SECTION_SMALL'); |
| 80 background-size: 16px; | 82 background-size: 16px; |
| 81 opacity: 1; | 83 opacity: 1; |
| 82 } | 84 } |
| OLD | NEW |