mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-22 16:48:23 +01:00
51 lines
1.1 KiB
Plaintext
51 lines
1.1 KiB
Plaintext
// 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;
|
|
|
|
.widget {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
padding: 8px 2px 8px 0;
|
|
color: var(--secondary-text-color);
|
|
font-size: 20px;
|
|
overflow: hidden;
|
|
|
|
&: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;
|
|
}
|
|
}
|
|
}
|
|
}
|