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

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

Issue 2445293003: DevTools: fix wrapping of links in console view (Closed)
Patch Set: rebased 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 d2cab2be069b546241edc07ba192de78e99383b0..249f0b66f60335a3aa02f3173979b17fa919bb4e 100644
--- a/third_party/WebKit/Source/devtools/front_end/console/consoleView.css
+++ b/third_party/WebKit/Source/devtools/front_end/console/consoleView.css
@@ -352,6 +352,7 @@
#console-messages a {
color: rgb(33%, 33%, 33%);
cursor: pointer;
+ word-break: break-all;
}
#console-messages .link:hover,
@@ -410,7 +411,7 @@
float: right;
text-align: right;
max-width: 100%;
- margin-left: 4px;
+ margin-left: 20px;
}
.console-message-nowrap-below,
@@ -464,13 +465,14 @@
flex: none;
}
-.console-message-stack-trace-triangle {
+.console-message-stack-trace-toggle .console-message-body::before {
+ content: " ";
-webkit-user-select: none;
-webkit-mask-image: url(Images/toolbarButtonGlyphs.png);
-webkit-mask-size: 352px 168px;
color: transparent;
text-shadow: none;
- margin-right: 0;
+ margin-right: 6px;
height: 12px;
background-color: rgb(110, 110, 110);
width: 12px;
@@ -479,11 +481,15 @@
}
@media (-webkit-min-device-pixel-ratio: 1.1) {
-.console-message-stack-trace-triangle {
+.console-message-stack-trace-toggle .console-message-body::before {
-webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png);
}
} /* media */
-.console-message-stack-trace-toggle.expanded .console-message-stack-trace-triangle {
+.console-message-stack-trace-toggle.expanded .console-message-body::before {
-webkit-mask-position: -20px -96px;
}
+
+.console-message-body {
+ word-wrap: normal;
lushnikov 2016/11/03 00:47:30 can we use the .console-message for this? (do we r
+}
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698