From 140b43188b4f6a0737d5177799a5051e2890d7d8 Mon Sep 17 00:00:00 2001 From: Jason McBrayer Date: Mon, 3 Sep 2018 12:25:38 -0400 Subject: [PATCH] Add indicator to default dark theme --- brutaldon/static/css/brutaldon-dark.css | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/brutaldon/static/css/brutaldon-dark.css b/brutaldon/static/css/brutaldon-dark.css index 9377355..aeee5fd 100644 --- a/brutaldon/static/css/brutaldon-dark.css +++ b/brutaldon/static/css/brutaldon-dark.css @@ -132,3 +132,21 @@ emoji-link border-top-right-radius: 0; height: 38px; } + +#page-load-indicator +{ + width: 100%; + height: 2px; + background-color: #4CC; + opacity: 0.8; + position: fixed; + top: 0; + left: 0; + z-index: 666; + transition: all 500ms; +} + +#page-load-indicator.ic-use-transition +{ + width:0; +}