2024-05-16 09:29:58 +02:00
|
|
|
// 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;
|
2024-06-20 22:03:50 +02:00
|
|
|
width: 50px;
|
2024-05-16 09:29:58 +02:00
|
|
|
overflow: hidden;
|
2024-08-09 20:49:10 +02:00
|
|
|
padding-top: 4px;
|
2024-05-16 09:29:58 +02:00
|
|
|
|
|
|
|
.widget {
|
|
|
|
display: flex;
|
2024-06-20 22:03:50 +02:00
|
|
|
flex-direction: column;
|
2024-05-16 09:29:58 +02:00
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
2024-08-09 20:49:10 +02:00
|
|
|
padding: 8px 2px 8px 2px;
|
2024-05-16 09:29:58 +02:00
|
|
|
color: var(--secondary-text-color);
|
|
|
|
font-size: 20px;
|
2024-06-20 22:03:50 +02:00
|
|
|
overflow: hidden;
|
2024-08-09 20:49:10 +02:00
|
|
|
border-radius: 4px;
|
2024-06-20 22:03:50 +02:00
|
|
|
|
2024-05-16 09:29:58 +02:00
|
|
|
&:hover:not(.no-hover) {
|
|
|
|
background-color: var(--highlight-bg-color);
|
|
|
|
cursor: pointer;
|
2024-06-20 22:03:50 +02:00
|
|
|
color: white !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget-icon {
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget-label {
|
|
|
|
font-size: 10px;
|
|
|
|
margin-top: 3px;
|
2024-05-16 09:29:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|