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

Unified Diff: third_party/WebKit/Source/devtools/front_end/console/consoleView.css

Issue 2623143002: DevTools: insert console message decorations in order
Patch Set: ac Created 3 years, 11 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/console/consoleView.css
diff --git a/third_party/WebKit/Source/devtools/front_end/console/consoleView.css b/third_party/WebKit/Source/devtools/front_end/console/consoleView.css
index 361c3e3ab580bd1d5b1aaf6083382edd029db190..710663ac1b0eb7ca73a88331160d9dde1f49819f 100644
--- a/third_party/WebKit/Source/devtools/front_end/console/consoleView.css
+++ b/third_party/WebKit/Source/devtools/front_end/console/consoleView.css
@@ -95,11 +95,32 @@
flex: auto;
}
-.console-timestamp {
+.console-timestamp, .console-context-label {
color: gray;
-webkit-user-select: none;
- flex-grow: 0;
- margin-right: 5px;
+ flex: none;
+}
+
+.console-timestamp {
+ margin-right: 15px;
+ max-width: 80px;
+ overflow: hidden;
+}
+
+.console-timestamp-visible {
+ white-space: nowrap;
+ float: right;
+}
+
+.console-context-label:not(:empty) {
+ margin-right: 15px;
+ width: 80px;
+}
+
+.console-context-label {
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ overflow: hidden;
}
.message-level-icon, .command-result-icon {

Powered by Google App Engine
This is Rietveld 408576698