Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(903)

Unified Diff: Source/devtools/front_end/network/blockedURLsPane.css

Issue 1311693004: [DevTools] UI for blocked URLs. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/devtools/front_end/network/NetworkPanel.js ('k') | Source/devtools/front_end/network/module.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
+}
« no previous file with comments | « Source/devtools/front_end/network/NetworkPanel.js ('k') | Source/devtools/front_end/network/module.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698