Bug 1260839 - Move -moz-user-select: text up to #output-wrapper so selection can be cancelled by clicking below messages;r=vporof draft
authorBrian Grinstead <bgrinstead@mozilla.com>
Wed, 30 Mar 2016 11:44:10 -0700
changeset 346009 1a3db1344174560037298beecae1293a8b8e30c9
parent 346007 e14db462d31d566570e3bece66d5380f7b1ad400
child 517300 fe3d094ce32f5360bedbd48cd222016b238f58d2
push id14211
push userbgrinstead@mozilla.com
push dateWed, 30 Mar 2016 18:44:17 +0000
reviewersvporof
bugs1260839
milestone48.0a1
Bug 1260839 - Move -moz-user-select: text up to #output-wrapper so selection can be cancelled by clicking below messages;r=vporof MozReview-Commit-ID: 6KyHSRclSMX
devtools/client/themes/webconsole.css
--- a/devtools/client/themes/webconsole.css
+++ b/devtools/client/themes/webconsole.css
@@ -123,23 +123,21 @@ a {
 
 .message-flex-body > .message-location {
   margin-top: 0;
 }
 
 #output-wrapper {
   direction: ltr;
   overflow: auto;
+  -moz-user-select: text;
 }
 
-#output-container {
-  /* This width is set to a hardcoded px in webconsole.js since it's way
-     faster than using 100% with -moz-box-flex (see Bug 1237368) */
-  -moz-user-select: text;
-}
+/* The width on #output-container is set to a hardcoded px in webconsole.js
+   since it's way faster than using 100% with -moz-box-flex (see Bug 1237368) */
 
 #output-container.hideTimestamps > .message {
   -moz-padding-start: 0;
   -moz-margin-start: 7px;
   width: calc(100% - 7px);
 }
 
 #output-container.hideTimestamps > .message > .timestamp {