style(geo_map): improve floating buttons

This commit is contained in:
Elian Doran 2025-02-03 22:40:41 +02:00
parent e2c0c6ef92
commit c649f473b4
No known key found for this signature in database
3 changed files with 18 additions and 18 deletions

View File

@ -7,24 +7,24 @@ const TPL = `
.floating-buttons {
position: relative;
}
.floating-buttons-children,.show-floating-buttons {
position: absolute;
top: 10px;
position: absolute;
top: 10px;
right: 10px;
display: flex;
flex-direction: row;
z-index: 100;
}
.type-canvas .floating-buttons-children {
top: 70px;
top: 70px;
}
.floating-buttons-children > *:not(.hidden-int):not(.no-content-hidden) {
margin-left: 10px;
margin: 2px;
}
.floating-buttons-children > button, .floating-buttons-children .floating-button {
font-size: 150%;
padding: 5px 10px 4px 10px;
@ -37,17 +37,17 @@ const TPL = `
display: flex;
justify-content: space-around;
}
.floating-buttons-children > button:hover, .floating-buttons-children .floating-button:hover {
text-decoration: none;
border-color: var(--button-border-color);
}
.floating-buttons .floating-buttons-children.temporarily-hidden {
display: none;
}
</style>
<div class="floating-buttons-children"></div>
<!-- Show button that displays floating button after click on close button -->

View File

@ -5,6 +5,7 @@ const TPL = `\
<div class="geo-map-buttons">
<style>
.geo-map-buttons {
contain: none;
display: flex;
gap: 10px;
}
@ -12,13 +13,6 @@ const TPL = `\
.leaflet-pane {
z-index: 50;
}
.geo-map-buttons {
contain: none;
background: var(--main-background-color);
box-shadow: 0px 10px 20px rgba(0, 0, 0, var(--dropdown-shadow-opacity));
border-radius: 4px;
}
</style>
<button type="button"

View File

@ -1604,4 +1604,10 @@ body.electron.platform-darwin:not(.native-titlebar) .tab-row-container {
border-color: var(--hover-item-border-color);
background: var(--hover-item-background-color);
color: var(--hover-item-text-color);
}
.note-split.type-geoMap .floating-buttons-children {
background: var(--main-background-color);
box-shadow: 0px 10px 20px rgba(0, 0, 0, var(--dropdown-shadow-opacity));
border-radius: 4px;
}