1
0
mirror of synced 2024-11-23 13:36:01 +03:00
select2/src/scss/_single.scss

30 lines
534 B
SCSS
Raw Normal View History

.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;
}
}
2014-08-28 04:18:17 +04:00
&.open {
.selection .single-select {
border-bottom: none;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
}
}