620 lines
11 KiB
CSS
620 lines
11 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: 20px;
|
|
border-radius: var(--border-radius);
|
|
box-shadow: 0 4px 24px rgba(0,0,0,0.10);
|
|
min-width: 350px;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
height: 700px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
overflow-x: 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 preview) */
|
|
.walk-sheet-page {
|
|
width: 100%;
|
|
max-width: 425px; /* Half of 8.5 inches at 100dpi */
|
|
aspect-ratio: 8.5 / 11;
|
|
background: white;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
|
padding: 40px; /* Match print padding */
|
|
margin: 0 auto;
|
|
overflow: auto;
|
|
font-size: 12px; /* Match print font size */
|
|
line-height: 1.4;
|
|
position: relative;
|
|
}
|
|
|
|
/* 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;
|
|
}
|
|
}
|
|
|
|
/* Adjust preview scaling */
|
|
.walk-sheet-preview .walk-sheet-page {
|
|
transform: scale(0.75);
|
|
transform-origin: top center;
|
|
margin-bottom: -25%;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.12);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
/* Walk Sheet Content Styles */
|
|
.ws-header {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
border-bottom: 2px solid #333;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.ws-title {
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
margin: 0;
|
|
}
|
|
|
|
.ws-subtitle {
|
|
font-size: 14px;
|
|
color: #666;
|
|
margin: 5px 0 0 0;
|
|
}
|
|
|
|
.ws-qr-section {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
margin: 20px 0;
|
|
padding: 15px;
|
|
background-color: #f9f9f9;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.ws-qr-item {
|
|
text-align: center;
|
|
}
|
|
|
|
.ws-qr-code {
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.ws-qr-code img {
|
|
display: block;
|
|
margin: 0 auto;
|
|
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: 10px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.ws-form-section {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.ws-form-row {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.ws-form-group {
|
|
border-bottom: 1px solid #ccc;
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
.ws-form-label {
|
|
font-size: 9px;
|
|
color: #666;
|
|
display: block;
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
.ws-form-field {
|
|
height: 20px;
|
|
background-color: #f9f9f9;
|
|
}
|
|
|
|
.ws-notes-section {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.ws-notes-label {
|
|
font-size: 10px;
|
|
font-weight: bold;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.ws-notes-area {
|
|
width: 100%;
|
|
height: 60px;
|
|
border: 1px solid #ccc;
|
|
background-color: #f9f9f9;
|
|
}
|
|
|
|
.ws-footer {
|
|
position: absolute;
|
|
bottom: 20px;
|
|
left: 20px;
|
|
right: 20px;
|
|
text-align: center;
|
|
font-size: 9px;
|
|
color: #666;
|
|
padding-top: 10px;
|
|
border-top: 1px solid #ccc;
|
|
}
|
|
|
|
/* 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 */
|
|
@media (max-width: 1200px) {
|
|
.walk-sheet-container {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.walk-sheet-preview {
|
|
order: -1;
|
|
max-width: 100vw;
|
|
height: 500px;
|
|
}
|
|
.walk-sheet-preview .walk-sheet-page {
|
|
transform: scale(0.65);
|
|
}
|
|
}
|
|
|
|
@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: 100vw;
|
|
height: 350px;
|
|
padding: 8px;
|
|
}
|
|
.walk-sheet-preview .walk-sheet-page {
|
|
transform: scale(0.48);
|
|
min-width: 320px;
|
|
margin-bottom: 0;
|
|
}
|
|
.walk-sheet-page {
|
|
font-size: 8px;
|
|
padding: 8px;
|
|
}
|
|
}
|
|
|
|
/* 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;
|
|
}
|