mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-22 16:48:23 +01:00
d8edea9fbc
forgot to update .editorconfig to include scss...
71 lines
1.6 KiB
SCSS
71 lines
1.6 KiB
SCSS
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
.workspace {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
flex-grow: 1;
|
|
overflow: hidden;
|
|
|
|
.workspace-tabcontent {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-grow: 1;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.workspace-widgets {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 50px;
|
|
overflow: hidden;
|
|
padding-top: 4px;
|
|
padding-bottom: 4px;
|
|
margin-left: -4px;
|
|
user-select: none;
|
|
|
|
.widget {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
padding: 8px 2px 8px 0px;
|
|
color: var(--secondary-text-color);
|
|
font-size: 20px;
|
|
overflow: hidden;
|
|
border-radius: 4px;
|
|
|
|
&:hover:not(.no-hover) {
|
|
background-color: var(--highlight-bg-color);
|
|
cursor: pointer;
|
|
color: white !important;
|
|
}
|
|
|
|
.widget-icon {
|
|
}
|
|
|
|
.widget-label {
|
|
font-size: 10px;
|
|
margin-top: 3px;
|
|
width: 100%;
|
|
padding: 0 2px;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
.widget-divider {
|
|
margin-right: 2px;
|
|
height: 2px;
|
|
background-color: var(--border-color);
|
|
}
|
|
|
|
.widget-spacer {
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
}
|