Merge pull request #8082 from minrk/output-z-index

set z-index on output_wrapper
pull/37/head
Matthias Bussonnier 11 years ago
commit 8c69b4c376

@ -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