landmark-serve
Version:
Web Application Framework and Admin GUI / Content Management System built on Express.js and Mongoose
33 lines (27 loc) • 589 B
text/less
// TextBox
.mce-textbox {
background: @textbox-bg;
border: 1px solid @textbox-border;
.border-radius(3px);
.box-shadow(@textbox-box-shadow);
display: inline-block;
.transition(border linear .2s);
height: 28px;
resize: none;
padding: 0 4px 0 4px;
white-space: pre-wrap;
*white-space: pre;
color: @text;
}
.mce-textbox:focus, .mce-textbox.mce-focus {
border-color: @textbox-border-focus;
}
.mce-placeholder .mce-textbox {
color: @textbox-text-placeholder;
}
.mce-textbox.mce-multiline {
padding: 4px;
}
.mce-textbox.mce-disabled {
color: mix(@text, @textbox-bg, 40%);
}