Sha256: 4f39e571c6e237dc8d5795066690ceedac5dc0dd31cdaff3c3027814b668f114

Contents?: true

Size: 1.36 KB

Versions: 7

Compression:

Stored size: 1.36 KB

Contents

// Table of Contents
// ==================================================
// Reset
// Styles
// Decorations
// Colors

// Reset
// ==================================================
dd,
ol,
ul { padding-left: 20px; }
dl,
ol,
ul {
  background: color(trasparent);
  border-color: color(dark-haze);
}

// Styles
// ==================================================
.list-stripe {
  > li:nth-child(even) { background: color(light-haze); }

  &.dark {
    > li:nth-child(even) { background: inherit; }
    > li:nth-child(odd) { background: color(light-black); }
  }
  &.light {
    > li:nth-child(even) { background: color(haze); }
  }
}
.list-hover {
  > li:hover { background: color(haze); }

  &.dark {
    > li:hover { background: background-hover-color(black); }
  }
  &.light {
    > li:hover { background: background-hover-color(haze); }
  }
}
.list-inline {
  > li { display: inline-block; }
}
.list-clear {
  list-style: none;
  padding: 0;
}
.list-scroll {
  max-height: 300px;
  overflow-y: auto;
}

// Decorations
// ==================================================
.list-line,
.list-border {
  > li {
    padding: 5px 0;

    &:not(:last-child) {
      border-bottom-style: solid;
      border-bottom-width: 1px;
    }
  }
}
.list-border {
  border-radius: border-radius(b);
  border-style: solid;
  border-width: 1px;

  > li {
    padding-left: 10px;
    padding-right: 10px;
  }
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
active_frontend-15.0.23 vendor/assets/stylesheets/blocks/_list.scss
active_frontend-15.0.22 vendor/assets/stylesheets/blocks/_list.scss
active_frontend-15.0.21 vendor/assets/stylesheets/blocks/_list.scss
active_frontend-15.0.20 vendor/assets/stylesheets/blocks/_list.scss
active_frontend-15.0.19 vendor/assets/stylesheets/blocks/_list.scss
active_frontend-15.0.18 vendor/assets/stylesheets/blocks/_list.scss
active_frontend-15.0.17 vendor/assets/stylesheets/blocks/_list.scss