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
|
|
|
.hidden {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-05 08:00:31 +00:00
|
|
|
ng-injector-tree.hidden {
|
|
|
|
|
display: block;
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
2020-06-02 16:13:30 +00:00
|
|
|
#nav-buttons {
|
|
|
|
|
display: flex;
|
2023-08-30 22:41:16 +00:00
|
|
|
|
|
|
|
|
button {
|
|
|
|
|
background: none;
|
|
|
|
|
border: none;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
opacity: 0.8;
|
|
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
|
opacity: 1
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:host-context(.dark-theme) {
|
|
|
|
|
#nav-buttons {
|
|
|
|
|
button {
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-03-29 03:28:36 +00:00
|
|
|
}
|
|
|
|
|
|
2021-04-13 18:25:49 +00:00
|
|
|
.inspector-active {
|
|
|
|
|
color: #1a73e8 !important;
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
font-size: 0.8em;
|
2020-03-29 03:28:36 +00:00
|
|
|
font-weight: bold;
|
2020-08-24 20:19:37 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#version-number {
|
2021-01-26 22:38:18 +00:00
|
|
|
color: #1b1aa5;
|
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;
|
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 {
|
2021-02-13 10:22:04 +00:00
|
|
|
min-width: unset;
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
padding: 0px 10px;
|
2021-03-23 21:18:01 +00:00
|
|
|
opacity: 1;
|
2021-04-21 16:20:30 +00:00
|
|
|
font-weight: 400;
|
2020-05-07 03:21:32 +00:00
|
|
|
}
|
|
|
|
|
|
2020-08-24 20:19:37 +00:00
|
|
|
:host-context(.dark-theme) {
|
|
|
|
|
#version-number {
|
2021-01-26 22:38:18 +00:00
|
|
|
color: #5caace;
|
2020-08-24 20:19:37 +00:00
|
|
|
}
|
2021-04-13 18:25:49 +00:00
|
|
|
|
|
|
|
|
.inspector-active {
|
|
|
|
|
color: #4688f1 !important;
|
|
|
|
|
}
|
2020-05-07 03:21:32 +00:00
|
|
|
}
|
2020-08-21 15:57:46 +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 {
|
|
|
|
|
background-color: #e2e2e2;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
color: #474747;
|
|
|
|
|
border: none;
|
|
|
|
|
margin: 4px 4px 2px 4px;
|
|
|
|
|
padding: 2px;
|
|
|
|
|
outline-offset: -2px;
|
|
|
|
|
width: 100px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:host-context(.dark-theme) {
|
|
|
|
|
.frame-selector {
|
|
|
|
|
background-color: #464646;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
}
|