Skip to content
This repository was archived by the owner on Nov 17, 2022. It is now read-only.

Fix first table cell and search field on top #1091

Merged
merged 1 commit into from
Mar 2, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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