55 lines
1.0 KiB
CSS
55 lines
1.0 KiB
CSS
/* Editor Container */
|
|
.editor-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
background-color: #1e1e1e;
|
|
}
|
|
|
|
/* Editor Header */
|
|
.editor-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 8px 12px;
|
|
background-color: #252526;
|
|
border-bottom: 1px solid #3e3e42;
|
|
color: #cccccc;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.editor-header-left {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
flex: 1;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.editor-header-left span {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.editor-actions {
|
|
display: flex;
|
|
gap: 4px;
|
|
align-items: center;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* Editor Content */
|
|
.editor-content {
|
|
flex: 1 1 auto;
|
|
background-color: #1e1e1e;
|
|
min-height: 0;
|
|
position: relative;
|
|
}
|
|
|