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

44 lines
1.1 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;
ul{
padding: 0;
margin: 10px 0 0 0;
background: white;
border: 1px solid #A7A7A7;
li {
list-style-type: none;
2017-06-21 11:16:37 +00:00
padding: 5px 10px;
cursor: pointer;
2017-06-15 10:00:51 +00:00
white-space: nowrap;
2017-06-21 11:16:37 +00:00
&.filter{
padding: 5px;
input{
height: 25px;
padding-left: 5px;
}
vn-icon{
font-size: 16px;
position: absolute;
margin-left: -20px;
margin-top: 7px;
}
}
}
li:hover{
background-color: #3D3A3B;
color: white;
2017-06-21 11:16:37 +00:00
&.filter{
vn-icon{
color: #3D3A3B;
&:hover{
color: red;
}
}
}
}
}
}