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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/xhrBreakpointsSidebarPane.css

Issue 2900843002: DevTools: remove BreakpointsSidebarPaneBase and breakpointsList.css (Closed)
Patch Set: rebase again Created 3 years, 7 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 | « third_party/WebKit/Source/devtools/front_end/sources/module.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/sources/xhrBreakpointsSidebarPane.css
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/xhrBreakpointsSidebarPane.css b/third_party/WebKit/Source/devtools/front_end/sources/xhrBreakpointsSidebarPane.css
new file mode 100644
index 0000000000000000000000000000000000000000..317bf57f146b0e6f43dc8611bc72b72385e64353
--- /dev/null
+++ b/third_party/WebKit/Source/devtools/front_end/sources/xhrBreakpointsSidebarPane.css
@@ -0,0 +1,52 @@
+/*
+ * Copyright 2017 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.
+ */
+
+.breakpoint-list {
+ padding-bottom: 3px;
+}
+
+.breakpoint-list .editing.being-edited {
+ overflow: hidden;
+ white-space: nowrap;
+}
+
+.breakpoint-condition {
+ display: block;
+ margin-top: 4px;
+ margin-bottom: 4px;
+ margin-left: 23px;
+ margin-right: 8px;
+}
+
+.breakpoint-condition-input {
+ display: block;
+ margin-left: 0;
+ margin-right: 0;
+ outline: none !important;
+ border: 1px solid rgb(66%, 66%, 66%);
+}
+
+.breakpoint-entry {
+ white-space: nowrap;
+ padding: 2px 0;
+}
+
+.breakpoint-list .breakpoint-entry:hover {
+ background-color: #eee;
+}
+
+.breakpoint-entry [is=dt-checkbox] {
+ max-width: 100%;
+}
+
+.breakpoint-hit {
+ background-color: rgb(255, 255, 194);
+}
+
+:host-context(.-theme-with-dark-background) .breakpoint-hit {
+ background-color: hsl(46, 98%, 22%);
+ color: #ccc;
+}
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sources/module.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698