OLD | NEW |
1 html { | 1 html { |
2 height: 100%; | 2 height: 100%; |
3 } | 3 } |
4 | 4 |
5 body { | 5 body { |
6 cursor: default; | 6 cursor: default; |
7 position: relative; | 7 position: relative; |
8 height: 100%; | 8 height: 100%; |
9 width: 100%; | 9 width: 100%; |
10 overflow: hidden; | 10 overflow: hidden; |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 z-index: 500; | 173 z-index: 500; |
174 border-radius: 2px; | 174 border-radius: 2px; |
175 box-shadow: white 1px 0 0, white -1px 0 0, white 0 1px 0, white 0 -1px 0; | 175 box-shadow: white 1px 0 0, white -1px 0 0, white 0 1px 0, white 0 -1px 0; |
176 } | 176 } |
177 | 177 |
178 .overview-grid-window-resizer-right { | 178 .overview-grid-window-resizer-right { |
179 margin-left: -3px; | 179 margin-left: -3px; |
180 margin-right: -2px; | 180 margin-right: -2px; |
181 } | 181 } |
182 | 182 |
183 /* Network timing is shared between popover and network item view pane */ | |
184 | |
185 .network-timing-table td { | |
186 padding: 0; | |
187 } | |
188 | |
189 .network-timing-table td.caution { | |
190 font-weight: bold; | |
191 color: rgb(255, 128, 0); | |
192 padding: 2px 0; | |
193 } | |
194 | |
195 .network-timing-row { | |
196 position: relative; | |
197 height: 16px; | |
198 } | |
199 | |
200 .network-timing-bar { | |
201 position: absolute; | |
202 background-color: red; | |
203 border-left: 1px solid red; | |
204 opacity: 0.4; | |
205 top: 0; | |
206 bottom: 0; | |
207 } | |
208 | |
209 .network-timing-bar-title { | |
210 position: absolute; | |
211 color: #222; | |
212 top: 1px; | |
213 } | |
214 | |
215 .highlighted-search-result { | 183 .highlighted-search-result { |
216 border-radius: 1px; | 184 border-radius: 1px; |
217 padding: 1px; | 185 padding: 1px; |
218 margin: -1px; | 186 margin: -1px; |
219 background-color: rgba(255, 255, 0, 0.8); | 187 background-color: rgba(255, 255, 0, 0.8); |
220 } | 188 } |
221 | 189 |
222 .sidebar-separator { | 190 .sidebar-separator { |
223 background-color: rgb(230, 230, 230); | 191 background-color: rgb(230, 230, 230); |
224 padding: 0 5px; | 192 padding: 0 5px; |
(...skipping 15 matching lines...) Expand all Loading... |
240 } | 208 } |
241 | 209 |
242 .pie-chart-foreground { | 210 .pie-chart-foreground { |
243 position: absolute; | 211 position: absolute; |
244 width: 100%; | 212 width: 100%; |
245 height: 100%; | 213 height: 100%; |
246 text-align: center; | 214 text-align: center; |
247 z-index: 10; | 215 z-index: 10; |
248 top: 0; | 216 top: 0; |
249 } | 217 } |
OLD | NEW |