diff options
author | Bjoern Schiessle <bjoern@schiessle.org> | 2017-03-14 16:56:11 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-04-28 23:41:35 -0300 |
commit | c9ccdca1ec2f586b8884b41a5319e4a908888df7 (patch) | |
tree | 73a0eadd195b7e51b89cdd370a0efe286e343ebe /settings/css | |
parent | 1fc05ea53a6ed6053c0ceb90ad72a49ca314d57e (diff) | |
download | nextcloud-server-c9ccdca1ec2f586b8884b41a5319e4a908888df7.tar.gz nextcloud-server-c9ccdca1ec2f586b8884b41a5319e4a908888df7.zip |
add verification dialog
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'settings/css')
-rw-r--r-- | settings/css/settings.css | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/settings/css/settings.css b/settings/css/settings.css index 65709c9578a..29bcc8a37c3 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -138,6 +138,16 @@ input#openid, input#webdav { width:20em; } top: 82px; pointer-events: none; } + +#personal-settings-container .verify { + float: right; + padding-top: 10px; +} + +#personal-settings-container .verify:hover { + cursor: pointer; +} + .federationScopeMenu { top: 44px; margin: -5px 0px 0; @@ -1016,4 +1026,49 @@ doesnotexist:-o-prefocus, .strengthify-wrapper { margin-top: -12px; margin-bottom: 12px; opacity: .7; +/* verify accounts */ +#verification-dialog { + display: none; /* Hidden by default */ + position: fixed; /* Stay in place */ + z-index: 1; /* Sit on top */ + left: 0; + top: 0; + width: 100%; /* Full width */ + height: 100%; /* Full height */ + overflow: auto; /* Enable scroll if needed */ + background-color: rgb(0,0,0); /* Fallback color */ + background-color: rgba(0,0,0,0.4); /* Black w/ opacity */ +} + +.verification-dialog-content { + background-color: #fefefe; + margin: 15% auto; /* 15% from the top and centered */ + padding: 20px; + border: 1px solid #888; + width: 60%; /* Could be more or less, depending on screen size */ +} + +#verify-dialog-close { + float: right; + width: 34px; + border: none; + background-color: transparent; + margin: 0 !important; + border-radius: 0; + right: 0; + opacity: 0.3; +} + +#verify-dialog-close:hover { + cursor: pointer; + opacity: 1; +} + +#verification-dialog .verificationCode { + font-family: monospace; + white-space: nowrap; + display: block; + overflow-y: scroll; + padding: 10px; + margin: 20px 20px 20px 0; } |