Merge pull request #366 from glaszig/feature/improved-service-status-indicator

improved service status display
This commit is contained in:
Bill Zimmerman
2019-08-08 20:55:04 +02:00
committed by GitHub
3 changed files with 40 additions and 13 deletions

29
dist/css/custom.css vendored
View File

@@ -49,6 +49,35 @@
min-height:500px;
}
.service-status-running,
.service-status-stopped {
background-color: #fff;
color: #333;
text-transform: uppercase;
line-height: inherit;
}
.service-status-running:before,
.service-status-stopped:before {
display: inline-block;
height: 16px;
width: 16px;
content: "\2022";
font-size: 3.5em;
color: green;
line-height: 16px;
vertical-align: bottom;
margin-right: 2px;
}
.service-status-stopped:before {
color: red;
animation: flash 1s linear infinite;
}
@keyframes flash {
50% {
opacity: 0;
}
}
.logoutput {
width:100%;
height:300px;