diff options
author | Jo-Philipp Wich <jo@mein.io> | 2018-10-20 16:30:24 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2018-11-05 11:01:45 +0100 |
commit | bd614de514a7dd43a25f432dc1a9f9f66e7eec2b (patch) | |
tree | d5bd5b7f567e5f0247310b3ed47125e8cb7ce3e1 /themes/luci-theme-bootstrap | |
parent | c2b570998811accb7a880fe42745ee0278f323e6 (diff) |
luci-theme-bootstrap: add flash animation
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'themes/luci-theme-bootstrap')
-rw-r--r-- | themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css | 10 |
1 files changed, 10 insertions, 0 deletions
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; +} |