landmark-serve
Version:
Web Application Framework and Admin GUI / Content Management System built on Express.js and Mongoose
38 lines (30 loc) • 631 B
text/less
// ComboBox
.mce-combobox {
.inline-block();
.border-radius(3px);
.box-shadow(@textbox-box-shadow);
}
.mce-combobox input {
border: 1px solid @textbox-border;
border-right-color: @combobox-border;
height: 28px;
}
.mce-combobox.mce-disabled input {
color: mix(@text, @textbox-bg, 40%);
}
.mce-combobox.mce-has-open input {
.border-radius(4px 0 0 4px);
}
.mce-combobox .mce-btn {
border-left: 0;
.border-radius(0 4px 4px 0);
}
.mce-combobox button {
padding-right: 8px;
padding-left: 8px;
}
.mce-combobox.mce-disabled .mce-btn button {
cursor: default;
.box-shadow(none);
.opacity(@btn-box-disabled-opacity);
}