Sha256: d5d7c1402f1bc47c1e08128b04a7c38ab229ac9bf5ab1376a5511481499be56f
Contents?: true
Size: 961 Bytes
Versions: 12
Compression:
Stored size: 961 Bytes
Contents
/*------------------------------------*\ #TABLES \*------------------------------------*/ $table-border-color: $border-color !default; $table-header-color: $dark-gray !default; $table-cell-color: $font-color !default; $table-row-hover-bg-color: $light-gray !default; /** * 1. various types of content will be found wrapped in paragraph tags within * tables */ table { margin-bottom: $vertical-margin; width: 100%; border-collapse: collapse; p { /* [1] */ margin: 0; } p + p { /* [1] */ margin-top: $spacing-unit; } } tr { tbody &:hover { background: $table-row-hover-bg-color; } } th, td { padding: $spacing-unit; text-align: left; border-bottom: 1px solid $table-border-color; vertical-align: baseline; .bottom-align & { vertical-align: top; } } th { color: $table-header-color; } td { color: $table-cell-color; }
Version data entries
12 entries across 12 versions & 1 rubygems