Sha256: 4d9d418d1f35e930fde03614411648d3aeb19fff5b515511d5097cea0f261e02
Contents?: true
Size: 666 Bytes
Versions: 24
Compression:
Stored size: 666 Bytes
Contents
@mixin outer-table-borders($width: 2px, $color: black) { border: $width solid $color; thead { th { border-bottom: $width solid $color; } } tfoot { th, td { border-top: $width solid $color; } } th { &:first-child { border-right: $width solid $color; } } } @mixin inner-table-borders($width: 2px, $color: black) { th, td { border: { right: $width solid $color; bottom: $width solid $color; left-width: 0px; top-width: 0px; }; &:last-child, &.last { border-right-width: 0px; } } tbody, tfoot { tr:last-child, tr.last { th, td { border-bottom-width: 0px; } } } }
Version data entries
24 entries across 21 versions & 2 rubygems