54 lines
837 B
CSS
54 lines
837 B
CSS
|
|
.cm-editor {
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
dialog#command-dialog {
|
||
|
|
width: 450px;
|
||
|
|
height: 400px;
|
||
|
|
max-height: 80%;
|
||
|
|
max-width: 50%;
|
||
|
|
|
||
|
|
position: absolute;
|
||
|
|
top: 50%;
|
||
|
|
left: 50%;
|
||
|
|
transform: translate(-50%, -50%);
|
||
|
|
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
dialog#command-dialog .dialog-body {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
dialog#command-dialog .command-input {
|
||
|
|
background-color: #EEEEEE;
|
||
|
|
padding: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
dialog#command-dialog input {
|
||
|
|
width: 100%;
|
||
|
|
border: none;
|
||
|
|
text-decoration: none;
|
||
|
|
outline: none;
|
||
|
|
font-size: 1.5em;
|
||
|
|
background-color: transparent;
|
||
|
|
}
|
||
|
|
|
||
|
|
dialog#command-dialog select {
|
||
|
|
flex-grow: 1;
|
||
|
|
flex-shrink: 1;
|
||
|
|
border: none;
|
||
|
|
|
||
|
|
appearance: none;
|
||
|
|
font-size: 1.5em;
|
||
|
|
}
|
||
|
|
|
||
|
|
option {
|
||
|
|
background-color: #FFFFFF;
|
||
|
|
}
|
||
|
|
|
||
|
|
option .option-label {
|
||
|
|
padding: 10px;
|
||
|
|
}
|