2017-01-05 01:35:41 -08:00

161 lines
3.5 KiB
CSS

#flashsale_dashboard .nav-pills{
text-transform: uppercase;
font-weight: 600
}
/*progressbar*/
#progressbar {
overflow: hidden;
counter-reset: step;
padding: 10px;
margin-bottom: 10px;
}
#progressbar li {
list-style-type: none;
color: rgb(46, 172, 206);
text-transform: uppercase;
width: 33.33333333%;
float: left;
position: relative;
text-align: center;
font-weight: 800;
}
#progressbar li:before {
content: counter(step);
counter-increment: step;
width: 20px;
line-height: 20px;
display: block;
font-size: 14px;
color: #333;
background: white;
border-radius: 3px;
position: absolute;
left: calc(50% - 10px);
top: 0;
z-index: 2;
}
/*progressbar connectors*/
#progressbar li:after {
content: '';
width: 100%;
height: 2px;
background: #DFDFDF;
position: absolute;
left: -50%;
top: 9px;
z-index: 1;
}
#progressbar li:first-child:after {
/*connector not needed before the first step*/
content: none;
}
#progressbar li.active:before, #progressbar li.active:after{
background: #EC1068;
color: white;
}
#progressbar li > a {
margin-top: 20px;
}
#product_part .products_detail h4 span {
text-transform: uppercase;
}
#product_part .productCard .btn-choose,
#product_part .productCard.selected-product .expand-action .btn-expand,
#product_part .productCard.selected-product .btn-detail,
#product_part .productCard.selected-product .expand-action,
#product_part .productCard.selected-product .btn-remove,
#product_part .productCard.selected-product .add-custom-price {
display: inline-block;
}
#product_part .productCard.selected-product .btn-choose,
#product_part .productCard.selected-product .expand-action .btn-collapse,
#product_part .productCard .btn-detail,
#product_part .productCard .expand-action,
#product_part .productCard .btn-remove,
#product_part .productCard .add-custom-price,
#product_part .productCard .custom_price_content {
display: none;
}
#product_part .productCard.selected-product .expand-action.expanded {
color: #fff;
background-color: #00aff0;
border-color: #008abd;
-webkit-box-shadow: none;
box-shadow: none;
}
#custom_price_errors {
color: white;
background: rgba(217, 83, 79, 0.8);
padding: 5px;
font-size: 14px;
line-height: 20px;
display: none;
}
#summary_part .summary_group {
margin-bottom: 20px;
}
#summary_part .summary_group ul {
font-size: 13px;
font-weight: 600;
list-style: none;
padding: 0;
margin: 0;
}
#summary_part .summary_group ul li {
padding-top: 10px;
}
#summary_part .summary_group ul li span {
font-size: 14px;
text-transform: uppercase;
color: #00aff0;
}
#summary_part .summary_group table th {
font-weight: 600;
}
#summary_part .summary_group button.btn-save {
display: inline-block;
margin-bottom: 0;
font-weight: normal;
text-align: center;
vertical-align: middle;
cursor: pointer;
background-image: none;
border: 1px solid transparent;
white-space: nowrap;
padding: 16px;
font-size: 14px;
text-transform: uppercase;
line-height: 1.42857;
border-radius: 3px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
min-width: 200px;
color: #363A41;
background-color: #fff;
border-color: #DEDEDE;
}
#summary_part .summary_group button.btn-save:hover {
color: #fff;
background-color: #00aff0;
border-color: #008abd;
-webkit-box-shadow: none;
box-shadow: none;
}
#css_file {
margin-top: 10px;
display: none;
}