mirror of
https://github.com/getredash/redash.git
synced 2026-03-22 01:00:14 -04:00
37 lines
593 B
Plaintext
37 lines
593 B
Plaintext
.editor__wrapper {
|
|
padding: 15px;
|
|
margin-bottom: 10px;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: nowrap;
|
|
|
|
.editor__container {
|
|
margin-bottom: 0;
|
|
flex: 1 1 auto;
|
|
position: relative;
|
|
|
|
.ace_editor {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
&[data-executing] {
|
|
.ace_marker-layer {
|
|
.ace_selection {
|
|
background-color: rgb(255, 210, 181);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.query-editor-controls {
|
|
flex: 0 0 auto;
|
|
margin-top: 10px;
|
|
}
|
|
}
|