diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2014-02-27 13:24:44 +0100 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2014-02-27 13:24:44 +0100 |
commit | 6fe1cf7ae401667625f9d15b9c7495c4dfb68412 (patch) | |
tree | c9c23659c55f6a0768a43c73b58d18c065f214c8 | |
parent | 832f6e4e423ea784b8a6408135d796a1a0c83f6c (diff) | |
parent | f0cd08ab5d819bd11640dc51338f4ee3d52a623f (diff) | |
download | nextcloud-server-6fe1cf7ae401667625f9d15b9c7495c4dfb68412.tar.gz nextcloud-server-6fe1cf7ae401667625f9d15b9c7495c4dfb68412.zip |
Merge pull request #7449 from owncloud/remove-input-border
remove border from log in input fields, simpler and works better with themes
-rw-r--r-- | core/css/styles.css | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 341a507ce37..082d2c714cf 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -405,11 +405,9 @@ input[name="adminpass-clone"] { padding-left:1.8em; width:11.7em !important; } /* General new input field look */ #body-login input[type="text"], #body-login input[type="password"], -#body-login input[type="email"] { - border: 1px solid #323233; - border-radius: 5px; -} -#body-login input[type='submit'] { +#body-login input[type="email"], +#body-login input[type="submit"] { + border: none; border-radius: 5px; } |