item status indicator

This commit is contained in:
Nazar Kanaev
2020-08-15 22:20:24 +01:00
parent ab04ef4f0c
commit 580744bfd7
2 changed files with 30 additions and 3 deletions

View File

@@ -124,6 +124,17 @@ select.form-control:not([multiple]):not([size]) {
vertical-align: top;
}
.icon-small {
width: .6rem;
height: .6rem;
display: inline-block;
}
.icon-small > svg , .icon-small > img {
width: .6rem;
height: .6rem;
}
.feed-icon {
width: 16px;
height: 16px;
@@ -485,3 +496,13 @@ a,
.theme-night .toolbar-search:focus {
background-color: #1a1a1a;
}
/* animation */
.indicator-enter-active, .indicator-leave-active {
transition: all .3s;
}
.indicator-enter, .indicator-leave-to {
width: 0;
opacity: 0;
margin: 0 !important;
}