Sha256: c4d0470a727c58a6e3ecd742dbdb007e54d84b3f4659a3440aa6e3c55cc3e142

Contents?: true

Size: 741 Bytes

Versions: 1

Compression:

Stored size: 741 Bytes

Contents

.thead {
  th {
    color: $table-dark-color;
    background-color: $table-dark-bg;
  }
}

.table {
  color: $table-dark-color;
  background-color: $table-dark-bg;

  th,
  td,
  thead th {
    border-color: $table-dark-border-color;
  }

  &.table-bordered {
    border: 0;
  }

  &.table-striped {
    tbody tr:nth-of-type(odd) {
      background-color: $table-dark-accent-bg;
    }
  }

  &.table-hover {
    tbody tr {
      @include hover {
        background-color: $table-dark-hover-bg;
      }
    }
  }
}

.table th,
.table td {
  vertical-align: middle;
}

.table-striped {
  tbody tr:nth-of-type(odd) {
    background-color: $gray-200;
  }
}

.table-hover {
  tbody {
    tr:hover {
      background-color: $gray-400;
    }
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
kiso_themes-1.0.2 lib/sass/kiso_themes/auriga/_tables.scss