[playground] fix overflow in safari (#4406)

* [playground] fix overflow in safari

* options panel will not outgrow editors panel

* fix overflow in safari 10.1

* fix odd code mirror gutter placement during overflow
master
Johann Hubert Sonntagbauer 2018-05-01 14:41:25 +02:00 committed by Lucas Duailibe
parent 1e69119354
commit 3a99fe5d65
1 changed files with 5 additions and 1 deletions

View File

@ -145,6 +145,10 @@ pre.CodeMirror-placeholder {
color: #888888;
}
.editors .CodeMirror-scroll {
position: static;
}
.bottom-bar {
position: relative;
}
@ -180,7 +184,7 @@ pre.CodeMirror-placeholder {
display: none;
box-sizing: border-box;
width: 225px;
height: 100%;
overflow-y: auto;
border-bottom: 1px solid #ddd;
border-right: 1px solid #ddd;
flex: 0 1 auto;