Skip to content

Commit

Permalink
Fix first table cell and search field on top.
Browse files Browse the repository at this point in the history
  • Loading branch information
bundyo committed Mar 2, 2018
1 parent c669323 commit 2790d99
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions build/_assets/stylesheets/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -5782,7 +5782,7 @@ html .tp-radio .radio__icon:before {
}

/* table styling (copied from the theme.css which is not loaded anymore */
table {
.Section table {
width: 100%;
margin: 20px 0;
text-align: left;
Expand All @@ -5792,11 +5792,13 @@ table {
border-left-width: 0;
border-right-width: 0;
}
table tr {

.Section table tr {
border-left-width: 0;
border-right-width: 0;
}
table th {

.Section table th {
padding: 6px 15px;
border-top: 2px solid #ecf0f1;
border-bottom: 2px solid #ecf0f1;
Expand All @@ -5812,18 +5814,20 @@ table th {
border-left-width: 0;
border-right-width: 0;
}
table td {

.Section table td {
border-top: 2px solid #ecf0f1;
padding: 10px 15px;
font: inherit;
line-height: normal;
border-left-width: 0;
border-right-width: 0;
}
table td:first-child {
white-space: nowrap;
}
table td h2, table td h3, table td h4, table td h5 {

.Section table td h2,
.Section table td h3,
.Section table td h4,
.Section table td h5 {
font-weight: 500;
margin: 0;
}
Expand Down

0 comments on commit 2790d99

Please sign in to comment.