diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-06-29 14:53:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-29 14:53:09 +0200 |
commit | 69e92ea71ac5223b6f9c827ba2fa15cacb191f5f (patch) | |
tree | 512322857ebca5ce5e72b4e50c8c413abc36aa69 /settings/css | |
parent | c76c8a69dcbced0b0748a980a8bbff5c61515dd5 (diff) | |
parent | 97c13debdcb701573f8dd0bc437eeb8df692ec0f (diff) | |
download | nextcloud-server-69e92ea71ac5223b6f9c827ba2fa15cacb191f5f.tar.gz nextcloud-server-69e92ea71ac5223b6f9c827ba2fa15cacb191f5f.zip |
Merge pull request #10053 from nextcloud/feature/7378/password-security-move
Move password change to security settings
Diffstat (limited to 'settings/css')
-rw-r--r-- | settings/css/settings.scss | 50 |
1 files changed, 29 insertions, 21 deletions
diff --git a/settings/css/settings.scss b/settings/css/settings.scss index b23dac7de1e..f12d1de2519 100644 --- a/settings/css/settings.scss +++ b/settings/css/settings.scss @@ -124,14 +124,6 @@ select { } } -input { - &#pass1, - &#pass2, - &#passwordbutton { - width: 100%; - } -} - #personal-settings { display: grid; padding: 20px; @@ -380,9 +372,7 @@ input#identity { } } -.password-state { - display: inline-block; -} + table.nostyle { label { @@ -393,6 +383,33 @@ table.nostyle { } } +#security-password { + #passwordform { + display: flex; + flex-wrap: wrap; + #pass1, .personal-show-container, #passwordbutton { + flex-shrink: 1; + width: 200px; + min-width: 150px; + } + #pass2 { + width: 100%; + } + .password-state { + display: inline-block; + } + .strengthify-wrapper { + position: absolute; + left: 0; + width: 100%; + border-radius: 0 0 2px 2px; + margin-top: -6px; + overflow: hidden; + height: 3px; + } + } +} + #security { table { width: 100%; @@ -1246,16 +1263,7 @@ span { } } -/* PASSWORD */ -#passwordform .strengthify-wrapper { - position: absolute; - left: 0; - width: 100%; - border-radius: 0 0 2px 2px; - margin-top: -6px; - overflow: hidden; - height: 3px; -} + /* OPERA hack for strengthify*/ doesnotexist:-o-prefocus, .strengthify-wrapper { |