750 lines
15 KiB
CSS
750 lines
15 KiB
CSS
/* Admin Panel Specific Styles */
|
|
.admin-container {
|
|
display: flex;
|
|
height: calc(100vh - var(--header-height));
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.admin-sidebar {
|
|
width: 250px;
|
|
background-color: white;
|
|
border-right: 1px solid #e0e0e0;
|
|
padding: 20px;
|
|
}
|
|
|
|
.admin-sidebar h2 {
|
|
font-size: 18px;
|
|
margin-bottom: 20px;
|
|
color: var(--dark-color);
|
|
}
|
|
|
|
.admin-nav {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
}
|
|
|
|
.admin-nav a {
|
|
padding: 10px 15px;
|
|
color: var(--dark-color);
|
|
text-decoration: none;
|
|
border-radius: var(--border-radius);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.admin-nav a:hover {
|
|
background-color: var(--light-color);
|
|
}
|
|
|
|
.admin-nav a.active {
|
|
background-color: var(--primary-color);
|
|
color: white;
|
|
}
|
|
|
|
.admin-content {
|
|
flex: 1;
|
|
padding: 30px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.admin-section {
|
|
background-color: white;
|
|
border-radius: var(--border-radius);
|
|
padding: 30px;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.admin-section h2 {
|
|
margin-bottom: 15px;
|
|
color: var(--dark-color);
|
|
}
|
|
|
|
.admin-section p {
|
|
color: #666;
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.admin-map-container {
|
|
display: grid;
|
|
grid-template-columns: 1fr 300px;
|
|
gap: 20px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.admin-map {
|
|
height: 500px;
|
|
border-radius: var(--border-radius);
|
|
border: 1px solid #ddd;
|
|
}
|
|
|
|
.location-controls {
|
|
padding: 20px;
|
|
background-color: #f9f9f9;
|
|
border-radius: var(--border-radius);
|
|
}
|
|
|
|
.location-controls .form-group {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.location-controls .form-actions {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.help-text {
|
|
margin-top: 20px;
|
|
padding: 15px;
|
|
background-color: #e3f2fd;
|
|
border-radius: var(--border-radius);
|
|
font-size: 14px;
|
|
}
|
|
|
|
.help-text p {
|
|
margin: 0;
|
|
color: #1976d2;
|
|
}
|
|
|
|
.admin-info {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
color: rgba(255,255,255,0.9);
|
|
font-size: 14px;
|
|
}
|
|
|
|
/* Form styles */
|
|
.form-group {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.form-group label {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
font-weight: 500;
|
|
color: var(--dark-color);
|
|
}
|
|
|
|
.form-group input {
|
|
width: 100%;
|
|
padding: 8px 12px;
|
|
border: 1px solid #ddd;
|
|
border-radius: var(--border-radius);
|
|
font-size: 14px;
|
|
transition: border-color 0.2s;
|
|
}
|
|
|
|
.form-group input:focus {
|
|
outline: none;
|
|
border-color: var(--primary-color);
|
|
box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
|
|
}
|
|
|
|
/* Button styles */
|
|
.btn {
|
|
padding: 8px 16px;
|
|
border: none;
|
|
border-radius: var(--border-radius);
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: var(--primary-color);
|
|
color: white;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #45a049;
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.btn-secondary {
|
|
background-color: #6c757d;
|
|
color: white;
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background-color: #5a6268;
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.btn-sm {
|
|
padding: 6px 12px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
/* Status messages */
|
|
.status-container {
|
|
position: fixed;
|
|
top: 20px;
|
|
right: 20px;
|
|
z-index: 10000;
|
|
max-width: 400px;
|
|
}
|
|
|
|
.status-message {
|
|
padding: 12px 16px;
|
|
margin-bottom: 10px;
|
|
border-radius: var(--border-radius);
|
|
font-size: 14px;
|
|
animation: slideIn 0.3s ease-out;
|
|
}
|
|
|
|
.status-message.success {
|
|
background-color: #d4edda;
|
|
color: #155724;
|
|
border: 1px solid #c3e6cb;
|
|
}
|
|
|
|
.status-message.error {
|
|
background-color: #f8d7da;
|
|
color: #721c24;
|
|
border: 1px solid #f5c6cb;
|
|
}
|
|
|
|
.status-message.info {
|
|
background-color: #cce7ff;
|
|
color: #004085;
|
|
border: 1px solid #b3d7ff;
|
|
}
|
|
|
|
@keyframes slideIn {
|
|
from {
|
|
transform: translateX(100%);
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
transform: translateX(0);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
/* Walk Sheet Styles */
|
|
.walk-sheet-container {
|
|
display: grid;
|
|
grid-template-columns: 2fr 3fr;
|
|
gap: 30px;
|
|
margin-top: 20px;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.walk-sheet-config {
|
|
background-color: #f9f9f9;
|
|
padding: 20px;
|
|
border-radius: var(--border-radius);
|
|
}
|
|
|
|
.walk-sheet-config h3 {
|
|
font-size: 16px;
|
|
margin-bottom: 15px;
|
|
color: var(--dark-color);
|
|
}
|
|
|
|
.qr-code-group {
|
|
background-color: white;
|
|
padding: 15px;
|
|
border-radius: var(--border-radius);
|
|
margin-bottom: 15px;
|
|
border: 1px solid #e0e0e0;
|
|
position: relative;
|
|
}
|
|
|
|
.qr-code-group h4 {
|
|
font-size: 14px;
|
|
margin-bottom: 10px;
|
|
color: #666;
|
|
}
|
|
|
|
.form-row {
|
|
display: grid;
|
|
grid-template-columns: 2fr 1fr;
|
|
gap: 10px;
|
|
}
|
|
|
|
.help-text-inline {
|
|
font-size: 14px;
|
|
color: #666;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
/* Walk Sheet Preview */
|
|
.walk-sheet-preview {
|
|
background-color: #f5f5f5;
|
|
padding: 30px;
|
|
border-radius: var(--border-radius);
|
|
box-shadow: 0 4px 24px rgba(0,0,0,0.10);
|
|
min-width: 350px;
|
|
max-width: 100%;
|
|
margin: 0 auto;
|
|
min-height: 950px; /* Ensure container is tall enough */
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
overflow: auto;
|
|
}
|
|
|
|
.walk-sheet-preview h3 {
|
|
font-size: 16px;
|
|
margin-bottom: 10px;
|
|
color: var(--dark-color);
|
|
}
|
|
|
|
.preview-controls {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.preview-info {
|
|
font-size: 12px;
|
|
color: #666;
|
|
}
|
|
|
|
/* Walk Sheet Page (8.5 x 11 actual size) */
|
|
.walk-sheet-page {
|
|
/* Actual paper size in pixels at 96 DPI (standard screen resolution) */
|
|
width: 816px; /* 8.5 inches * 96 DPI */
|
|
height: 1056px; /* 11 inches * 96 DPI */
|
|
background: white;
|
|
box-shadow: 0 4px 20px rgba(0,0,0,0.15);
|
|
padding: 48px; /* 0.5 inch margins at 96 DPI */
|
|
margin: 0 auto;
|
|
overflow: hidden;
|
|
font-size: 12pt; /* Standard document font size */
|
|
line-height: 1.6;
|
|
position: relative;
|
|
transform: none; /* No scaling by default */
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* Walk Sheet Print Styles */
|
|
@media print {
|
|
body * {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.walk-sheet-page, .walk-sheet-page * {
|
|
visibility: visible;
|
|
}
|
|
|
|
.walk-sheet-page {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
width: 8.5in;
|
|
height: 11in;
|
|
max-width: none;
|
|
padding: 0.5in; /* 0.5 inch margins */
|
|
margin: 0;
|
|
box-shadow: none;
|
|
font-size: 12pt;
|
|
page-break-after: always;
|
|
}
|
|
|
|
/* Ensure QR codes print properly */
|
|
.ws-qr-code img {
|
|
width: 100px !important;
|
|
height: 100px !important;
|
|
-webkit-print-color-adjust: exact;
|
|
print-color-adjust: exact;
|
|
}
|
|
}
|
|
|
|
/* Remove the preview scaling - show at actual size */
|
|
.walk-sheet-preview .walk-sheet-page {
|
|
transform: none;
|
|
transform-origin: top center;
|
|
margin-bottom: 0;
|
|
border-radius: 0; /* Remove rounded corners to look more like paper */
|
|
}
|
|
|
|
/* Walk Sheet Content Styles - adjusted for actual size */
|
|
.ws-header {
|
|
text-align: center;
|
|
margin-bottom: 30px; /* Reduced from 40px */
|
|
border-bottom: 3px solid #333;
|
|
padding-bottom: 15px; /* Reduced from 20px */
|
|
}
|
|
|
|
.ws-title {
|
|
font-size: 24pt; /* Reduced from 28pt */
|
|
font-weight: bold;
|
|
margin: 0;
|
|
color: #000;
|
|
}
|
|
|
|
.ws-subtitle {
|
|
font-size: 12pt; /* Reduced from 14pt */
|
|
color: #444;
|
|
margin: 8px 0 0 0; /* Reduced from 10px */
|
|
}
|
|
|
|
.ws-qr-section {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
margin: 30px 0; /* Reduced from 40px */
|
|
padding: 20px; /* Reduced from 30px */
|
|
background-color: #f5f5f5;
|
|
border-radius: 8px;
|
|
border: 1px solid #ddd;
|
|
}
|
|
|
|
.ws-qr-item {
|
|
text-align: center;
|
|
}
|
|
|
|
.ws-qr-code {
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.ws-qr-code img {
|
|
display: block;
|
|
margin: 0 auto;
|
|
width: 120px; /* Reduced from 140px */
|
|
height: 120px;
|
|
image-rendering: crisp-edges;
|
|
image-rendering: -webkit-crisp-edges;
|
|
image-rendering: pixelated;
|
|
image-rendering: -moz-crisp-edges;
|
|
}
|
|
|
|
.ws-qr-code canvas {
|
|
display: block;
|
|
margin: 0 auto;
|
|
image-rendering: crisp-edges;
|
|
image-rendering: -webkit-crisp-edges;
|
|
image-rendering: pixelated;
|
|
image-rendering: -moz-crisp-edges;
|
|
}
|
|
|
|
.ws-qr-label {
|
|
font-size: 11pt;
|
|
font-weight: bold;
|
|
margin-top: 10px;
|
|
color: #333;
|
|
}
|
|
|
|
.ws-form-section {
|
|
margin-top: 30px; /* Reduced from 40px */
|
|
}
|
|
|
|
.ws-form-row {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 20px;
|
|
margin-bottom: 18px; /* Reduced from 20px */
|
|
}
|
|
|
|
.ws-form-group {
|
|
border-bottom: 2px solid #ccc;
|
|
padding-bottom: 8px;
|
|
}
|
|
|
|
.ws-form-label {
|
|
font-size: 10pt;
|
|
color: #555;
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.ws-form-field {
|
|
height: 30px;
|
|
background-color: #fafafa;
|
|
border: 1px solid #eee;
|
|
}
|
|
|
|
/* Special field styles for circles */
|
|
.ws-form-field.circles {
|
|
height: auto;
|
|
background: none;
|
|
border: none;
|
|
display: flex;
|
|
gap: 15px;
|
|
align-items: center;
|
|
padding: 5px 0;
|
|
}
|
|
|
|
.ws-circle-option {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
font-size: 11pt;
|
|
}
|
|
|
|
.ws-circle {
|
|
width: 24px;
|
|
height: 24px;
|
|
border: 2px solid #333;
|
|
border-radius: 50%;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 10pt;
|
|
font-weight: 500;
|
|
background-color: white;
|
|
}
|
|
|
|
.ws-notes-section {
|
|
margin-top: 30px; /* Reduced from 40px */
|
|
}
|
|
|
|
.ws-notes-label {
|
|
font-size: 11pt;
|
|
font-weight: bold;
|
|
margin-bottom: 10px;
|
|
color: #333;
|
|
}
|
|
|
|
.ws-notes-area {
|
|
width: 100%;
|
|
height: 80px; /* Reduced from 100px */
|
|
border: 2px solid #ccc;
|
|
background-color: #fafafa;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.ws-footer {
|
|
position: absolute;
|
|
bottom: 48px; /* Match padding */
|
|
left: 48px;
|
|
right: 48px;
|
|
text-align: center;
|
|
font-size: 10pt;
|
|
color: #666;
|
|
padding-top: 15px; /* Reduced from 20px */
|
|
border-top: 1px solid #ccc;
|
|
max-height: 80px; /* Ensure footer has enough space */
|
|
overflow: hidden;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
/* QR Code Generation Status */
|
|
.qr-code-group.generating::after {
|
|
content: 'Generating QR Code...';
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
font-size: 12px;
|
|
color: var(--primary-color);
|
|
background: white;
|
|
padding: 2px 8px;
|
|
border-radius: 3px;
|
|
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
/* Loading state for save button */
|
|
.btn:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
/* QR code stored indicator */
|
|
.qr-status {
|
|
font-size: 12px;
|
|
color: var(--success-color);
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.qr-status.stored {
|
|
color: var(--success-color);
|
|
}
|
|
|
|
.qr-status.pending {
|
|
color: var(--warning-color);
|
|
}
|
|
|
|
/* Responsive - Scale down for smaller screens */
|
|
@media (max-width: 1400px) {
|
|
.walk-sheet-preview .walk-sheet-page {
|
|
transform: scale(0.85);
|
|
transform-origin: top center;
|
|
}
|
|
.walk-sheet-preview {
|
|
min-height: 850px;
|
|
}
|
|
}
|
|
|
|
/* Mobile/Small Screen Layout - Stack config above preview */
|
|
@media (max-width: 1200px) {
|
|
.walk-sheet-container {
|
|
display: flex !important; /* Change from grid to flex */
|
|
flex-direction: column !important; /* Stack vertically */
|
|
gap: 20px;
|
|
}
|
|
|
|
.walk-sheet-config {
|
|
order: 1 !important; /* Config first */
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.walk-sheet-preview {
|
|
order: 2 !important; /* Preview second */
|
|
padding: 20px;
|
|
min-height: auto;
|
|
max-width: 100vw;
|
|
overflow-x: auto; /* Allow horizontal scroll if needed */
|
|
display: flex;
|
|
justify-content: center; /* Center the page */
|
|
}
|
|
|
|
.walk-sheet-preview .walk-sheet-page {
|
|
transform: scale(0.75);
|
|
transform-origin: top center;
|
|
margin-bottom: -200px;
|
|
max-width: 100%; /* Prevent overflow */
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1000px) {
|
|
.walk-sheet-preview .walk-sheet-page {
|
|
transform: scale(0.5);
|
|
margin-bottom: -400px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.admin-container {
|
|
flex-direction: column;
|
|
}
|
|
.admin-sidebar {
|
|
width: 100%;
|
|
border-right: none;
|
|
border-bottom: 1px solid #e0e0e0;
|
|
}
|
|
.header .header-actions {
|
|
display: flex !important;
|
|
gap: 10px;
|
|
}
|
|
.header .header-actions .btn {
|
|
padding: 6px 10px;
|
|
font-size: 13px;
|
|
}
|
|
.admin-info {
|
|
font-size: 12px;
|
|
}
|
|
.admin-map-container {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.admin-map {
|
|
height: 220px;
|
|
}
|
|
.admin-content {
|
|
padding: 8px;
|
|
}
|
|
.admin-section {
|
|
padding: 10px;
|
|
}
|
|
.form-row {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.walk-sheet-preview {
|
|
min-width: 0;
|
|
max-width: 100%;
|
|
width: 100%;
|
|
min-height: 500px;
|
|
padding: 10px;
|
|
overflow: hidden; /* Change from overflow-x: hidden to overflow: hidden */
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
/* Container for the scaled page */
|
|
.walk-sheet-preview #walk-sheet-preview-content {
|
|
transform: scale(0.35);
|
|
transform-origin: top center;
|
|
margin: 0 auto;
|
|
width: 816px;
|
|
max-width: none;
|
|
margin-bottom: -600px;
|
|
position: relative;
|
|
left: 50%;
|
|
margin-left: -408px; /* Half of 816px to center it */
|
|
}
|
|
}
|
|
|
|
/* Even smaller screens */
|
|
@media (max-width: 480px) {
|
|
.walk-sheet-preview {
|
|
padding: 5px;
|
|
width: 100%;
|
|
}
|
|
|
|
.walk-sheet-preview #walk-sheet-preview-content {
|
|
transform: scale(0.25);
|
|
margin-bottom: -750px;
|
|
left: 50%;
|
|
margin-left: -408px; /* Keep centered */
|
|
}
|
|
}
|
|
|
|
/* For very large screens, show at full size without scaling */
|
|
@media (min-width: 1600px) {
|
|
.walk-sheet-container {
|
|
gap: 40px;
|
|
grid-template-columns: 1fr 2fr; /* Give more space to preview */
|
|
}
|
|
|
|
.walk-sheet-preview {
|
|
max-width: 100%;
|
|
min-height: 1100px;
|
|
padding: 40px;
|
|
}
|
|
|
|
.walk-sheet-preview .walk-sheet-page {
|
|
transform: none; /* Show at actual size */
|
|
}
|
|
}
|
|
|
|
/* Container adjustments for actual-size preview */
|
|
.walk-sheet-container {
|
|
display: grid;
|
|
grid-template-columns: minmax(300px, 400px) 1fr; /* Adjust proportions */
|
|
gap: 30px;
|
|
margin-top: 20px;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
/* CSS Variables (define these in style.css if not already defined) */
|
|
:root {
|
|
--primary-color: #4CAF50;
|
|
--dark-color: #333;
|
|
--light-color: #f5f5f5;
|
|
--border-radius: 6px;
|
|
--transition: all 0.2s ease;
|
|
--header-height: 60px;
|
|
}
|
|
|
|
/* Crosshair styling */
|
|
.crosshair {
|
|
pointer-events: none;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.crosshair div {
|
|
border-radius: 1px;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
/* Admin map styling */
|
|
.admin-map {
|
|
position: relative;
|
|
cursor: crosshair;
|
|
}
|
|
|
|
.admin-map .leaflet-container {
|
|
cursor: crosshair;
|
|
}
|