Feat/SW-1549 map improvements * fix: imported new icon * refactor: rename component and set map handling to 'greedy' * fix: show cards for 3s after hover * refactor: update styles and added HotelPin component * fix: change from close to back icon * refactor: update to only use 1 state value for active pin and card * fix: add click handler when dialog is opened * fix: performance fixes for the dialog carousel * fix: added border * fix: clear timeout on mouseenter * fix: changed to absolute import * fix: moved hover state into the store * fix: renamed store actions Approved-by: Michael Zetterberg
29 lines
392 B
CSS
29 lines
392 B
CSS
.advancedMarker {
|
|
height: 32px;
|
|
}
|
|
|
|
.dialogContainer {
|
|
display: none;
|
|
}
|
|
|
|
.card {
|
|
display: none;
|
|
position: absolute;
|
|
bottom: 32px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 402px;
|
|
height: 181px;
|
|
background-color: var(--Base-Surface-Primary-light-Normal);
|
|
}
|
|
|
|
.card.active {
|
|
display: block;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.dialogContainer {
|
|
display: block;
|
|
}
|
|
}
|