mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-26 18:48:35 +02:00
24 lines
458 B
CSS
24 lines
458 B
CSS
.iframe-wrapper, .cm-editor {
|
|
width: 100%;
|
|
height: 30rem;
|
|
border-radius: 0.5rem;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.cm-editor.cm-focused {
|
|
outline: 0;
|
|
box-shadow: 0 0 0 2pt rgba(180, 180, 180, 0.1);
|
|
}
|
|
|
|
.cm-editor .cm-cursor {
|
|
border-left: 2px solid red;
|
|
}
|
|
|
|
.cm-editor .cm-selectionBackground {
|
|
background-color: rgba(180, 180, 180, 0.3);
|
|
}
|
|
|
|
.cm-editor.cm-focused .cm-selectionBackground {
|
|
background-color: rgba(180, 180, 180, 0.3);
|
|
}
|