presentation thèmes par ville
This commit is contained in:
parent
5188f12ad4
commit
6f3d19245e
6 changed files with 417 additions and 63 deletions
|
@ -1,3 +1,52 @@
|
|||
<style>
|
||||
.suggestion-list {
|
||||
position: absolute;
|
||||
background: #fff;
|
||||
border: 1px solid #ced4da;
|
||||
border-radius: 0.5rem;
|
||||
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
|
||||
max-height: 260px;
|
||||
overflow-y: auto;
|
||||
width: 100%;
|
||||
z-index: 1050;
|
||||
margin-top: 2px;
|
||||
display: none;
|
||||
padding: 0;
|
||||
}
|
||||
.suggestion-item {
|
||||
padding: 0.75rem 1rem;
|
||||
cursor: pointer;
|
||||
border-bottom: 1px solid #f1f3f4;
|
||||
background: #fff;
|
||||
transition: background 0.15s;
|
||||
font-size: 1rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.suggestion-item:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
.suggestion-item:hover, .suggestion-item.active {
|
||||
background: #e9ecef;
|
||||
color: #212529;
|
||||
}
|
||||
.suggestion-name {
|
||||
font-weight: 500;
|
||||
color: #0d6efd;
|
||||
margin-right: 0.5em;
|
||||
}
|
||||
.suggestion-details {
|
||||
font-size: 0.95em;
|
||||
color: #6c757d;
|
||||
}
|
||||
.suggestion-type {
|
||||
margin-right: 8px;
|
||||
color: #adb5bd;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
.search-container { position: relative; }
|
||||
</style>
|
||||
|
||||
<div class="row mt-4 labourer-form-container" id="labourerFormContainer">
|
||||
<div class="col-12">
|
||||
<div class="card">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue