Sha256: 00aaf425c37cd80623d36314f122f306f5af8bafca30d0afece0baaa45470696

Contents?: true

Size: 1000 Bytes

Versions: 7

Compression:

Stored size: 1000 Bytes

Contents

table.index {
  // Borders
  border-collapse: separate;
  border-spacing: 0;

  > thead > tr > th:first-child {
    border-top-left-radius: 4px;
  }

  > thead > tr > th:last-child {
    border-top-right-radius: 4px;
  }

  > tbody > tr:last-child > td:first-child {
    border-bottom-left-radius: 4px;
  }

  > tbody > tr:last-child > td:last-child {
    border-bottom-right-radius: 4px;
  }

  > thead > tr > th {
    border-top: 1px solid $theme-gray-100;
    border-bottom: none
  }

  > thead > tr > th,
  > tbody > tr > td {
    &:first-child {
      border-left: 1px solid $theme-gray-100;
    }

    &:last-child {
      border-right: 1px solid $theme-gray-100;
    }
  }

  > tbody > tr:last-child > td {
    border-bottom: 1px solid $theme-gray-100;
  }

  // Colors
  > th {
    background-color: $theme-gray-15;
    color: $theme-gray-600;
  }

  > td {
    background-color: $theme-white;
    color: $theme-black;
  }
}

table#listing_products > tbody > tr > td > img {
  width: 24px;
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
solidus_backend-4.1.6 app/assets/stylesheets/spree/backend/themes/solidus_admin/_tables.scss
solidus_backend-4.1.5 app/assets/stylesheets/spree/backend/themes/solidus_admin/_tables.scss
solidus_backend-4.1.4 app/assets/stylesheets/spree/backend/themes/solidus_admin/_tables.scss
solidus_backend-4.1.3 app/assets/stylesheets/spree/backend/themes/solidus_admin/_tables.scss
solidus_backend-4.1.2 app/assets/stylesheets/spree/backend/themes/solidus_admin/_tables.scss
solidus_backend-4.1.1 app/assets/stylesheets/spree/backend/themes/solidus_admin/_tables.scss
solidus_backend-4.1.0 app/assets/stylesheets/spree/backend/themes/solidus_admin/_tables.scss