[Web] Minor style fixes, Pushover UI fixes

This commit is contained in:
andryyy
2020-04-17 16:56:28 +02:00
parent 35d3586950
commit 11a9315f0d
9 changed files with 117 additions and 85 deletions

View File

@@ -47,3 +47,14 @@ table tbody tr {
table tbody tr td input[type="checkbox"] {
cursor: pointer;
}
.rotate {
-moz-transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
transition: all 0.3s linear;
}
.rotate.animation {
-ms-transform:rotateX(180deg);
-moz-transform:rotateX(180deg);
-webkit-transform:rotateX(180deg);
transform:rotateX(180deg);
}