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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/inlineBreakpoint.css

Issue 2500493003: [DevTools] make breakpoints better (Closed)
Patch Set: Created 4 years, 1 month 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
Index: third_party/WebKit/Source/devtools/front_end/ui/inlineBreakpoint.css
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/inlineBreakpoint.css b/third_party/WebKit/Source/devtools/front_end/ui/inlineBreakpoint.css
new file mode 100644
index 0000000000000000000000000000000000000000..fe7e676c7f1a29d870f8ba9f9fbb54a9e27868ed
--- /dev/null
+++ b/third_party/WebKit/Source/devtools/front_end/ui/inlineBreakpoint.css
@@ -0,0 +1,40 @@
+/*
+ * Copyright 2016 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.
+ */
+
+:host {
+ white-space: nowrap;
+}
+
+.inline-breakpoint {
+ position: relative;
+ margin-left: 1px;
+ margin-right: 2px;
+ width: 10px;
+ height: 10px;
+ top: 1px;
+ display: inline-block;
+ -webkit-user-select: none;
+ line-height: 10px;
+ -webkit-clip-path: polygon(0% 0%, 60% 0%, 100% 50%, 60% 100%, 0% 100%);
+ cursor: default;
+ border-color: #4073f4;
+ background-color: #698cfe;
+}
+
+.inline-condition-breakpoint {
+ background-color: #ef9d0d;
+ border-color: #a36c01;
+}
+
+:not(.inline-condition-breakpoint).breakpoint-disabled {
+ border-color: #4073f4;
+ background-color: #d1dafa;
+}
+
+.inline-condition-breakpoint.breakpoint-disabled {
+ border-color: #a36c01;
+ background-color: hsla(39, 87%, 90%, 1);
+}

Powered by Google App Engine
This is Rietveld 408576698