OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> | 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 width: 100%; | 223 width: 100%; |
224 height: 100%; | 224 height: 100%; |
225 position: absolute; | 225 position: absolute; |
226 } | 226 } |
227 | 227 |
228 .network-film-strip { | 228 .network-film-strip { |
229 border-bottom: solid 1px #cdcdcd; | 229 border-bottom: solid 1px #cdcdcd; |
230 flex: none !important; | 230 flex: none !important; |
231 } | 231 } |
232 | 232 |
233 .blocked-urls-bar { | 233 .network-blocked-urls { |
234 background-color: #f3f3f3; | 234 border-top: 1px solid #dadada; |
235 flex: none; | 235 flex: 104px 0 0; |
236 border-bottom: 1px solid #dadada; | 236 } |
237 flex-wrap: wrap; | |
238 max-height: 127px; | |
239 overflow-y: auto; | |
240 overflow-x: hidden; | |
241 } | |
242 | |
243 .blocked-urls-bar .blocked-url-container { | |
244 display: inline-flex; | |
245 padding: 2px; | |
246 margin: 2px; | |
247 background-color: #dadada; | |
248 } | |
249 | |
250 .blocked-urls-bar .blocked-url-text { | |
251 max-width: 140px; | |
252 margin-right: 5px; | |
253 overflow: hidden; | |
254 flex: none; | |
255 text-overflow: ellipsis; | |
256 white-space: nowrap; | |
257 } | |
258 | |
259 .blocked-urls-bar .blocked-urls-empty { | |
260 text-overflow: ellipsis; | |
261 white-space: nowrap; | |
262 overflow: hidden; | |
263 height: 24px; | |
264 display: flex; | |
265 align-items: center; | |
266 padding: 5px; | |
267 } | |
OLD | NEW |