Commit 4c8b0808 authored by Nicolas Chevobbe's avatar Nicolas Chevobbe
Browse files

Bug 1710306 - [devtools] Fix missing scrollbar in webconsole network message response tab. r=bomsy.

The selector that was used to not show toolbars in the console
input was also matching the codeMirror instance in the network
detail response tab. This is fixed by making the selector more
specific.

Differential Revision: https://phabricator.services.mozilla.com/D119192
parent 65d5ae50
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -478,7 +478,7 @@ html #webconsole-notificationbox {
  position: absolute;
}

.webconsole-app .CodeMirror-hscrollbar {
.jsterm-input-container .CodeMirror-hscrollbar {
  /* We never want to see the horizontal scrollbar */
  display: none !important;
}