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

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

Issue 2389883003: DevTools: hoist debugger paused reason to top (Closed)
Patch Set: re-add stray line Created 4 years, 2 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
Index: third_party/WebKit/Source/devtools/front_end/sources/debuggerPausedMessage.css
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/debuggerPausedMessage.css b/third_party/WebKit/Source/devtools/front_end/sources/debuggerPausedMessage.css
new file mode 100644
index 0000000000000000000000000000000000000000..026ea1de6ee4107b1f210051748fe02f7173f1d6
--- /dev/null
+++ b/third_party/WebKit/Source/devtools/front_end/sources/debuggerPausedMessage.css
@@ -0,0 +1,67 @@
+/*
+ * 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.
+ */
+
+.paused-container {
+ flex: none;
+}
+
+.paused-status {
+ padding: 6px;
+ pointer-events: none;
+ border-bottom: 1px solid transparent;
+ border-top: 1px solid rgb(189, 189, 189);
+ background-color: hsl(50, 100%, 95%);
+ color: rgb(107, 97, 48);
+}
+
+.-theme-with-dark-background .paused-status {
+ background-color: hsl(46, 98%, 22%);
+ color: #ccc;
+}
+
+.paused-status.error-reason {
+ background-color: hsl(0, 100%, 97%);
+ color: #6b3b3b;
+}
+
+.status-main {
+ font-weight: bold;
+ padding-left: 15px;
+ position: relative;
+}
+
+.status-sub:not(:empty) {
+ padding-left: 15px;
+ padding-top: 5px;
+ font-size: 11px;
lushnikov 2016/10/18 23:01:29 with .monospace, you won't need font-size as well!
luoe 2016/10/19 21:44:13 Done.
+ font-family: dejavu sans mono, monospace;
lushnikov 2016/10/18 23:01:29 use .monospace for this!
luoe 2016/10/19 21:44:13 Done.
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+
+.paused-status.error-reason .status-sub {
+ color: red;
+ line-height: 11px;
+ max-height: 27px;
+}
+
+.status-main::before {
+ background-position: -80px 0;
+ background-image: url(Images/smallIcons.png);
+ background-size: 190px 30px;
+ width: 10px;
+ height: 10px;
+ content: "";
+ -webkit-filter: hue-rotate(190deg);
+ position: absolute;
+ left: 0;
+ top: 1px;
+}
+
+.paused-status.error-reason .status-main::before {
+ background-position: -20px 0;
+ -webkit-filter: none;
+}

Powered by Google App Engine
This is Rietveld 408576698