diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-03-01 17:09:22 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-03-01 17:09:22 +0100 |
commit | 8d9c6f0e028e1976c1a4d6f43e701c05bd2b9e74 (patch) | |
tree | dfb60d19041c7e9b9577636851adb444a11853f1 | |
parent | 0f3ba9444e8b683ba89e100b6a43cab70b3788b9 (diff) | |
download | nextcloud-server-8d9c6f0e028e1976c1a4d6f43e701c05bd2b9e74.tar.gz nextcloud-server-8d9c6f0e028e1976c1a4d6f43e701c05bd2b9e74.zip |
Unify look of the strengthify password hint
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
-rw-r--r-- | core/css/guest.css | 9 | ||||
-rw-r--r-- | core/css/styles.scss | 9 | ||||
-rw-r--r-- | settings/css/settings.scss | 6 |
3 files changed, 17 insertions, 7 deletions
diff --git a/core/css/guest.css b/core/css/guest.css index ecc3da9d081..e0e639252ee 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -292,9 +292,12 @@ label.infield { .strengthify-wrapper { display: inline-block; position: relative; - left: 15px; - top: -23px; - width: 250px; + left: 5px; + top: -20px; + width: 269px; + border-radius: 0 0 2px 2px; + overflow: hidden; + height: 3px; } .tooltip-inner { font-weight: bold; diff --git a/core/css/styles.scss b/core/css/styles.scss index 4b02041976b..e984707e7d4 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -448,9 +448,12 @@ body { .strengthify-wrapper { display: inline-block; position: relative; - left: 15px; - top: -23px; - width: 250px; + left: 5px; + top: -20px; + width: 269px; + border-radius: 0 0 2px 2px; + overflow: hidden; + height: 3px; } input { &[type='text'], &[type='password'], &[type='email'] { diff --git a/settings/css/settings.scss b/settings/css/settings.scss index 18bc4efa783..ade10f75914 100644 --- a/settings/css/settings.scss +++ b/settings/css/settings.scss @@ -1153,8 +1153,12 @@ span { #passwordform .strengthify-wrapper { position: absolute; left: 0; - width: 130px; + width: calc(100% - 2px); + border-radius: 0 0 2px 2px; margin-top: -6px; + margin-left: 1px; + overflow: hidden; + height: 3px; } /* OPERA hack for strengthify*/ |