salix/client/core/src/components/autocomplete/style.scss

48 lines
918 B
SCSS
Raw Normal View History

2017-09-13 12:59:58 +00:00
ul.vn-autocomplete {
list-style-type: none;
padding: 1em;
margin: 0;
padding: 0;
overflow: auto;
max-height: 300px;
li {
display: block;
padding: .8em;
margin: 0;
cursor: pointer;
&.active,
&:hover {
background-color: rgba(1,1,1,.1);
}
&.load-more {
color: #ffa410;
2017-11-22 06:56:31 +00:00
font-family: vn-font-bold;
2017-09-13 12:59:58 +00:00
padding: .4em .8em;
}
}
}
vn-autocomplete {
2017-11-22 12:10:33 +00:00
position: relative;
vn-vertical {
outline:none;
}
2017-11-22 12:10:33 +00:00
2017-09-13 12:59:58 +00:00
.mdl-chip__action {
position: absolute;
top: 0px;
right: -6px;
margin: 22px 0px;
2017-11-23 13:09:38 +00:00
background: transparent;
2017-09-13 12:59:58 +00:00
}
.material-icons {
font-size: 18px;
}
2017-09-14 11:40:55 +00:00
vn-drop-down{
2017-09-20 09:50:53 +00:00
margin-top: 47px;
2017-09-14 11:40:55 +00:00
}
2017-09-20 11:52:53 +00:00
vn-drop-down .dropdown-body .filter vn-icon {
margin-left: -26px;
}
2017-09-13 12:59:58 +00:00
}