22 lines
380 B
SCSS
22 lines
380 B
SCSS
|
.select2-container {
|
||
|
.selection .single-select {
|
||
|
background-color: #eee;
|
||
|
border: 1px solid #aaa;
|
||
|
border-radius: 4px;
|
||
|
box-sizing: border-box;
|
||
|
|
||
|
cursor: pointer;
|
||
|
display: block;
|
||
|
|
||
|
height: 28px;
|
||
|
|
||
|
.rendered-selection {
|
||
|
color: #444;
|
||
|
display: block;
|
||
|
line-height: 28px;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
}
|
||
|
}
|
||
|
}
|