mirror of
https://github.com/retailcrm/prestashop-module.git
synced 2025-03-03 19:53:19 +03:00
* New design * Corporate clients * Online consultant * Job manager (cron replacement) * Improved compatibility with 1.6 * Possibility to toggle inventory & history uploads * Better error logging * Abandoned carts improvements * Drop inactive category branch from ICML generation
52 lines
1.2 KiB
Plaintext
52 lines
1.2 KiB
Plaintext
@fontSize: 16px;
|
|
@selectHeight: 60px;
|
|
@borderRadius: 58px;
|
|
@optionsBorderRadius: 10px;
|
|
@innerPadding: 28px;
|
|
@textColor: #7a7a7a;
|
|
@border: 1px solid rgba(122,122,122,0.15);
|
|
|
|
.SumoSelect {
|
|
width: 100%;
|
|
|
|
&.open > .optWrapper {
|
|
top: @selectHeight !important;
|
|
}
|
|
|
|
& > .optWrapper {
|
|
border-radius: @optionsBorderRadius;
|
|
|
|
& > .options {
|
|
li label {
|
|
font-weight: normal !important;
|
|
}
|
|
|
|
li.opt {
|
|
float: left !important;
|
|
width: 100% !important;
|
|
font-size: @fontSize;
|
|
font-weight: normal !important;
|
|
|
|
label {
|
|
width: 100% !important;
|
|
text-align: left !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
& > .CaptionCont {
|
|
border: @border !important;
|
|
box-shadow: none!important;
|
|
border-radius: @borderRadius;
|
|
line-height: normal;
|
|
padding: 0 @innerPadding !important;
|
|
color: @textColor !important;
|
|
font-size: @fontSize !important;
|
|
height: @selectHeight;
|
|
|
|
& > span {
|
|
line-height: @selectHeight;
|
|
}
|
|
}
|
|
} |