From bd614de514a7dd43a25f432dc1a9f9f66e7eec2b Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sat, 20 Oct 2018 16:30:24 +0200 Subject: [PATCH] luci-theme-bootstrap: add flash animation Signed-off-by: Jo-Philipp Wich --- .../htdocs/luci-static/bootstrap/cascade.css | 10 ++++++++++ 1 file changed, 10 insertions(+) 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; +} -- 2.25.1