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 body.uber-frame { | 5 body.uber-frame { |
6 -webkit-margin-start: 23px; | 6 -webkit-margin-start: 23px; |
7 } | 7 } |
8 | 8 |
9 body.uber-frame > .page { | 9 body.uber-frame > .page { |
10 -webkit-margin-end: 0; | 10 -webkit-margin-end: 0; |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 font-weight: normal; | 141 font-weight: normal; |
142 } | 142 } |
143 | 143 |
144 div.elide, | 144 div.elide, |
145 span.value { | 145 span.value { |
146 overflow: hidden; | 146 overflow: hidden; |
147 text-overflow: ellipsis; | 147 text-overflow: ellipsis; |
148 white-space: nowrap; | 148 white-space: nowrap; |
149 } | 149 } |
150 | 150 |
151 button.toggle-expanded-value { | 151 .toggle-expanded-value { |
152 padding: 0; | 152 padding: 0; |
153 } | 153 } |
154 | 154 |
155 tbody.has-overflowed-value span.value { | 155 tbody.has-overflowed-value span.value { |
156 display: none; | 156 display: none; |
157 } | 157 } |
158 | 158 |
159 tbody:not(.has-overflowed-value) button.toggle-expanded-value { | 159 tbody:not(.has-overflowed-value) .toggle-expanded-value { |
160 display: none; | 160 display: none; |
161 } | 161 } |
162 | 162 |
163 tbody:not(.has-overflowed-value) > tr.expanded-value-container, | 163 tbody:not(.has-overflowed-value) > tr.expanded-value-container, |
164 tbody:not(.show-overflowed-value) > tr.expanded-value-container { | 164 tbody:not(.show-overflowed-value) > tr.expanded-value-container { |
165 display: none; | 165 display: none; |
166 } | 166 } |
167 | 167 |
168 td.expanded-value { | 168 td.expanded-value { |
169 white-space: pre; | 169 white-space: pre; |
170 word-wrap: break-word; | 170 word-wrap: break-word; |
171 } | 171 } |
172 | 172 |
173 html:not(.focus-outline-visible) | 173 html:not(.focus-outline-visible) |
174 :enabled:focus:-webkit-any(input[type='checkbox'], | 174 :enabled:focus:-webkit-any(input[type='checkbox'], |
175 input[type='radio'], button) { | 175 input[type='radio'], button) { |
176 /* Cancel border-color for :focus specified in widgets.css. */ | 176 /* Cancel border-color for :focus specified in widgets.css. */ |
177 border-color: rgba(0, 0, 0, 0.25); | 177 border-color: rgba(0, 0, 0, 0.25); |
178 } | 178 } |
OLD | NEW |