fix vertical alignment in table cell layout. Fixes #12979

Signed-off-by: swalther <swalther@wmw-medien.net>
This commit is contained in:
swalther 2017-03-17 20:40:23 +01:00
parent 0700cee6e3
commit 210bdc8df8
2 changed files with 10 additions and 2 deletions

View File

@ -259,7 +259,7 @@ button.mult_submit {
/* odd items 1,3,5,7,... */
table tr:nth-child(odd) {
background: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
background: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
}
/* even items 2,4,6,8,... */
@ -2644,6 +2644,10 @@ div.jqplot-noData-container {
background-color: rgba(96%, 96%, 96%, 0.3);
}
.relationalTable td {
vertical-align: top;
}
.relationalTable select {
width: 125px;
margin-right: 5px;

View File

@ -542,7 +542,7 @@ button.mult_submit {
table tbody:first-of-type tr:nth-child(odd),
table tbody:first-of-type tr:nth-child(odd) th {
background: #fff;
}
}
/* even items 2,4,6,8,... */
table tbody:first-of-type tr:nth-child(even),
@ -2910,6 +2910,10 @@ fieldset .disabled-field td {
padding-<?php echo $left; ?>: 20px;
}
.relationalTable td {
vertical-align: top;
}
.relationalTable select {
width: 125px;
margin-right: 5px;