salix/front/core/components/searchbar/style.scss

47 lines
1000 B
SCSS
Raw Normal View History

2019-02-06 10:24:29 +00:00
@import "variables";
vn-searchbar {
display: block;
2019-11-14 13:37:18 +00:00
max-width: 35em;
2019-11-10 10:08:44 +00:00
margin: 0 auto;
.search-params {
flex: 1;
margin: .05em 0;
overflow: visible;
display: flex;
2019-11-14 13:37:18 +00:00
max-width: 24em;
2019-11-10 10:08:44 +00:00
& > .search-param {
color: rgba(0, 0, 0, .6);
background-color: rgba(0, 0, 0, .1);
padding: .1em .4em;
margin-left: .2em;
display: inline-block;
border-radius: .8em;
2019-11-14 13:37:18 +00:00
max-width: 12em;
2019-11-10 10:08:44 +00:00
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
& > vn-icon {
font-size: inherit;
vertical-align: middle;
cursor: pointer;
border-radius: 50%;
&:hover {
color: rgba(0, 0, 0, .8);
}
}
}
}
}
.search-panel {
2019-02-01 16:11:14 +00:00
max-height: 48em;
2019-01-30 23:39:40 +00:00
& > form {
padding: $spacing-lg;
2019-01-30 23:39:40 +00:00
}
}