Skip to content

Commit

Permalink
Merge pull request NativeScript#1091 from NativeScript/bundev/fix-sea…
Browse files Browse the repository at this point in the history
…rch-and-tables

Fix first table cell and search field on top
  • Loading branch information
bundyo authored Mar 2, 2018
2 parents c669323 + 2790d99 commit 65075ad
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 65075ad

Please sign in to comment.