Skip to content

Commit

Permalink
LPS-49581 Limit .lfr-table cascade to intimidate child cells of the t…
Browse files Browse the repository at this point in the history
…able.
  • Loading branch information
blzaugg authored and brianchandotcom committed Aug 26, 2014
1 parent 0d053ec commit d4537b7
Showing 1 changed file with 19 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,19 @@
border-collapse: collapse;
clear: both;

tr td, tr th {
padding: 0 5px;

&:first-child, &.first-child {
padding-left: 0;
}

&:last-child, &.last-child {
padding-right: 0;
> tbody, > thead, > tfoot {
> tr {
> td, > th {
padding: 0 5px;

&:first-child, &.first-child {
padding-left: 0;
}

&:last-child, &.last-child {
padding-right: 0;
}
}
}
}
}
Expand Down Expand Up @@ -105,8 +109,12 @@
background: url() no-repeat 0 50%;
}

.lfr-table tr th {
font-weight: bold;
.lfr-table {
> tbody, > thead, > tfoot {
> tr > th {
font-weight: bold;
}
}
}

.lfr-checkbox-preselected, .lfr-configurator-visibility {
Expand Down

0 comments on commit d4537b7

Please sign in to comment.