workflow: reset feature/search-page-improvement branch

This commit is contained in:
Roberto Tonino
2020-11-02 12:25:08 +01:00
parent 66b1ebe244
commit 7f0d621f62
44 changed files with 3265 additions and 1592 deletions

View File

@@ -13,7 +13,7 @@
<span
v-if="hasFails"
class="inline-flex"
class="flex items-center"
:class="{ clickable: finishedWithFails }"
style="justify-content: center"
@click="finishedWithFails ? $emit('show-errors', queueItem) : null"
@@ -181,6 +181,36 @@
}
}
}
@keyframes indeterminate {
0% {
left: -35%;
right: 100%;
}
60% {
left: 100%;
right: -90%;
}
100% {
left: 100%;
right: -90%;
}
}
@keyframes indeterminate-short {
0% {
left: -200%;
right: 100%;
}
60% {
left: 107%;
right: -8%;
}
100% {
left: 107%;
right: -8%;
}
}
</style>
<script>