| Index: Source/devtools/front_end/network/blockedURLsPane.css
|
| diff --git a/Source/devtools/front_end/network/blockedURLsPane.css b/Source/devtools/front_end/network/blockedURLsPane.css
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..043571c16ba33e4adcd9288335062d9961e11ced
|
| --- /dev/null
|
| +++ b/Source/devtools/front_end/network/blockedURLsPane.css
|
| @@ -0,0 +1,71 @@
|
| +/*
|
| + * Copyright (c) 2015 The Chromium Authors. All rights reserved.
|
| + * Use of this source code is governed by a BSD-style license that can be
|
| + * found in the LICENSE file.
|
| + */
|
| +
|
| +.toolbar {
|
| + border-bottom: 1px solid #dadada;
|
| +}
|
| +
|
| +.no-blocked-urls, .blocked-urls-list {
|
| + font-size: 11px;
|
| + overflow-x: hidden;
|
| + overflow-y: auto;
|
| +}
|
| +
|
| +.no-blocked-urls {
|
| + display: flex;
|
| + justify-content: center;
|
| + padding: 3px;
|
| +}
|
| +
|
| +.blocked-url {
|
| + flex: none;
|
| + display: flex;
|
| + align-items: center;
|
| + padding: 3px 10px 3px 9px;
|
| +}
|
| +
|
| +.blocked-url:hover {
|
| + background-color: #dadada;
|
| +}
|
| +
|
| +.blocked-url .blocked-count {
|
| + flex: 30px 0 0;
|
| + font-size: smaller !important;
|
| + padding-right: 5px;
|
| +}
|
| +
|
| +.blocked-url-text {
|
| + white-space: nowrap;
|
| + text-overflow: ellipsis;
|
| + overflow: hidden;
|
| + flex: auto;
|
| +}
|
| +
|
| +.blocked-url .remove-button {
|
| + width: 13px;
|
| + height: 13px;
|
| + background-image: url(Images/toolbarButtonGlyphs.png);
|
| + background-size: 352px 168px;
|
| + background-position: -175px -96px;
|
| + visibility: hidden;
|
| + flex: none;
|
| + opacity: 0.7;
|
| + cursor: default;
|
| +}
|
| +
|
| +@media (-webkit-min-device-pixel-ratio: 1.5) {
|
| +.blocked-url .remove-button {
|
| + background-image: url(Images/toolbarButtonGlyphs_2x.png);
|
| +}
|
| +} /* media */
|
| +
|
| +.blocked-url:hover .remove-button {
|
| + visibility: visible;
|
| +}
|
| +
|
| +.blocked-url .remove-button:hover {
|
| + opacity: 1.0;
|
| +}
|
|
|