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

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

Issue 2609653002: [DevTools] Migrate CallStackSidebarPane to UI.ListControl. (Closed)
Patch Set: Created 4 years 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/callStackSidebarPane.css
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/callStackSidebarPane.css b/third_party/WebKit/Source/devtools/front_end/sources/callStackSidebarPane.css
new file mode 100644
index 0000000000000000000000000000000000000000..3f447c55a053b3874b1a780b3c2e414e97593062
--- /dev/null
+++ b/third_party/WebKit/Source/devtools/front_end/sources/callStackSidebarPane.css
@@ -0,0 +1,76 @@
+/*
+ * 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.
+ */
+
+.blackboxed-message {
+ text-align: center;
+ font-style: italic;
+ padding: 4px;
+ color: #888;
+ background-color: #FFFFC2;
+}
+
+.call-frame-item {
+ padding: 3px 8px 3px 20px;
+ position: relative;
+ min-height: 18px;
+ line-height: 15px;
+ display: flex;
+ flex-wrap: wrap;
+}
+
+.call-frame-item:not(.async-header) {
+ border-top: 1px solid #efefef;
+}
+
+.call-frame-item:not(.async-header):hover {
+ background-color: #eee;
+}
+
+.async-header + .call-frame-item {
+ border-top: 0;
+}
+
+.call-frame-item-title,
+.call-frame-location {
+ text-overflow: ellipsis;
+ overflow: hidden;
+ white-space: nowrap;
+}
+
+.call-frame-location {
+ color: #888;
+ margin-left: auto;
+ padding: 0 10px 0 10px;
+}
+
+.async-header::before {
+ content: " ";
+ width: 100%;
+ border-top: 1px solid #d8d8d8;
+ margin-top: 8px;
+ position: absolute;
+ z-index: -1;
+ left: 0;
+}
+
+.async-header .call-frame-item-title {
+ font-weight: bold;
+ color: #999;
+ background-color: white;
+ margin-left: -5px;
+ padding: 0 5px;
+}
+
+.blackboxed-call-frame {
+ opacity: 0.6;
+ font-style: italic;
+}
+
+.selected-call-frame-icon {
+ position: absolute;
+ top: 5px;
+ left: 4px;
+}

Powered by Google App Engine
This is Rietveld 408576698