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

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

Issue 2623143002: DevTools: insert console message decorations in order
Patch Set: a 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 46d2bc25ced6dcd84418164c5fc2f098215a0485..e9d16411043aef9488538b9eba8200746ee4309f 100644
--- a/third_party/WebKit/Source/devtools/front_end/console/consoleView.css
+++ b/third_party/WebKit/Source/devtools/front_end/console/consoleView.css
@@ -91,15 +91,40 @@
display: flex;
}
+.show-context-icons .console-message,
+.show-context-icons .console-user-command {
+ margin-left: 44px;
+}
+
+.show-context-icons .console-message.repeated-message {
+ margin-left: 20px;
+}
+
.console-message > * {
flex: auto;
}
.console-timestamp {
color: gray;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+
+.console-context-icon {
+ position: absolute;
+ top: 1px;
+ left: -35px;
+}
+
+.repeated-message .console-context-icon {
+ left: -15px;
+}
+
+.console-timestamp, .console-context-icon {
+ margin-right: 5px;
-webkit-user-select: none;
flex: none;
- margin-right: 5px;
}
.message-level-icon, .command-result-icon {

Powered by Google App Engine
This is Rietveld 408576698