| 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 min-height: 445px; | 6 min-height: 445px; |
| 7 min-width: 540px; | 7 min-width: 540px; |
| 8 } | 8 } |
| 9 | 9 |
| 10 #website-settings-edit-page { | 10 #website-settings-edit-page { |
| 11 max-height: 445px; | 11 max-height: 445px; |
| 12 min-width: 540px; | 12 min-width: 540px; |
| 13 } | 13 } |
| 14 | 14 |
| 15 .website-column-headers { | 15 .website-column-headers { |
| 16 padding: 3px 0 6px; | 16 padding: 3px 0 6px; |
| 17 } | 17 } |
| 18 | 18 |
| 19 .website-header-controls { | 19 .website-header-controls { |
| 20 align-items: center; |
| 20 display: flex; | 21 display: flex; |
| 22 justify-content: space-between; |
| 21 } | 23 } |
| 22 | 24 |
| 23 .website-header-controls > div { | 25 .website-header-controls > div { |
| 24 font-weight: bold; | 26 font-weight: bold; |
| 25 } | 27 } |
| 26 | 28 |
| 27 .resource-type-select { | 29 #allowed-origin-list-title { |
| 28 -webkit-margin-end: auto; | 30 font-size: 1.3em; |
| 29 min-width: 170px; | |
| 30 } | 31 } |
| 31 | 32 |
| 32 #website-settings-search-box { | 33 #website-settings-search-box { |
| 33 -webkit-margin-start: 35px; | 34 -webkit-margin-start: 35px; |
| 34 width: 165px; | 35 width: 165px; |
| 35 } | 36 } |
| 36 | 37 |
| 37 #website-settings-page .action-area { | 38 #website-settings-page .action-area { |
| 38 padding-bottom: 20px; | 39 padding-bottom: 20px; |
| 39 } | 40 } |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 | 107 |
| 107 #website-settings-edit-page .website-property-button { | 108 #website-settings-edit-page .website-property-button { |
| 108 min-width: 70px; | 109 min-width: 70px; |
| 109 } | 110 } |
| 110 | 111 |
| 111 #website-settings-edit-page .website-property-controls { | 112 #website-settings-edit-page .website-property-controls { |
| 112 min-width: 165px; | 113 min-width: 165px; |
| 113 } | 114 } |
| 114 | 115 |
| 115 #website-settings-global-controls { | 116 #website-settings-global-controls { |
| 116 -webkit-margin-after: 8px; | 117 -webkit-margin-after: 24px; |
| 117 align-items: center; | 118 align-items: center; |
| 118 display: flex; | 119 display: flex; |
| 119 } | 120 } |
| 120 | 121 |
| 121 #global-setting { | 122 #global-setting { |
| 122 flex: 1; | 123 flex: 1; |
| 123 } | 124 } |
| 124 | 125 |
| 125 /* Styles for the origin list elements in the website settings page. */ | 126 /* Styles for the origin list elements in the website settings page. */ |
| 126 .origin-list { | 127 .origin-list { |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 -webkit-padding-start: 21px; | 160 -webkit-padding-start: 21px; |
| 160 font-size: 13px; | 161 font-size: 13px; |
| 161 } | 162 } |
| 162 | 163 |
| 163 .permission-option { | 164 .permission-option { |
| 164 -webkit-margin-before: 4px; | 165 -webkit-margin-before: 4px; |
| 165 align-items: center; | 166 align-items: center; |
| 166 display: flex; | 167 display: flex; |
| 167 justify-content: space-between; | 168 justify-content: space-between; |
| 168 } | 169 } |
| OLD | NEW |