small design fixes, profile table styles

This commit is contained in:
Felix Hamann 2018-06-26 21:36:39 +02:00
parent 58d135103f
commit 01054b1725
4 changed files with 90 additions and 72 deletions

View File

@ -275,6 +275,11 @@ a.btn.btn-info:hover,
} }
} }
/* SCROLLTABLE */
.scrolltable {
overflow: auto;
}
/* TABLE DESIGN */ /* TABLE DESIGN */
.table__row { .table__row {
@ -330,3 +335,20 @@ a.btn.btn-info:hover,
color: inherit; color: inherit;
} }
} }
.table--vertical {
th {
background-color: transparent;
color: var(--color-font);
width: 170px;
text-align: right;
padding-right: 15px;
font-weight: 400;
}
td {
font-weight: 600;
color: var(--color-font);
}
}

View File

@ -1,6 +1,7 @@
<div .profile> <div .profile>
<table .table.table--striped.table--hover> <div .scrolltable>
<table .table.table--striped.table--hover.table--vertical>
<tr.table__row> <tr.table__row>
<th> _{MsgName} <th> _{MsgName}
<td> #{display userDisplayName} <td> #{display userDisplayName}

View File

@ -244,7 +244,7 @@ input[type="checkbox"]:checked::after {
.file-input__label { .file-input__label {
cursor: pointer; cursor: pointer;
display: inline-block; display: inline-block;
background-color: var(--color-light); background-color: var(--color-primary);
color: white; color: white;
padding: 10px 17px; padding: 10px 17px;
border-radius: 3px; border-radius: 3px;

View File

@ -37,8 +37,3 @@
} }
} }
} }
/* SCROLLTABLE */
.scrolltable {
overflow: auto;
}