Fixed IE8 misaligned date
Removed display: block to let the element be displayed inline and let itself aligned by vertical-align: middle of the parent This works in IE8 and other browsers. Fixes #5288
This commit is contained in:
parent
4336d42ab0
commit
2b2a548610
|
@ -105,8 +105,6 @@ table th#headerDate, table td.date {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-width: 11em;
|
min-width: 11em;
|
||||||
display: block;
|
|
||||||
height: 51px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Multiselect bar */
|
/* Multiselect bar */
|
||||||
|
@ -161,8 +159,6 @@ table td.filename .nametext, .uploadtext, .modified { float:left; padding:.3em 0
|
||||||
}
|
}
|
||||||
.modified {
|
.modified {
|
||||||
position: relative;
|
position: relative;
|
||||||
top: 11px;
|
|
||||||
left: 5px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TODO fix usability bug (accidental file/folder selection) */
|
/* TODO fix usability bug (accidental file/folder selection) */
|
||||||
|
|
Loading…
Reference in New Issue