AdminLTE/build/scss/_products.scss

53 lines
780 B
SCSS
Raw Normal View History

2015-10-31 22:00:16 +01:00
/*
* Component: Products
* -------------------
2015-10-31 22:00:16 +01:00
*/
.products-list {
list-style: none;
margin: 0;
padding: 0;
> .item {
@include clearfix;
2018-03-17 18:07:55 +01:00
@if $enable-rounded {
@include border-radius($border-radius);
}
2018-03-17 18:07:55 +01:00
background: $white;
padding: 10px 0;
2015-10-31 22:00:16 +01:00
}
2015-10-31 22:00:16 +01:00
.product-img {
float: left;
img {
height: 50px;
width: 50px;
2015-10-31 22:00:16 +01:00
}
}
2015-10-31 22:00:16 +01:00
.product-info {
margin-left: 60px;
}
2015-10-31 22:00:16 +01:00
.product-title {
font-weight: 600;
}
2015-10-31 22:00:16 +01:00
.product-description {
2018-03-17 18:07:55 +01:00
color: $gray-600;
display: block;
2015-10-31 22:00:16 +01:00
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
2015-10-31 22:00:16 +01:00
}
}
2018-03-17 18:07:55 +01:00
.product-list-in-card > .item {
2015-10-31 22:00:16 +01:00
@include border-radius(0);
2018-03-17 18:07:55 +01:00
border-bottom: 1px solid $card-border-color;
2015-10-31 22:00:16 +01:00
&:last-of-type {
border-bottom-width: 0;
}
}