39 lines
647 B
Plaintext
39 lines
647 B
Plaintext
// ComboBox
|
|
|
|
.mce-combobox {
|
|
.inline-block();
|
|
.border-radius(3px);
|
|
.box-shadow(@textbox-box-shadow);
|
|
*height: 32px;
|
|
}
|
|
|
|
.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);
|
|
}
|