| OLD | NEW |
| 1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 #website-settings-page { | 5 #website-settings-page { |
| 6 max-height: 445px; | |
| 7 min-width: 540px; | 6 min-width: 540px; |
| 8 } | 7 } |
| 9 | 8 |
| 10 #website-settings-edit-page { | 9 #website-settings-edit-page { |
| 11 max-height: 445px; | 10 max-height: 445px; |
| 12 min-width: 540px; | 11 min-width: 540px; |
| 13 } | 12 } |
| 14 | 13 |
| 15 .website-column-headers { | 14 .website-column-headers { |
| 16 padding: 3px 0 6px; | 15 padding: 3px 0 6px; |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 | 105 |
| 107 #website-settings-edit-page .website-property-button { | 106 #website-settings-edit-page .website-property-button { |
| 108 min-width: 70px; | 107 min-width: 70px; |
| 109 } | 108 } |
| 110 | 109 |
| 111 #website-settings-edit-page .website-property-controls { | 110 #website-settings-edit-page .website-property-controls { |
| 112 min-width: 165px; | 111 min-width: 165px; |
| 113 } | 112 } |
| 114 | 113 |
| 115 /* Styles for the origin list elements in the website settings page. */ | 114 /* Styles for the origin list elements in the website settings page. */ |
| 116 #origin-list { | 115 .origin-list { |
| 117 border: 1px solid #d9d9d9; | 116 border: 1px solid #d9d9d9; |
| 118 font-size: 13px; | 117 font-size: 13px; |
| 118 height: 192px; |
| 119 margin: 5px 0 0; | 119 margin: 5px 0 0; |
| 120 min-height: 287px; | 120 } |
| 121 |
| 122 #website-settings-page .blocked-origin-list { |
| 123 height: 128px; |
| 124 min-height: 128px; |
| 125 } |
| 126 |
| 127 #website-settings-page .nonsplit-origin-list { |
| 128 height: 357px; |
| 129 min-height: 357px; |
| 121 } | 130 } |
| 122 | 131 |
| 123 #origin-list-item { | 132 #origin-list-item { |
| 124 height: 30px; | 133 height: 30px; |
| 125 } | 134 } |
| 126 | 135 |
| 127 .local-storage-usage { | 136 .local-storage-usage { |
| 128 color: #7f7f7f; | 137 color: #7f7f7f; |
| 129 margin: auto 0; | 138 margin: auto 0; |
| 130 } | 139 } |
| 131 | 140 |
| 132 list.origin-list .favicon-cell { | 141 list.origin-list .favicon-cell { |
| 133 -webkit-margin-start: 6px; | 142 -webkit-margin-start: 6px; |
| 134 -webkit-padding-start: 21px; | 143 -webkit-padding-start: 21px; |
| 135 } | 144 } |
| 136 | 145 |
| 137 list.origin-list .favicon-cell { | 146 list.origin-list .favicon-cell { |
| 138 -webkit-margin-start: 5px; | 147 -webkit-margin-start: 5px; |
| 139 -webkit-padding-start: 21px; | 148 -webkit-padding-start: 21px; |
| 140 font-size: 13px; | 149 font-size: 13px; |
| 141 } | 150 } |
| 142 | 151 |
| 143 .permission-option { | 152 .permission-option { |
| 144 -webkit-margin-before: 4px; | 153 -webkit-margin-before: 4px; |
| 145 align-items: center; | 154 align-items: center; |
| 146 display: flex; | 155 display: flex; |
| 147 justify-content: space-between; | 156 justify-content: space-between; |
| 148 } | 157 } |
| OLD | NEW |