[web] Override resize handle background colour in editor redesign GitOrigin-RevId: b429dc5d0f0369c7bd54f29b5e499411ac9398d6
38 lines
582 B
SCSS
38 lines
582 B
SCSS
.ide-redesign-body {
|
|
display: flex;
|
|
flex-grow: 1;
|
|
background-color: var(--bg-light-secondary);
|
|
overflow-y: hidden;
|
|
z-index: 0;
|
|
}
|
|
|
|
.ide-redesign-main {
|
|
--editor-resizer-bg-color: var(--bg-light-tertiary);
|
|
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.ide-skeleton-block {
|
|
border: 1px solid grey;
|
|
background-color: white;
|
|
}
|
|
|
|
.ide-redesign-full-height {
|
|
height: 100%;
|
|
}
|
|
|
|
.ide-redesign-pdf-container {
|
|
position: relative;
|
|
}
|
|
|
|
.ide-redesign-editor-container {
|
|
position: relative;
|
|
height: 100%;
|
|
}
|
|
|
|
.ide-redesign-editor-content {
|
|
height: 100%;
|
|
}
|