| OLD | NEW |
| 1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 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 body.uber-frame { | 5 body { |
| 6 -webkit-margin-start: 0; | 6 -webkit-margin-start: 0; |
| 7 } | 7 } |
| 8 | 8 |
| 9 body.uber-frame > .page { | 9 body > .page { |
| 10 -webkit-margin-end: 0; | 10 -webkit-margin-end: 0; |
| 11 -webkit-padding-end: 10px; | 11 -webkit-padding-end: 10px; |
| 12 -webkit-padding-start: 10px; | 12 -webkit-padding-start: 10px; |
| 13 min-width: 0; | 13 min-width: 0; |
| 14 } | 14 } |
| 15 | 15 |
| 16 #filter-overlay { | 16 #filter-overlay { |
| 17 padding-bottom: 0; | 17 padding-bottom: 0; |
| 18 position: fixed; | 18 position: fixed; |
| 19 z-index: 4; | 19 z-index: 4; |
| 20 } | 20 } |
| 21 | 21 |
| 22 body.uber-frame header { | 22 body header { |
| 23 left: 0; | 23 left: 0; |
| 24 max-width: none; | 24 max-width: none; |
| 25 min-width: 0; | 25 min-width: 0; |
| 26 } | 26 } |
| 27 | 27 |
| 28 body.uber-frame header > h1 { | 28 body header > h1 { |
| 29 margin-left: 10px; | 29 margin-left: 10px; |
| 30 } | 30 } |
| 31 | 31 |
| 32 body.uber-frame section { | 32 body section { |
| 33 -webkit-padding-start: 0; | 33 -webkit-padding-start: 0; |
| 34 max-width: none; | 34 max-width: none; |
| 35 } | 35 } |
| 36 | 36 |
| 37 body.uber-frame section > h3 { | 37 body section > h3 { |
| 38 -webkit-margin-start: 0; | 38 -webkit-margin-start: 0; |
| 39 } | 39 } |
| 40 | 40 |
| 41 #status-box-container { | 41 #status-box-container { |
| 42 display: -webkit-flex; | 42 display: -webkit-flex; |
| 43 } | 43 } |
| 44 | 44 |
| 45 fieldset { | 45 fieldset { |
| 46 border: 1px solid rgb(217, 217, 217); | 46 border: 1px solid rgb(217, 217, 217); |
| 47 display: inline; | 47 display: inline; |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 } | 125 } |
| 126 | 126 |
| 127 section.empty > table { | 127 section.empty > table { |
| 128 display: none; | 128 display: none; |
| 129 } | 129 } |
| 130 | 130 |
| 131 section:not(.empty) > div.no-policies-set { | 131 section:not(.empty) > div.no-policies-set { |
| 132 display: none; | 132 display: none; |
| 133 } | 133 } |
| 134 | 134 |
| 135 body.uber-frame * section.policy-table-section { | 135 body * section.policy-table-section { |
| 136 padding-bottom: 10px; | 136 padding-bottom: 10px; |
| 137 } | 137 } |
| 138 | 138 |
| 139 th, | 139 th, |
| 140 td { | 140 td { |
| 141 border: 1px solid rgb(217, 217, 217); | 141 border: 1px solid rgb(217, 217, 217); |
| 142 padding: 4px; | 142 padding: 4px; |
| 143 } | 143 } |
| 144 | 144 |
| 145 th { | 145 th { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 | 188 |
| 189 tbody:not(.has-overflowed-value) > tr.expanded-value-container, | 189 tbody:not(.has-overflowed-value) > tr.expanded-value-container, |
| 190 tbody:not(.show-overflowed-value) > tr.expanded-value-container { | 190 tbody:not(.show-overflowed-value) > tr.expanded-value-container { |
| 191 display: none; | 191 display: none; |
| 192 } | 192 } |
| 193 | 193 |
| 194 td.expanded-value { | 194 td.expanded-value { |
| 195 white-space: pre; | 195 white-space: pre; |
| 196 word-wrap: break-word; | 196 word-wrap: break-word; |
| 197 } | 197 } |
| OLD | NEW |