diff options
author | Yanlan Shen <yanlan.shen.@rosinson.com> | 2019-01-10 11:53:46 +0800 |
---|---|---|
committer | Yanlan Shen <yanlan.shen.@rosinson.com> | 2019-01-10 11:59:49 +0800 |
commit | 714a48e6caffddf43db4c9b6911cac3bcf622ac6 (patch) | |
tree | 51568fe31f4ea7244f5c73bdf8be19b3e1812f01 | |
parent | eb3976c64af6d2d3c67fd255ce9420c28b176392 (diff) |
luci-theme-rosy: Fixed modal box misalignment problem
Signed-off-by: Yanlan Shen <yanlan.shen.@rosinson.com>
-rw-r--r-- | themes/luci-theme-rosy/htdocs/luci-static/rosy/cascade.css | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/themes/luci-theme-rosy/htdocs/luci-static/rosy/cascade.css b/themes/luci-theme-rosy/htdocs/luci-static/rosy/cascade.css index 3132a4849..ab7cac626 100644 --- a/themes/luci-theme-rosy/htdocs/luci-static/rosy/cascade.css +++ b/themes/luci-theme-rosy/htdocs/luci-static/rosy/cascade.css @@ -1886,6 +1886,25 @@ footer { right: 0; } +.modal-overlay-active #modal_overlay { + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + width: 100%; + background-color: #000000b8; + z-index: 2000; +} + +.modal-overlay-active #modal_overlay .modal { + width: 50%; + background-color: #fff; + margin: 150px auto; + border-radius: 20px; + color: #333; +} + /* The style of the prompt message */ .alert-message { |