2021-01-11 13:54:24 +00:00
|
|
|
@import "./variables";
|
2019-01-30 23:33:43 +00:00
|
|
|
|
2018-04-19 12:58:43 +00:00
|
|
|
vn-searchbar {
|
2018-06-07 21:47:19 +00:00
|
|
|
display: block;
|
2020-04-02 12:52:02 +00:00
|
|
|
max-width: 560px;
|
2019-11-10 10:08:44 +00:00
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
.search-params {
|
|
|
|
flex: 1;
|
2020-04-02 12:52:02 +00:00
|
|
|
margin: 1px 0;
|
2019-11-10 10:08:44 +00:00
|
|
|
overflow: visible;
|
|
|
|
display: flex;
|
2020-04-02 12:52:02 +00:00
|
|
|
max-width: 384px;
|
2019-11-10 10:08:44 +00:00
|
|
|
|
|
|
|
& > .search-param {
|
|
|
|
color: rgba(0, 0, 0, .6);
|
|
|
|
background-color: rgba(0, 0, 0, .1);
|
2020-04-02 12:20:57 +00:00
|
|
|
padding: 1px 6px;
|
|
|
|
margin-left: 3px;
|
2019-11-10 10:08:44 +00:00
|
|
|
display: inline-block;
|
2020-04-02 12:20:57 +00:00
|
|
|
border-radius: 12px;
|
|
|
|
max-width: 192px;
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-01-30 23:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.search-panel {
|
2020-04-02 12:52:02 +00:00
|
|
|
max-height: 768px;
|
2019-01-30 23:39:40 +00:00
|
|
|
|
|
|
|
& > form {
|
2019-10-04 22:16:57 +00:00
|
|
|
padding: $spacing-lg;
|
2019-01-30 23:39:40 +00:00
|
|
|
}
|
2021-01-11 13:54:24 +00:00
|
|
|
|
|
|
|
& > form#manifold-form {
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
.manifold-panel {
|
|
|
|
border: $border-thin-light;
|
|
|
|
border-radius: 5px;
|
|
|
|
position: relative;
|
|
|
|
text-align: right;
|
|
|
|
|
|
|
|
.or {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 26px;
|
|
|
|
color: $color-font-secondary
|
|
|
|
}
|
|
|
|
|
|
|
|
vn-icon[icon="info"] {
|
2024-04-03 05:23:36 +00:00
|
|
|
position: absolute;
|
2021-01-11 13:54:24 +00:00
|
|
|
top: 2px;
|
|
|
|
right: 2px
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-04-03 05:23:36 +00:00
|
|
|
}
|