code-editor-container.less
Home
/
codeeditor-app /
elements /
code-editor-container /
code-editor-container.less
@import url('../../../shared/theme.less');
code-editor-container {
min-height: 100%;
max-height: 100%;
}
code-editor-container.first-visible .code-editor-header {
border-top-color: transparent;
}
code-editor-container.last-visible {
min-height: auto !important;
max-height: none !important;
min-width: auto !important;
max-width: none !important;
}
code-editor-container.last-visible > resize-handle {
display: none !important;
}
.code-editor-header {
padding: 10px 18px;
background: lighten(@editor-bg-white, 1%);
color: @primary-text-color-white;
font-size: 13px;
border-style: solid none;
border-color: @primary-bg-color-white;
border-width: 1px;
}
.code-editor-content {
}
@media (prefers-color-scheme: dark) {
.code-editor-header {
background: lighten(@editor-bg-dark, 1%);
color: @primary-text-color-dark;
border-color: @primary-bg-color-dark;
}
}