1
0
mirror of https://github.com/flarum/core.git synced 2025-07-31 05:30:38 +02:00

Keep post actions visible when controls dropdown is open

Also show without hover on touch devices
This commit is contained in:
Toby Zerner
2015-09-22 17:05:14 +09:30
parent 8ab0686666
commit d610ea663f
4 changed files with 31 additions and 6 deletions

View File

@@ -259,7 +259,9 @@
}
@media @tablet-up {
opacity: 0;
.no-touch & {
opacity: 0;
}
}
> ul {
@@ -270,9 +272,12 @@
vertical-align: top;
}
}
.Post:hover & {
.Post:hover &, &.open {
opacity: 1;
}
&.open {
z-index: 2;
}
}
.PostPreview {