Sha256: 038ccb8450fbc730421db5873a763e4c4229c8ffc823d42dc5b213cfaa3c9d24

Contents?: true

Size: 883 Bytes

Versions: 1

Compression:

Stored size: 883 Bytes

Contents

//
// Basic MDB table
//

.table {
  --#{$prefix}table-font-size: #{$table-font-size};
  --#{$prefix}table-divider-color: #{$table-divider-color};

  font-size: var(--#{$prefix}table-font-size);

  th {
    font-weight: $font-weight-medium;
  }

  tbody {
    font-weight: $font-weight-normal;
  }

  > :not(:last-child) > :last-child > * {
    border-bottom-color: $table-group-separator-color;
  }
}

@each $color, $value in $table-variants {
  @include table-variant($color, $value);
}

.table-hover {
  > tbody > tr {
    transition: $table-hover-transition;
  }
  > tbody > tr:hover {
    --#{$prefix}table-accent-bg: transparent;
    background-color: var(--#{$prefix}table-hover-bg);
  }
}

.table-group-divider {
  border-top: (2 * $table-border-width) solid;
  border-top-color: inherit;
}

.table-divider-color {
  border-top-color: var(--#{$prefix}table-divider-color);
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-rubin-collab-theme-0.1.1 _third_party/mdb-ui-kit/src/scss/free/_tables.scss