client: implement a buggy scrollIntoView in queue view

This commit is contained in:
geoffrey45
2021-12-26 18:45:35 +03:00
parent 5884827c8b
commit 17f29a76ed
6 changed files with 81 additions and 23 deletions
+4 -4
View File
@@ -56,7 +56,7 @@ export default {
}
.f-container .f-item {
min-width: 14.4rem;
min-width: 13rem;
min-height: 5rem;
display: flex;
align-items: center;
@@ -85,10 +85,10 @@ export default {
.f-container .f-item:hover {
transition: all 0.2s ease;
background: #000000; /* fallback for old browsers */
background: #000000;
background: no-repeat 8%/100% url(../../assets/icons/folder.svg),
-webkit-linear-gradient(to bottom, #434343, #000000); /* Chrome 10-25, Safari 5.1-6 */
-webkit-linear-gradient(to bottom, #434343, #000000);
background: no-repeat 8%/10% url(../../assets/icons/folder.svg),
linear-gradient(to bottom, #434343, #000000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
linear-gradient(to bottom, #434343, #000000);
}
</style>