Merge pull request #1574 from owncloud/installation-label-overflow
Installation label overflow, fix #871
This commit is contained in:
commit
6d7e324f4b
1 changed files with 6 additions and 2 deletions
|
@ -164,7 +164,7 @@ input[name="adminpass-clone"] { padding-left:1.8em; width:11.7em !important; }
|
|||
}
|
||||
.groupmiddle input {
|
||||
margin-top:0; margin-bottom:0;
|
||||
border-top:0; border-radius:0;
|
||||
border-top:0; border-bottom:0; border-radius:0;
|
||||
box-shadow:0 1px 1px #fff,0 1px 0 #ddd inset;
|
||||
}
|
||||
.groupbottom input {
|
||||
|
@ -178,7 +178,11 @@ input[name="adminpass-clone"] { padding-left:1.8em; width:11.7em !important; }
|
|||
#login .groupmiddle label, #login .groupbottom label { top:.65em; }
|
||||
p.infield { position:relative; }
|
||||
label.infield { cursor:text !important; top:1.05em; left:.85em; }
|
||||
#login form label.infield { position:absolute; font-size:19px; color:#aaa; white-space:nowrap; padding-left:1.4em; }
|
||||
#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;
|
||||
}
|
||||
#login #databaseField .infield { padding-left:0; }
|
||||
#login form input[type="checkbox"]+label { position:relative; margin:0; font-size:1em; text-shadow:#fff 0 1px 0; }
|
||||
#login form .errors { background:#fed7d7; border:1px solid #f00; list-style-indent:inside; margin:0 0 2em; padding:1em; }
|
||||
|
|
Loading…
Reference in a new issue