angular/devtools/projects/ng-devtools/src/lib/devtools.component.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

83 lines
1.3 KiB
SCSS
Raw Normal View History

@keyframes pulse {
0% {
box-shadow: 0 0 0 0px var(--dynamic-red-02);
}
100% {
box-shadow: 0 0 0 35px var(--dynamic-transparent-01);
}
}
:host {
width: 100%;
height: 100%;
display: block;
}
.devtools-wrapper {
2020-01-27 18:40:18 +00:00
width: 100%;
height: 100%;
display: block;
}
2020-01-27 18:40:18 +00:00
.noselect {
user-select: none;
}
.initializing {
margin: auto;
width: 125px;
height: 100%;
display: flex;
align-items: center;
.loading {
background: url('./images/angular.svg');
border-radius: 50%;
width: 125px;
height: 125px;
float: left;
text-align: center;
animation: pulse 1s infinite;
}
}
.text-message {
font-weight: 500;
font-size: 1.2em;
padding: 5px;
text-align: center;
cursor: help;
.info-icon {
display: inline-block;
font-size: 0.8em;
border-radius: 50%;
border: solid 2px var(--primary-contrast);
cursor: pointer;
width: 16px;
height: 16px;
font-weight: bold;
text-align: center;
}
}
.ng-dev-mode-causes {
font-weight: 500;
font-size: 1.2em;
padding: 1rem;
width: 80%;
margin: auto;
border: 1px solid var(--quinary-contrast);
border-radius: 16px;
code {
padding: 2px;
color: var(--dynamic-green-01);
background: var(--senary-contrast);
border-radius: 5px;
}
li {
margin-bottom: 1rem;
}
}