control-panel
Version:
embeddable panel of inputs for parameter setting
40 lines (39 loc) • 943 B
CSS
.control-panel-select-{{ UUID }}-dropdown {
display: inline-block;
position: absolute;
width: 62%;
padding-left: 1.5%;
height: 20px;
border: none;
border-radius: 0;
outline: none;
-webkit-appearance: none;
-moz-appearance: none;
-o-appearance:none;
appearance:none;
font-family: inherit;
background-color: {{ BG_COLOR }};
color: {{ TEXT_COLOR }};
}
.control-panel-select-{{ UUID }}-dropdown::-ms-expand {
display:none;
}
.control-panel-select-{{ UUID }}-triangle {
content: ' ';
border-right: 3px solid transparent;
border-left: 3px solid transparent;
line-height: 20px;
position: absolute;
right: 2.5%;
z-index: 1;
}
.control-panel-select-{{ UUID }}-triangle--down {
top: 11px;
border-top: 5px solid {{ TEXT_COLOR }};
border-bottom: 0px transparent;
}
.control-panel-select-{{ UUID }}-triangle--up {
top: 4px;
border-bottom: 5px solid {{ TEXT_COLOR }};
border-top: 0px transparent;
}