PageLines DMS SelectMe section customizations
// custom width of SelectMe select box
// change to px or % width of your choice
// consider using min-width too
.selectmecontent input[type="text"] {
width:400px;
}
.selectmecontent input[type="text"],
.selectmecontent input[type="text"]:focus {
border: none;
.box-shadow(none);
}
.selectmecontent input[type="text"] {
color: @pl-base;
background: @pl-link;
&:focus {
color: @pl-link;
background: @pl-base;
}
}
// override https://github.com/pagelines/DMS/blob/Dev/less/forms.less#L129
// customize the rgba values below
.selectmecontent input[type="text"] {
&:focus {
border-color: rgba(82,168,236,0.8);
.box-shadow(~"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,0.6)");
}
}