2025-01-15 12:42:01 +00:00
|
|
|
@use '../styles/theme' as theme;
|
|
|
|
|
|
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
|
|
|
|
2025-01-15 12:42:01 +00:00
|
|
|
@include theme.dark-theme {
|
2021-02-25 10:34:39 +00:00
|
|
|
.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
|
|
|
|
2025-01-15 12:42:01 +00:00
|
|
|
@include theme.dark-theme {
|
2021-05-11 00:48:56 +00:00
|
|
|
.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
|
|
|
|
2024-09-18 05:02:30 +00:00
|
|
|
.ng-dev-mode-causes {
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 1.2em;
|
|
|
|
|
padding: 1rem;
|
|
|
|
|
width: 80%;
|
|
|
|
|
margin: auto;
|
|
|
|
|
border: 1px solid;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
|
|
|
|
|
code {
|
|
|
|
|
padding: 2px;
|
|
|
|
|
color: lightgreen;
|
|
|
|
|
background: #3e3e3e;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
}
|