Sha256: 43b980e8b86ea0a5fdd8b8974e12a2a440d8d2fae17f49b1de5c7681f38d26a5

Contents?: true

Size: 1.96 KB

Versions: 7

Compression:

Stored size: 1.96 KB

Contents

//
// Table Variables
//
$include-html-table-classes: $include-html-classes !default;

// These control the background color for the table and even rows
$table-bg:               #fff !default;
$table-even-row-bg:      #f9f9f9 !default;

// These control the table cell border style
$table-border-style:     solid !default;
$table-border-size:      1px !default;
$table-border-color:     #ddd !default;

// These control the table head styles
$table-head-bg:          #f5f5f5 !default;
$table-head-font-size:   emCalc(14px) !default;
$table-head-font-color:  #222 !default;
$table-head-font-weight: bold !default;
$table-head-padding:     emCalc(8px) emCalc(10px) emCalc(10px) !default;

// These control the row padding and font styles
$table-row-padding:      emCalc(9px) emCalc(10px) !default;
$table-row-font-size:    emCalc(14px) !default;
$table-row-font-color:   #222 !default;
$table-line-height:      emCalc(18px) !default;

// These are for controlling the display and margin of tables
$table-display:          table-cell !default;
$table-margin-bottom:    emCalc(20px) !default;


//
// Table Mixin
//
@mixin table {
  background: $table-bg;
  margin-bottom: $table-margin-bottom;
  border: $table-border-style $table-border-size $table-border-color;

  thead,
  tfoot {
    background: $table-head-bg;
    font-weight: $table-head-font-weight;

    tr {
      th,
      td {
        padding: $table-head-padding;
        font-size: $table-head-font-size;
        color: $table-head-font-color;
        text-align: $default-float;
      }
    }
  }

  tr {
    th,
    td {
      padding: $table-row-padding;
      font-size: $table-row-font-size;
      color: $table-row-font-color;
    }

    &.even,
    &.alt,
    &:nth-of-type(even) { background: $table-even-row-bg; }
  }

  thead tr th,
  tfoot tr th,
  tbody tr td,
  tr td,
  tfoot tr td { display: $table-display; line-height: $table-line-height; }
}

@if $include-html-table-classes {

  /* Tables */
  table {
    @include table;
  }

}

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
zurb-foundation-4.2.1 scss/foundation/components/_tables.scss
zurb-foundation-4.2.0 scss/foundation/components/_tables.scss
themepile-abstractio-4.1.7 scss/abstractio/components/_tables.scss
themepile-abstractio-1.0.4 scss/abstractio/components/_tables.scss
themepile-abstractio-1.0.3 scss/abstractio/components/_tables.scss
themepile-abstractio-1.0.2 scss/abstractio/components/_tables.scss
zurb-foundation-4.1.6 scss/foundation/components/_tables.scss