mirror of
https://github.com/YunoHost-Apps/pixelfed_ynh.git
synced 2024-09-03 20:06:04 +02:00
Hide webkit scrollbar only on touch-only devices
on nontouch or hybrid devices, the scrollbar is needed to navigate filters. Fix #1285
This commit is contained in:
parent
343683e4cc
commit
8541018cff
1 changed files with 6 additions and 4 deletions
|
@ -214,9 +214,11 @@
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
.media-drawer-filters::-webkit-scrollbar {
|
@media (hover: none) and (pointer: coarse) {
|
||||||
display: none;
|
.media-drawer-filters::-webkit-scrollbar {
|
||||||
}
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
export default {
|
export default {
|
||||||
|
@ -489,4 +491,4 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Add table
Reference in a new issue