diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-04-01 17:21:05 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-04-01 17:21:05 +0200 |
commit | 0c441724bc3031e50715169e9fd5541b347b2878 (patch) | |
tree | f5ebe4a2f218bfd1bd5abbdbbe56c7e642b29a05 /core/css | |
parent | c926e98ea96f4782bc75b97e4db5996dacd6e0d4 (diff) | |
download | nextcloud-server-0c441724bc3031e50715169e9fd5541b347b2878.tar.gz nextcloud-server-0c441724bc3031e50715169e9fd5541b347b2878.zip |
make infield labels use less space so pasting in is easier
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/styles.css | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index f750c72077c..7af80e31ffb 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -466,9 +466,14 @@ input[name="adminpass-clone"] { p.infield { position:relative; } label.infield { cursor:text !important; top:1.05em; left:.85em; } #body-login form label.infield { /* labels are ellipsized when too long, keep them short */ - position:absolute; width:90%; padding-left:1.4em; - font-size:19px; color:#aaa; - white-space:nowrap; overflow:hidden; text-overflow:ellipsis; + position: absolute; + width: auto; + margin-left: 26px; + font-size: 19px; + color: #aaa; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } #body-login #databaseField .infield { padding-left:0; } #body-login form input[type="checkbox"]+label { |