Sha256: aa588858f760a84a84a5a46f14c53756f327550da9434d8eac02457f86c05659

Contents?: true

Size: 1.54 KB

Versions: 4

Compression:

Stored size: 1.54 KB

Contents

.table {
  width: 100%;
  margin-bottom: $base-padding;
  border-collapse: collapse;
  th {
    letter-spacing: 1px;
  }
  th, td {
    border-bottom: .1rem solid #e1e1e1;
    padding: 10px 20px;
    text-align: left;
    &:first-child {
      padding-left: 0;
    }
    &:last-child {
      padding-right: 0;
    }

    &.actions {
      text-align: center;
      a {
        font-size: 11px;
        padding: 7px 18px;
        margin-bottom: 5px;
      }
    }
  }
}

@include mq-max(1100px) {
  .table {
    &.down-before {
      thead {
        display: none;
      }
      th, td {
        &:first-child {
          padding-left: 20px;
        }
        &:last-child {
          padding-right: 20px;
        }
      }
      tr {
        display: block;
      }
      td {
        border-bottom: 1px solid #ddd;
        display: block;
        text-align: right;
        &:before {
          content: attr(data-label);
          float: left;
          font-weight: bold;
        }
        &:last-child {
          border-bottom: 0;
        }
      }
    }
  }
}

@include mq-max(940px) {
  .table {
    thead {
      display: none;
    }
    th, td {
      &:first-child {
        padding-left: 20px;
      }
      &:last-child {
        padding-right: 20px;
      }
    }
    tr {
      display: block;
    }
    td {
      border-bottom: 1px solid #ddd;
      display: block;
      text-align: right;
      &:before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
      }
      &:last-child {
        border-bottom: 0;
      }
    }
  }
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
lato_view-1.1.5 app/assets/stylesheets/lato_view/modules/_table.scss
lato_view-1.1.4 app/assets/stylesheets/lato_view/modules/_table.scss
lato_view-1.1.3 app/assets/stylesheets/lato_view/modules/_table.scss
lato_view-1.1 app/assets/stylesheets/lato_view/modules/_table.scss