2025-03-18 15:28:33 +00:00
|
|
|
@use '../../styles/typography';
|
|
|
|
|
|
2020-03-29 03:28:36 +00:00
|
|
|
:host {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2023-10-05 08:00:31 +00:00
|
|
|
display: block;
|
2020-03-29 03:28:36 +00:00
|
|
|
}
|
|
|
|
|
|
2021-02-13 10:22:04 +00:00
|
|
|
.tab-content {
|
2023-10-05 08:00:31 +00:00
|
|
|
position: relative;
|
2021-02-21 23:29:07 +00:00
|
|
|
height: calc(100% - 31px);
|
2020-03-29 03:28:36 +00:00
|
|
|
}
|
|
|
|
|
|
2025-06-24 14:21:27 +00:00
|
|
|
#main-toolbar {
|
2025-02-28 14:16:46 +00:00
|
|
|
border-bottom: 1px solid var(--color-separator);
|
2025-06-24 14:21:27 +00:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
width: 100%;
|
2025-06-19 11:23:15 +00:00
|
|
|
|
2025-06-24 14:21:27 +00:00
|
|
|
.tools {
|
2025-06-19 11:23:15 +00:00
|
|
|
display: flex;
|
2025-02-28 14:16:46 +00:00
|
|
|
|
2025-06-24 14:21:27 +00:00
|
|
|
button {
|
|
|
|
|
background: none;
|
|
|
|
|
border: none;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
opacity: 0.8;
|
|
|
|
|
color: var(--secondary-contrast);
|
2023-08-30 22:41:16 +00:00
|
|
|
|
2025-06-24 14:21:27 +00:00
|
|
|
&:active {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-08-30 22:41:16 +00:00
|
|
|
|
2025-06-24 14:21:27 +00:00
|
|
|
.inspector-active {
|
|
|
|
|
color: var(--blue-02) !important;
|
2023-08-30 22:41:16 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-29 03:28:36 +00:00
|
|
|
#app-angular-version {
|
2021-02-13 10:22:04 +00:00
|
|
|
align-self: center;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: 8px;
|
2020-08-24 20:19:37 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#version-number {
|
2025-02-28 14:16:46 +00:00
|
|
|
color: var(--blue-02);
|
2020-08-24 20:19:37 +00:00
|
|
|
cursor: text;
|
|
|
|
|
-moz-user-select: text;
|
|
|
|
|
-khtml-user-select: text;
|
|
|
|
|
-webkit-user-select: text;
|
|
|
|
|
-ms-user-select: text;
|
|
|
|
|
user-select: text;
|
2024-04-05 22:24:43 +00:00
|
|
|
|
|
|
|
|
&.unsupported-version {
|
2025-02-28 14:16:46 +00:00
|
|
|
color: var(--red-04);
|
2024-04-05 22:24:43 +00:00
|
|
|
}
|
2020-03-29 03:28:36 +00:00
|
|
|
}
|
|
|
|
|
|
2021-03-22 08:11:23 +00:00
|
|
|
mat-icon {
|
2023-08-30 22:41:16 +00:00
|
|
|
font-size: 20px;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
2020-03-29 03:28:36 +00:00
|
|
|
}
|
2020-05-07 03:21:32 +00:00
|
|
|
|
2023-08-30 22:41:16 +00:00
|
|
|
.mat-mdc-tab-link {
|
2025-03-18 15:28:33 +00:00
|
|
|
@extend %body-medium-01;
|
2021-02-13 10:22:04 +00:00
|
|
|
min-width: unset;
|
|
|
|
|
height: 30px;
|
|
|
|
|
padding: 0px 10px;
|
2021-03-23 21:18:01 +00:00
|
|
|
opacity: 1;
|
2020-05-07 03:21:32 +00:00
|
|
|
}
|
|
|
|
|
|
2021-02-13 10:22:04 +00:00
|
|
|
@media only screen and (max-width: 700px) {
|
2020-08-24 20:19:37 +00:00
|
|
|
#app-angular-version {
|
2020-08-25 11:23:39 +00:00
|
|
|
max-width: 135px;
|
2020-08-24 20:19:37 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (max-width: 420px) {
|
|
|
|
|
#app-angular-version {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2021-01-26 22:38:18 +00:00
|
|
|
}
|
2023-08-30 22:41:16 +00:00
|
|
|
|
|
|
|
|
.mat-mdc-tab-header {
|
|
|
|
|
--mdc-secondary-navigation-tab-container-height: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mat-mdc-menu-item.mdc-list-item {
|
|
|
|
|
::ng-deep {
|
|
|
|
|
label {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-03-05 03:55:01 +00:00
|
|
|
|
|
|
|
|
.frame-selector {
|
|
|
|
|
width: 100px;
|
2025-06-19 11:23:15 +00:00
|
|
|
margin: 0 0.5rem;
|
2024-03-05 03:55:01 +00:00
|
|
|
}
|