From: Jo-Philipp Wich Date: Sat, 20 Oct 2018 14:30:24 +0000 (+0200) Subject: luci-theme-bootstrap: add flash animation X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=bd614de514a7dd43a25f432dc1a9f9f66e7eec2b;p=oweals%2Fluci.git luci-theme-bootstrap: add flash animation Signed-off-by: Jo-Philipp Wich --- diff --git a/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css b/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css index 690fd2ad4..67e19e7d0 100644 --- a/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css +++ b/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css @@ -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; +}