salix/client/core/src/drop-down/style.scss

53 lines
1.3 KiB
SCSS
Raw Normal View History

vn-drop-down {
position: absolute;
z-index: 9999;
2017-06-13 12:57:09 +00:00
padding: 0 15px;
margin-left: -15px;
background: transparent;
.dropdown-body{
background: white;
border: 1px solid #A7A7A7;
.filter{
padding: 5px 9px 5px 5px;
input{
height: 25px;
padding-left: 5px;
}
vn-icon{
font-size: 16px;
margin-left: -20px;
margin-top: 7px;
cursor: pointer;
&:hover{
color: red;
2017-06-21 11:16:37 +00:00
}
}
}
ul{
padding: 0;
margin: 0;
background: white;
max-height: 400px;
overflow-y: auto;
li {
2017-09-20 11:52:53 +00:00
outline: none;
list-style-type: none;
padding: 5px 10px;
cursor: pointer;
white-space: nowrap;
&.dropdown__loadMore{
color: rgb(255,171,64);
font-weight: 700;
}
2017-09-20 11:52:53 +00:00
input[type=checkbox]{
float: left;
margin: 5px 5px 0 0;
}
}
2017-09-14 11:40:55 +00:00
li.active{
background-color: #3D3A3B;
color: white;
2017-06-21 11:16:37 +00:00
}
}
}
}