diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-03-02 15:05:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-02 15:05:04 +0100 |
commit | ed239d72dc51b4b50eaec1ab8bbeb2e5cf6249b7 (patch) | |
tree | ffb498d7d9fe737c3aa0a0edc2c3e689fb940644 /core | |
parent | 158aac00a0c286118b7701f4a15c61740179a80b (diff) | |
parent | 4db556e784a8723778a73405470433786d93eab0 (diff) | |
download | nextcloud-server-ed239d72dc51b4b50eaec1ab8bbeb2e5cf6249b7.tar.gz nextcloud-server-ed239d72dc51b4b50eaec1ab8bbeb2e5cf6249b7.zip |
Merge pull request #8606 from nextcloud/strengthify-unification
Unify look of the strengthify password hint
Diffstat (limited to 'core')
-rw-r--r-- | core/css/guest.css | 9 | ||||
-rw-r--r-- | core/css/styles.scss | 9 |
2 files changed, 12 insertions, 6 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'] { |