1
0
mirror of https://github.com/flarum/core.git synced 2025-07-21 16:51:34 +02:00

Fade out post when it is being edited

This commit is contained in:
Toby Zerner
2015-05-18 14:24:18 +09:30
parent c9cb6170f5
commit 0ef4469849

View File

@@ -148,8 +148,14 @@
.post {
padding-bottom: 1px;
transition: 0.2s box-shadow;
transition: 0.2s box-shadow, top 0.2s, opacity 0.2s;
position: relative;
top: 0;
&.editing {
top: 5px;
opacity: 0.2;
}
& .contextual-controls {
float: right;