diff options
author | Joas Schilling <coding@schilljs.com> | 2016-09-19 15:33:30 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2016-11-18 11:57:16 +0100 |
commit | d75e35b75e9d70e511bee2c9fc830825363a4fd6 (patch) | |
tree | 0bfd1570211d1a8561c916d202b5f976a9d86445 /core/css/styles.css | |
parent | 54ca411ff097d64d33c2d1e90102ef1fb1927f40 (diff) | |
download | nextcloud-server-d75e35b75e9d70e511bee2c9fc830825363a4fd6.tar.gz nextcloud-server-d75e35b75e9d70e511bee2c9fc830825363a4fd6.zip |
Introduce the UI for password confirmation
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/css/styles.css')
-rw-r--r-- | core/css/styles.css | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index f0c4c4f33ff..7b2be87f610 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -983,3 +983,34 @@ fieldset.warning legend + p, fieldset.update legend + p { opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; } + +#sudo-login-background { + position: absolute; + width: 100%; + height: 100%; + background-color: #1d2d44; + opacity:0.4; + z-index: 999; +} + +#sudo-login-form { + position: absolute; + top: 45%; + left: 40%; + border: 1px solid #e9322d; + z-index: 1000; + background: #e4b9c0; + border-radius: 10px; + opacity:1; + padding: 25px; +} + +#sudo-login-form .question { + width: 250px; +} + +#sudo-login-form .confirm { + position: absolute; + top: 25px; + right: 25px; +} |