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-width: 540px; | 7 min-width: 540px; |
7 } | 8 } |
8 | 9 |
9 #website-settings-edit-page { | 10 #website-settings-edit-page { |
10 max-height: 445px; | 11 max-height: 445px; |
11 min-width: 540px; | 12 min-width: 540px; |
12 } | 13 } |
13 | 14 |
14 .website-column-headers { | 15 .website-column-headers { |
15 padding: 3px 0 6px; | 16 padding: 3px 0 6px; |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 } | 105 } |
105 | 106 |
106 #website-settings-edit-page .website-property-button { | 107 #website-settings-edit-page .website-property-button { |
107 min-width: 70px; | 108 min-width: 70px; |
108 } | 109 } |
109 | 110 |
110 #website-settings-edit-page .website-property-controls { | 111 #website-settings-edit-page .website-property-controls { |
111 min-width: 165px; | 112 min-width: 165px; |
112 } | 113 } |
113 | 114 |
| 115 #website-settings-global-controls { |
| 116 -webkit-margin-after: 8px; |
| 117 align-items: center; |
| 118 display: flex; |
| 119 } |
| 120 |
| 121 #global-setting { |
| 122 flex: 1; |
| 123 } |
| 124 |
114 /* Styles for the origin list elements in the website settings page. */ | 125 /* Styles for the origin list elements in the website settings page. */ |
115 .origin-list { | 126 .origin-list { |
116 border: 1px solid #d9d9d9; | 127 border: 1px solid #d9d9d9; |
117 font-size: 13px; | 128 font-size: 13px; |
118 height: 192px; | 129 height: 192px; |
119 margin: 5px 0 0; | 130 margin: 5px 0 0; |
120 } | 131 } |
121 | 132 |
122 #website-settings-page .blocked-origin-list { | 133 #website-settings-page .blocked-origin-list { |
123 height: 128px; | 134 height: 128px; |
(...skipping 24 matching lines...) Expand all Loading... |
148 -webkit-padding-start: 21px; | 159 -webkit-padding-start: 21px; |
149 font-size: 13px; | 160 font-size: 13px; |
150 } | 161 } |
151 | 162 |
152 .permission-option { | 163 .permission-option { |
153 -webkit-margin-before: 4px; | 164 -webkit-margin-before: 4px; |
154 align-items: center; | 165 align-items: center; |
155 display: flex; | 166 display: flex; |
156 justify-content: space-between; | 167 justify-content: space-between; |
157 } | 168 } |
OLD | NEW |