Skip to content

Commit

Permalink
fix(tables): Use universal selector to work around minification bug
Browse files Browse the repository at this point in the history
  • Loading branch information
aredridel committed Aug 17, 2016
1 parent 21a1652 commit 2714b9d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/pivotal-ui/components/tables/tables.scss
Expand Up @@ -122,30 +122,30 @@ user lists with permissions and action menus

table.table-friendly { // tag name included to get enough specificity to override bootstrap rules.
border-collapse: separate;
> :first-child > tr:first-child, > tr:first-child {
> :first-child {
> *:first-child > tr:first-child, > tr:first-child {
> *:first-child {
border-top-left-radius: 10px !important;
}
> :last-child {
> *:last-child {
border-top-right-radius: 10px !important;
}
>td, >th {
border-top: 1px solid $gray-8;
}
}
> * > tr, > tr {
> :first-child {
> *:first-child {
border-left: 1px solid $gray-8;
}
> :last-child {
> *:last-child {
border-right: 1px solid $gray-8;
}
}
> :last-child > tr:last-child, > tr:last-child {
> :first-child {
> *:last-child > tr:last-child, > tr:last-child {
> *:first-child {
border-bottom-left-radius: 10px !important;
}
> :last-child {
> *:last-child {
border-bottom-right-radius: 10px !important;
}
> td, > th {
Expand Down

0 comments on commit 2714b9d

Please sign in to comment.