portal agent: add activity indicator on search cell (#32432)

This commit is contained in:
Frédéric Péters 2019-04-18 08:25:06 +02:00
parent 813b2e4922
commit 70d05e85ad
1 changed files with 15 additions and 0 deletions

View File

@ -104,12 +104,27 @@ div.cell div.loading.error-loading::after {
div.searchcell {
form {
position: relative;
display: flex;
flex-wrap: wrap;
input {
flex: 1 0 auto;
margin-right: 1rem;
}
&::after {
content: "";
display: block;
position: absolute;
bottom: 0;
left: 0;
height: 3px;
background: $primary-color;
width: 0%;
}
&.searching::after {
-webkit-animation: cell-loading-pulse 0.5s linear infinite alternate;
animation: cell-loading-pulse 0.5s linear infinite alternate;
}
}
div.links-list li {
&::before {