Sha256: 99a56677db27c601d0fe503d273eef3108199179f8bc6f7716bd0f1446185291

Contents?: true

Size: 1.9 KB

Versions: 7

Compression:

Stored size: 1.9 KB

Contents

/*Cart*/
.summary-cart.active.summary_height{
  min-height: 300px;
}

.summary-cart{
  ::-webkit-scrollbar{
    -webkit-appearance: none;
    width: 7px;
  }

  ::-webkit-scrollbar-thumb{
    border-radius: 4px;
    background-color: rgba(0, 0, 0, .5);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
  }

  .summary-cart-body{
    background-color: $stone;
    padding: $base-padding*2;
    font-size: $base-font-size*0.875;
    color: $charcoal;

    ul{
      list-style: none;
      margin: 0;

      li{
        padding: 8px;
      }

      li:not(:nth-child(1)){
        border-top: 1px solid $smoke;
      }

      .summary-flash-notice{
        color: $white;
        background: $brand-blue-insurance;

        p,
        a,
        a:hover,
        a:focus{
          color: $white;
        }

        &:not(:nth-child(1)){
          border-top: none;
        }
      }
    }

    .items{
      overflow-y: scroll;
      max-height: auto;
    }
  }
}

.summary-title{
  background: $brand-green !important;
  min-height: 62px;
}

.accordion-icon{
  width: 16px;
  height: 16px;
  display: block;
  float: right;
  color: $white;
  margin-top: $base-margin;
}


.delete-icon{ //same one used in the cart and on info charts it lives outside of cart so it can be used other places
  margin-top: $base-margin;
  float: right;

  .fa-times-circle-o{
    font-size: $base-font-size*2;
  }

  a{
    color: $slate;
    text-decoration: none;

    &:hover,
    &:focus{
      color: $charcoal;
    }
  }
}

@media screen and #{breakpoint(medium down)}{
  span.item-num{
    display: inline-block;
    float: right;
    width: 30px;
    height: 30px;
    border-radius: 60px;
    text-align: center;
    line-height: 29px;
    color: $white;
    font-weight: bold;
    margin-right: $base-margin*6;
    background: lighten($brand-green, 5%);
  }

  .summary-cart{
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
  }
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ama_layout-3.2.2 app/assets/stylesheets/ama_layout/layout_components/cart.scss
ama_layout-3.2.1 app/assets/stylesheets/ama_layout/layout_components/cart.scss
ama_layout-3.2.0 app/assets/stylesheets/ama_layout/layout_components/cart.scss
ama_layout-3.1.3 app/assets/stylesheets/ama_layout/layout_components/cart.scss
ama_layout-3.1.1 app/assets/stylesheets/ama_layout/layout_components/cart.scss
ama_layout-3.1.0 app/assets/stylesheets/ama_layout/layout_components/cart.scss
ama_layout-3.0.0 app/assets/stylesheets/ama_layout/layout_components/cart.scss