Added allow to text warning flag on messages list IO-235

This commit is contained in:
Patrick Fic
2020-12-16 16:42:35 -08:00
parent 9028e0b631
commit b256771e8c
10 changed files with 91 additions and 50 deletions

View File

@@ -79,3 +79,43 @@
.ant-select {
width: 100%;
}
.production-alert {
animation: alertBlinker 1s linear infinite;
color: blue;
}
@keyframes alertBlinker {
50% {
color: red;
opacity: 100;
//opacity: 0;
}
}
.blue {
color: blue;
}
.production-completion-1 {
animation: production-completion-1-blinker 5s linear infinite;
}
@keyframes production-completion-1-blinker {
50% {
background: rgba(207, 12, 12, 0.555);
}
}
.react-resizable {
position: relative;
background-clip: padding-box;
}
.react-resizable-handle {
position: absolute;
width: 10px;
height: 100%;
bottom: 0;
right: -5px;
cursor: col-resize;
z-index: 1;
}