276 lines
4.8 KiB
CSS
276 lines
4.8 KiB
CSS
.product-list-empty {
|
|
padding: 5px 0;
|
|
font-size: 16px;
|
|
color: #999;
|
|
}
|
|
.product-list {
|
|
margin: 0;
|
|
padding: 10px 0;
|
|
overflow: hidden;
|
|
}
|
|
.product-list li button {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 20px;
|
|
height: 20px;
|
|
opacity: 0;
|
|
outline: none;
|
|
}
|
|
.product-list li button,
|
|
.product-list li .image,
|
|
.product-list li .details {
|
|
-webkit-transition: opacity .2s linear;
|
|
-moz-transition: opacity .2s linear;
|
|
transition: opacity .2s linear;
|
|
}
|
|
.product-list li:hover button {
|
|
opacity: .3;
|
|
}
|
|
.product-list li:hover button:hover {
|
|
opacity: .8;
|
|
}
|
|
.plugin-list li {
|
|
list-style: none;
|
|
position: relative;
|
|
border-bottom: 1px solid #E6E9E9;
|
|
margin-bottom: 10px;
|
|
padding-bottom: 10px;
|
|
overflow: hidden;
|
|
}
|
|
.plugin-list li:last-child {
|
|
border-bottom: none;
|
|
}
|
|
.plugin-list li .image {
|
|
float: left;
|
|
margin-right: 15px;
|
|
margin-left: 5px;
|
|
}
|
|
.plugin-list li .image img {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
.plugin-list li .details p {
|
|
padding: 0;
|
|
margin: 3px 0 0 0;
|
|
color: #808C8D;
|
|
}
|
|
.plugin-list li h4 {
|
|
padding: 5px 0 0;
|
|
margin: 0;
|
|
color: #C03F31;
|
|
font-weight: 400;
|
|
}
|
|
.theme-list li {
|
|
float: left;
|
|
padding: 0;
|
|
margin: 0 10px 10px 0;
|
|
list-style: none;
|
|
border: 1px solid #E6E9E9;
|
|
background: #fff;
|
|
position: relative;
|
|
border-radius: 3px;
|
|
}
|
|
.theme-list li:hover {
|
|
border-color: transparent;
|
|
}
|
|
.theme-list li {
|
|
-webkit-transition: border .2s linear;
|
|
-moz-transition: border .2s linear;
|
|
transition: border .2s linear;
|
|
}
|
|
.theme-list li .image {
|
|
padding: 5px;
|
|
}
|
|
.theme-list li .image img {
|
|
width: 210px;
|
|
height: 140px;
|
|
}
|
|
.theme-list li:hover .image {
|
|
opacity: 0;
|
|
}
|
|
.theme-list li .details {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
opacity: 0;
|
|
padding: 10px;
|
|
overflow: hidden;
|
|
}
|
|
.theme-list li:hover .details {
|
|
opacity: 1;
|
|
}
|
|
.theme-list li h4 {
|
|
padding: 15px 0 0;
|
|
margin: 0;
|
|
}
|
|
.theme-list li p {
|
|
padding: 0;
|
|
margin: 0;
|
|
color: #999;
|
|
text-transform: uppercase;
|
|
font-size: 12px;
|
|
}
|
|
.suggested-products {
|
|
padding: 0;
|
|
}
|
|
.suggested-products .product {
|
|
padding: 0;
|
|
}
|
|
.suggested-products .image img {
|
|
width: 40px;
|
|
height: 40px;
|
|
margin-top: 10px;
|
|
}
|
|
.suggested-themes .image img {
|
|
width: 60px;
|
|
height: 40px;
|
|
}
|
|
.suggested-products .image {
|
|
float: left;
|
|
position: relative;
|
|
}
|
|
.suggested-products .details {
|
|
margin-left: 50px;
|
|
padding: 10px 0;
|
|
}
|
|
.suggested-themes .details {
|
|
margin-left: 70px;
|
|
}
|
|
.suggested-products .details h5 {
|
|
margin: 0 0 3px;
|
|
font-size: 14px;
|
|
color: #C03F31;
|
|
font-weight: 400;
|
|
}
|
|
.suggested-products .details p {
|
|
font-size: 12px;
|
|
}
|
|
.suggested-products a {
|
|
color: #777;
|
|
background: #fff;
|
|
padding: 5px;
|
|
text-decoration: none;
|
|
display: block;
|
|
overflow: hidden;
|
|
border-bottom: 1px solid #E6E9E9;
|
|
}
|
|
.suggested-products a:hover {
|
|
color: #333;
|
|
background: #f9f9f9;
|
|
}
|
|
.suggested-products a:hover .image:after {
|
|
content: "+";
|
|
color: #999;
|
|
font-size: 32px;
|
|
display: block;
|
|
width: 40px;
|
|
height: 40px;
|
|
text-align: center;
|
|
line-height: 40px;
|
|
position: absolute;
|
|
top: 7px;
|
|
left: 0;
|
|
}
|
|
.suggested-products a:hover .image img {
|
|
opacity: .5;
|
|
}
|
|
/*!
|
|
* Typeahead
|
|
*/
|
|
.product-search {
|
|
position: relative;
|
|
width: 100%;
|
|
margin: 0 auto 0 auto;
|
|
text-align: left;
|
|
padding-bottom: 15px;
|
|
}
|
|
.twitter-typeahead {
|
|
width: 100%;
|
|
}
|
|
.typeahead,
|
|
.tt-hint {
|
|
width: 100%;
|
|
height: 46px;
|
|
padding: 8px 12px;
|
|
font-size: 24px;
|
|
line-height: 30px;
|
|
border: 1px solid #024e6a;
|
|
border-radius: 3px;
|
|
outline: none;
|
|
}
|
|
.typeahead {
|
|
background-color: #fff;
|
|
border-color: #e0e0e0;
|
|
}
|
|
.tt-input {
|
|
font-weight: 200;
|
|
}
|
|
.tt-input:focus {
|
|
border-color: #E6E9E9;
|
|
}
|
|
.tt-hint {
|
|
color: #999;
|
|
font-weight: 200;
|
|
}
|
|
.tt-dropdown-menu {
|
|
width: 100%;
|
|
margin-top: 0;
|
|
background-color: #fff;
|
|
border: 1px solid #ccc;
|
|
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
border-radius: 3px;
|
|
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
}
|
|
.tt-suggestion {
|
|
font-size: 14px;
|
|
line-height: 18px;
|
|
}
|
|
.tt-suggestion + .tt-suggestion {
|
|
font-size: 14px;
|
|
border-top: 1px solid #ccc;
|
|
}
|
|
.tt-suggestions .product-details {
|
|
padding: 5px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
.tt-suggestions .product-image {
|
|
float: left;
|
|
margin-right: 10px;
|
|
}
|
|
.tt-suggestions .product-image img {
|
|
height: 45px;
|
|
width: 45px;
|
|
}
|
|
.tt-suggestions .product-name {
|
|
font-size: 20px;
|
|
padding-top: 5px;
|
|
}
|
|
.tt-suggestion.tt-cursor {
|
|
cursor: pointer;
|
|
}
|
|
.tt-suggestion.tt-cursor .product-details {
|
|
color: #333;
|
|
background: #f9f9f9;
|
|
border-color: #f0f0f0;
|
|
}
|
|
.tt-suggestion.tt-cursor .product-details .product-image:after {
|
|
content: "+";
|
|
color: #999;
|
|
font-size: 38px;
|
|
display: block;
|
|
width: 45px;
|
|
height: 45px;
|
|
text-align: center;
|
|
line-height: 45px;
|
|
position: absolute;
|
|
top: 5px;
|
|
left: 5px;
|
|
}
|
|
.tt-suggestion.tt-cursor .product-details .product-image img {
|
|
opacity: .5;
|
|
}
|