luci-theme-bootstrap: add flash animation
authorJo-Philipp Wich <jo@mein.io>
Sat, 20 Oct 2018 14:30:24 +0000 (16:30 +0200)
committerJo-Philipp Wich <jo@mein.io>
Mon, 5 Nov 2018 10:01:45 +0000 (11:01 +0100)
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css

index 690fd2ad4246e9e7b1e0381a4c9487098d7cff87..67e19e7d0786bbd8b94c6ba5149bb5d9c75525ea 100644 (file)
@@ -2051,3 +2051,13 @@ html body.apply-overlay-active {
 [data-page="admin-network-dhcp"] [data-name="ip"] {
        width: 15%;
 }
+
+@keyframes flash {
+       0% { opacity: 1; }
+       50% { opacity: .5; }
+       100% { opacity: 1; }
+}
+
+.flash {
+       animation: flash .35s;
+}