MDL-59870 users: Default align participant table header row.

Instead of putting vertical-align: middle as indication for participants table
headers, none is set which leads to theme default, i.e. bottom in Clean and Boost.
This commit is contained in:
Luca Bösch
2017-08-25 00:09:30 +02:00
parent 9eb3c173ae
commit bb3216f8ea
3 changed files with 16 additions and 6 deletions
+5 -2
View File
@@ -128,9 +128,12 @@
.userlist table#participants {
text-align: center;
}
.userlist table#participants td,
.userlist table#participants th {
.userlist table#participants td {
text-align: left;
padding: 4px;
vertical-align: middle;
}
.userlist table#participants th {
text-align: left;
padding: 4px;
}
+5 -2
View File
@@ -9740,9 +9740,12 @@ body.path-question-type .mform fieldset.hidden {
.userlist table#participants {
text-align: center;
}
.userlist table#participants td,
.userlist table#participants th {
.userlist table#participants td {
text-align: left;
padding: 4px;
vertical-align: middle;
}
.userlist table#participants th {
text-align: left;
padding: 4px;
}