set z-index on output_wrapper

avoids scrolled output overlaying input in some strange circumstances
Min RK 11 years ago
parent f4e25f5d77
commit 63f120db45

@ -1,7 +1,9 @@
div.output_wrapper {
/* this position must be relative to enable descendents to be absolute within it */
position: relative;
.vbox()
.vbox();
// avoid scrolled output overlaying input in some strange circumstances
z-index: 1;
}
/* class for the output area when it should be height-limited */

@ -747,6 +747,7 @@ div.output_wrapper {
display: flex;
flex-direction: column;
align-items: stretch;
z-index: 1;
}
/* class for the output area when it should be height-limited */
div.output_scroll {

@ -9536,6 +9536,7 @@ div.output_wrapper {
display: flex;
flex-direction: column;
align-items: stretch;
z-index: 1;
}
/* class for the output area when it should be height-limited */
div.output_scroll {

Loading…
Cancel
Save