mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-09 08:47:11 -05:00
132 lines
2.4 KiB
CSS
132 lines
2.4 KiB
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
@tailwind daisyui;
|
|
|
|
/*
|
|
|
|
@layer components {
|
|
.btn-primary {
|
|
@apply py-2 px-4 bg-blue-200;
|
|
}
|
|
}
|
|
|
|
*/
|
|
@import 'actiontext.css';
|
|
@import 'leaflet_theme.css';
|
|
|
|
@layer components {
|
|
.fade-out {
|
|
opacity: 0;
|
|
transition: opacity 150ms ease-in-out;
|
|
}
|
|
}
|
|
|
|
/* Leaflet Panel Styles */
|
|
.leaflet-right-panel {
|
|
margin-top: 80px; /* Give space for controls above */
|
|
margin-right: 10px;
|
|
transform: none;
|
|
transition: right 0.3s ease-in-out;
|
|
z-index: 400;
|
|
background: white;
|
|
border-radius: 4px;
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
/* Add Visit Marker Styles */
|
|
.add-visit-marker {
|
|
display: flex !important;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 20px;
|
|
background: white;
|
|
border: 2px solid #007bff;
|
|
border-radius: 50%;
|
|
box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
|
|
animation: pulse-visit 2s infinite;
|
|
}
|
|
|
|
@keyframes pulse-visit {
|
|
0% {
|
|
transform: scale(1);
|
|
box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
|
|
}
|
|
50% {
|
|
transform: scale(1.1);
|
|
box-shadow: 0 4px 12px rgba(0, 123, 255, 0.5);
|
|
}
|
|
100% {
|
|
transform: scale(1);
|
|
box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
|
|
}
|
|
}
|
|
|
|
/* Visit Form Popup Styles */
|
|
.visit-form-popup .leaflet-popup-content-wrapper {
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.leaflet-right-panel.controls-shifted {
|
|
right: 310px;
|
|
}
|
|
|
|
|
|
/* Drawer Panel Styles */
|
|
.leaflet-drawer {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 338px;
|
|
height: 100%;
|
|
background: rgba(255, 255, 255, 0.5);
|
|
transform: translateX(100%);
|
|
transition: transform 0.3s ease-in-out;
|
|
z-index: 450;
|
|
box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.leaflet-drawer.open {
|
|
transform: translateX(0);
|
|
}
|
|
|
|
/* Controls transition */
|
|
.leaflet-control-layers,
|
|
.leaflet-control-button,
|
|
.toggle-panel-button {
|
|
transition: right 0.3s ease-in-out;
|
|
z-index: 500;
|
|
}
|
|
|
|
.controls-shifted {
|
|
right: 338px !important;
|
|
}
|
|
|
|
/* Selection Tool Styles */
|
|
.leaflet-control-custom {
|
|
background-color: white;
|
|
border-radius: 4px;
|
|
width: 30px;
|
|
height: 30px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.leaflet-control-custom:hover {
|
|
background-color: #f3f4f6;
|
|
}
|
|
|
|
#selection-tool-button.active {
|
|
background-color: #60a5fa;
|
|
color: white;
|
|
}
|
|
|
|
/* Cancel Selection Button */
|
|
#cancel-selection-button {
|
|
margin-bottom: 1rem;
|
|
width: 100%;
|
|
}
|