colouring-montreal/app/src/frontend/map/search-box.css

64 lines
1.1 KiB
CSS
Raw Normal View History

2019-02-11 04:04:19 -05:00
.search-box {
position: absolute;
top: 0.5rem;
left: 0.5rem;
2019-02-11 04:04:19 -05:00
z-index: 1000;
max-width:250px;
2019-02-11 04:04:19 -05:00
}
.search-box-pane {
max-height: 2.4rem;
overflow: hidden;
2019-02-11 04:04:19 -05:00
border-radius: 4px;
background: #fff;
box-shadow: 0px 0px 1px 1px #222222;
display: flex;
flex-flow: row nowrap;
2019-02-11 04:04:19 -05:00
}
.search-box .collapse-btn {
width: 2rem;
flex-shrink: 0;
line-height: 2.3rem;
text-align: center;
background-color: transparent;
border: none;
2019-02-11 04:04:19 -05:00
}
.search-box .collapse-btn.active {
cursor: pointer;
}
.search-box input.form-control {
flex: 1;
padding: 0.1rem 0.1rem;
max-width: 157px;
}
.search-box .btn {
padding: 0.25rem 0.2rem;
margin: 0.1rem;
margin-left: 0;
}
2019-02-11 04:04:19 -05:00
.search-box .search-box-results {
position: absolute;
top: 100%;
right: 0;
left: 2rem;
2019-02-11 04:04:19 -05:00
margin-top: 0.25rem;
list-style: none;
padding: 0;
overflow: hidden;
border-radius: 4px;
background: #fff;
box-shadow: 0px 0px 1px 1px #222222;
2019-02-11 04:04:19 -05:00
}
.search-box-result {
display: block;
padding: 0.25rem 0.5rem;
border-bottom: 1px solid #eee;
}