Skip to content

Commit

Permalink
Merge pull request #182 from caffeinatedMike/master
Browse files Browse the repository at this point in the history
Fixed scrollbar issues
  • Loading branch information
nickjj committed Aug 18, 2022
2 parents d44ab40 + 9cdb04e commit ff01910
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/flask_debugtoolbar/static/css/toolbar.css
Expand Up @@ -28,6 +28,7 @@
bottom:0;
right:0;
opacity:0.9;
overflow-y: auto;
}

#flDebug #flDebugToolbar small {
Expand Down Expand Up @@ -201,11 +202,11 @@
padding:0 0 0 20px;
}

#flDebug .flDebugPanelContent .scroll {
#flDebug .flDebugPanelContent .flDebugScroll {
height:100%;
overflow:auto;
display:block;
padding:0 10px 0 0;
padding:0 10px 10px 0;
}

#flDebug h3 {
Expand Down
Expand Up @@ -3,7 +3,7 @@
<h3>SQL Details</h3>
</div>
<div class="flDebugPanelContent">
<div class="scroll">
<div class="flDebugScroll">
<dl>
<dt>Executed SQL</dt>
<dd>{{ sql }}</dd>
Expand Down

0 comments on commit ff01910

Please sign in to comment.