1
0
mirror of https://github.com/flarum/core.git synced 2025-08-06 00:17:31 +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 d89e62b8d8
commit a184577877
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 {