2020-03-29 03:28:36 +00:00
|
|
|
@keyframes pulse {
|
|
|
|
|
0% {
|
|
|
|
|
box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
box-shadow: 0 0 0 35px rgba(0, 0, 0, 0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-25 10:34:39 +00:00
|
|
|
@keyframes darkmode-pulse {
|
|
|
|
|
0% {
|
|
|
|
|
box-shadow: 0 0 0 0px rgb(126, 40, 40);
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
box-shadow: 0 0 0 35px rgba(0, 0, 0, 0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-29 03:28:36 +00:00
|
|
|
:host {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-20 13:26:41 +00:00
|
|
|
.devtools-wrapper {
|
2020-01-27 18:40:18 +00:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
2020-02-20 13:26:41 +00:00
|
|
|
|
2021-02-25 10:34:39 +00:00
|
|
|
:host-context(.dark-theme) {
|
|
|
|
|
.devtools-wrapper {
|
2021-03-22 08:00:39 +00:00
|
|
|
background: #202124;
|
2021-02-25 10:34:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.initializing {
|
|
|
|
|
.loading {
|
|
|
|
|
animation: darkmode-pulse 1s infinite;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-27 18:40:18 +00:00
|
|
|
.noselect {
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
2020-02-04 15:34:34 +00:00
|
|
|
|
|
|
|
|
.initializing {
|
|
|
|
|
margin: auto;
|
|
|
|
|
width: 125px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2020-03-29 03:28:36 +00:00
|
|
|
.loading {
|
|
|
|
|
background: url('./images/angular.svg');
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
width: 125px;
|
|
|
|
|
height: 125px;
|
|
|
|
|
float: left;
|
|
|
|
|
text-align: center;
|
|
|
|
|
animation: pulse 1s infinite;
|
2020-02-04 15:34:34 +00:00
|
|
|
}
|
|
|
|
|
}
|
2020-02-20 13:26:41 +00:00
|
|
|
|
|
|
|
|
.text-message {
|
|
|
|
|
font-weight: 500;
|
2020-08-24 20:19:37 +00:00
|
|
|
font-size: 1.2em;
|
2020-02-20 13:26:41 +00:00
|
|
|
padding: 5px;
|
|
|
|
|
text-align: center;
|
2023-02-06 14:38:59 +00:00
|
|
|
cursor: help;
|
2020-04-16 20:32:12 +00:00
|
|
|
|
|
|
|
|
.info-icon {
|
|
|
|
|
display: inline-block;
|
2021-05-11 00:48:56 +00:00
|
|
|
font-size: 0.8em;
|
2020-04-16 20:32:12 +00:00
|
|
|
border-radius: 50%;
|
2021-05-11 00:48:56 +00:00
|
|
|
border: solid 2px rgb(17, 17, 17);
|
2020-04-16 20:32:12 +00:00
|
|
|
cursor: pointer;
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
2020-02-20 13:26:41 +00:00
|
|
|
}
|
2021-05-11 00:48:56 +00:00
|
|
|
|
|
|
|
|
:host-context(.dark-theme) {
|
|
|
|
|
.info-icon {
|
|
|
|
|
border: solid 2px #bcc5ce;
|
|
|
|
|
}
|
2021-05-23 17:56:38 +00:00
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: #bcc5ce;
|
|
|
|
|
}
|
2021-05-11 00:48:56 +00:00
|
|
|
}
|
2023-10-05 08:00:31 +00:00
|
|
|
|
|
|
|
|
:host {
|
|
|
|
|
::ng-deep {
|
|
|
|
|
.link {
|
|
|
|
|
stroke: #9b9b9b;
|
|
|
|
|
stroke-width: 3px;
|
|
|
|
|
fill: none;
|
|
|
|
|
|
|
|
|
|
&.highlighted {
|
|
|
|
|
stroke: #4da1ff;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.node {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
&.highlighted {
|
|
|
|
|
text {
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
circle {
|
|
|
|
|
stroke: #4da1ff;
|
|
|
|
|
fill: #fff;
|
|
|
|
|
stroke-width: 5px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.node-environment {
|
|
|
|
|
stroke: #f05057;
|
|
|
|
|
fill: #f9c2c5;
|
|
|
|
|
stroke-width: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
& .node-environment:hover,
|
|
|
|
|
& .node-environment.selected {
|
|
|
|
|
fill: #4da1ff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.node-imported-module {
|
|
|
|
|
stroke: #8838f7;
|
|
|
|
|
fill: #f9c2c5;
|
|
|
|
|
stroke-width: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
& .node-element {
|
|
|
|
|
stroke: #28ab2c;
|
|
|
|
|
fill: #a7d5a9;
|
|
|
|
|
stroke-width: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
& .node-element:hover,
|
|
|
|
|
& .node-element.selected {
|
|
|
|
|
fill: #28ab2c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
text {
|
|
|
|
|
fill: #000000;
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:host-context(.dark-theme) ::ng-deep {
|
|
|
|
|
.legend {
|
|
|
|
|
background: #2f2c2c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.link {
|
|
|
|
|
stroke: #bcc5ce;
|
|
|
|
|
fill: none;
|
|
|
|
|
|
|
|
|
|
&.highlighted {
|
|
|
|
|
stroke: #4da1ff;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.node {
|
|
|
|
|
&.highlighted {
|
|
|
|
|
circle {
|
|
|
|
|
stroke: #4da1ff;
|
|
|
|
|
fill: #fff;
|
|
|
|
|
stroke-width: 5px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.arrow {
|
|
|
|
|
fill: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
text {
|
|
|
|
|
fill: #bcc5ce;
|
|
|
|
|
}
|
|
|
|
|
}
|