765 lines
15 KiB
CSS
765 lines
15 KiB
CSS
/* Make the warehouse locations table scrollable within the card */
|
|
.warehouse-table-scroll {
|
|
max-height: 520px; /* fits inside 640px card with header and hint */
|
|
overflow-y: auto;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* Ensure .main-content is full width for warehouse pages */
|
|
/* Fix horizontal overflow: use 100% width, not 100vw */
|
|
.main-content {
|
|
width: 100% !important;
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
background: transparent !important;
|
|
border-radius: 0 !important;
|
|
box-shadow: none !important;
|
|
}
|
|
/* Normalize box-sizing for all elements */
|
|
*, *::before, *::after {
|
|
box-sizing: border-box;
|
|
}
|
|
/* WAREHOUSE PAGE CSS - FRESH START */
|
|
|
|
/* Reset and override all base styles for warehouse pages */
|
|
.main-content {
|
|
width: 100% !important;
|
|
height: calc(100vh - 60px) !important; /* Full height minus header */
|
|
margin: 0 !important;
|
|
padding: 10px !important; /* 10px margin from page edges */
|
|
background: #f4f4f9 !important; /* Match body background */
|
|
border: none !important;
|
|
box-shadow: none !important;
|
|
box-sizing: border-box !important;
|
|
display: flex !important;
|
|
flex-direction: column !important;
|
|
}
|
|
|
|
/* Main warehouse container - full width with 10px padding */
|
|
.warehouse-page-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
gap: 10px; /* 10px between containers */
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* The 3 main containers with 1:2:1 ratio */
|
|
.warehouse-container-1 {
|
|
flex: 1; /* 1 part */
|
|
background: #f8fafc; /* Theme card background */
|
|
color: #1e293b; /* Theme text color */
|
|
border-radius: 8px;
|
|
padding: 20px;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
box-sizing: border-box;
|
|
overflow-y: auto;
|
|
align-self: flex-start;
|
|
max-height: 640px;
|
|
min-height: 320px;
|
|
}
|
|
|
|
.warehouse-container-2 {
|
|
flex: 2; /* 2 parts */
|
|
background: #f8fafc; /* Theme card background */
|
|
color: #1e293b; /* Theme text color */
|
|
border-radius: 8px;
|
|
padding: 20px;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
box-sizing: border-box;
|
|
overflow-y: auto;
|
|
max-height: 640px;
|
|
}
|
|
|
|
.warehouse-container-3 {
|
|
flex: 1; /* 1 part */
|
|
background: #f8fafc; /* Theme card background */
|
|
color: #1e293b; /* Theme text color */
|
|
border-radius: 8px;
|
|
padding: 20px;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
box-sizing: border-box;
|
|
overflow-y: auto;
|
|
max-height: 640px;
|
|
}
|
|
|
|
/* Form and table styles for warehouse components */
|
|
form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px; /* Reduced gap for compactness */
|
|
}
|
|
|
|
form label {
|
|
font-weight: bold;
|
|
margin-bottom: 2px; /* Reduced margin for compactness */
|
|
}
|
|
|
|
form input, form select {
|
|
padding: 8px 12px;
|
|
border: 1px solid #cbd5e1;
|
|
border-radius: 4px;
|
|
font-size: 14px;
|
|
background: #e2e8f0; /* Theme input background */
|
|
color: #1e293b; /* Theme input text */
|
|
}
|
|
|
|
.btn {
|
|
padding: 8px 16px;
|
|
background-color: #007bff;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.btn:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
|
|
.btn-success {
|
|
background-color: #28a745;
|
|
}
|
|
|
|
.btn-info {
|
|
background-color: #17a2b8;
|
|
}
|
|
|
|
.btn-danger {
|
|
background-color: #dc3545;
|
|
}
|
|
|
|
/* Table styles */
|
|
.scan-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-top: 10px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.scan-table th, .scan-table td {
|
|
border: 1px solid #cbd5e1; /* Theme border color */
|
|
padding: 8px;
|
|
text-align: left;
|
|
}
|
|
|
|
.scan-table th {
|
|
background-color: #e2e8f0; /* Theme input background for headers */
|
|
font-weight: bold;
|
|
color: #334155; /* Theme label color */
|
|
}
|
|
|
|
.location-row {
|
|
cursor: pointer;
|
|
transition: background-color 0.2s;
|
|
}
|
|
|
|
.location-row:hover {
|
|
background-color: #e2e8f0; /* Theme hover background */
|
|
}
|
|
|
|
.location-row.selected {
|
|
background-color: #ffb300 !important;
|
|
color: #222 !important;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* Edit/Delete card styles */
|
|
.edit-delete-card {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.selection-message {
|
|
color: #64748b; /* Slightly lighter theme text */
|
|
font-style: italic;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.selection-info {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.button-group {
|
|
display: flex;
|
|
gap: 10px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
/* Barcode preview */
|
|
#barcode-label-preview {
|
|
width: 8cm;
|
|
height: 4cm;
|
|
border: 2px solid #333;
|
|
background: white;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 10px auto;
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
#barcode-label-preview .location-text {
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
/* Modal styles */
|
|
.modal {
|
|
position: fixed;
|
|
z-index: 1000;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0,0,0,0.5);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.modal-content {
|
|
background-color: #fff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 20px rgba(0,0,0,0.3);
|
|
width: 90%;
|
|
max-width: 500px;
|
|
max-height: 90vh;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.modal-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 16px 20px;
|
|
border-bottom: 1px solid #ddd;
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.modal-body {
|
|
padding: 20px;
|
|
}
|
|
|
|
.close {
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
color: #666;
|
|
}
|
|
|
|
.close:hover {
|
|
color: #333;
|
|
}
|
|
|
|
.confirm-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin: 15px 0;
|
|
}
|
|
|
|
.confirm-table td {
|
|
padding: 8px 12px;
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
|
|
.confirm-table td:first-child {
|
|
width: 30%;
|
|
background-color: #f8f9fa;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.modal-buttons {
|
|
display: flex;
|
|
gap: 10px;
|
|
justify-content: flex-end;
|
|
margin-top: 20px;
|
|
padding-top: 15px;
|
|
border-top: 1px solid #eee;
|
|
}
|
|
|
|
html, body {
|
|
width: 100% !important;
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
}
|
|
.scan-container {
|
|
width: 100vw !important;
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
display: block !important; /* Override any grid from style.css */
|
|
grid-template-columns: unset !important; /* Remove any grid columns */
|
|
gap: unset !important; /* Remove any gap */
|
|
max-width: 100vw !important; /* Override max-width from style.css */
|
|
box-shadow: none !important; /* Remove box shadow */
|
|
border-radius: 0 !important; /* Remove border radius */
|
|
}
|
|
|
|
/* Full-width container for warehouse pages - avoids scan-container restrictions */
|
|
.warehouse-full-container {
|
|
width: 100% !important;
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
display: block !important;
|
|
box-sizing: border-box;
|
|
background: transparent !important;
|
|
}
|
|
|
|
/* Container card with left/right margins */
|
|
.warehouse-container-card {
|
|
margin-left: 15px;
|
|
margin-right: 15px;
|
|
background: #fff;
|
|
border-radius: 8px;
|
|
padding: 20px;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
width: calc(100% - 30px);
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* 3-column layout for warehouse create locations */
|
|
.warehouse-grid {
|
|
display: grid !important;
|
|
grid-template-columns: 1fr 2fr 1fr !important;
|
|
gap: 20px;
|
|
margin: 0;
|
|
min-height: auto;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* Make cards equal height in grid with higher specificity */
|
|
.warehouse-grid .card {
|
|
height: fit-content;
|
|
align-self: start;
|
|
width: 100% !important;
|
|
max-width: none !important;
|
|
margin-left: 8px;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
/* Responsive grid - collapse to single column on smaller screens */
|
|
@media (max-width: 1024px) {
|
|
.warehouse-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.warehouse-grid {
|
|
gap: 15px;
|
|
}
|
|
|
|
.scan-container {
|
|
padding: 15px;
|
|
}
|
|
}
|
|
|
|
.card {
|
|
background: #fff;
|
|
border-radius: 8px;
|
|
padding: 20px;
|
|
margin: 0;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.scan-form-card {
|
|
max-width: 600px;
|
|
margin: 0 auto 20px auto;
|
|
}
|
|
|
|
.scan-table-card {
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.scan-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-top: 20px;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.scan-table th, .scan-table td {
|
|
border: 1px solid #ddd;
|
|
padding: 8px;
|
|
text-align: center;
|
|
}
|
|
|
|
.scan-table th {
|
|
background-color: #f4f4f4;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* Location row selection styles */
|
|
.location-row {
|
|
cursor: pointer;
|
|
transition: background-color 0.2s;
|
|
}
|
|
|
|
.location-row:hover {
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
tr.location-row.selected, .location-row.selected td {
|
|
background-color: #ffb300 !important;
|
|
color: #222 !important;
|
|
font-weight: bold;
|
|
box-shadow: 0 2px 8px rgba(255,179,0,0.12);
|
|
border-left: 4px solid #ff9800;
|
|
transition: background 0.2s, color 0.2s;
|
|
}
|
|
|
|
/* Print section styles */
|
|
.print-section {
|
|
margin-top: 24px;
|
|
padding: 16px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 5px;
|
|
background-color: #f9f9f9;
|
|
}
|
|
|
|
/* Edit/Delete card styles - compact version */
|
|
.edit-delete-card {
|
|
margin-top: 16px;
|
|
padding: 12px 16px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 5px;
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.edit-delete-card h3 {
|
|
font-size: 1.05em;
|
|
margin: 0 0 8px 0;
|
|
color: #333;
|
|
}
|
|
|
|
.edit-delete-card .selection-message {
|
|
color: #666;
|
|
font-style: italic;
|
|
margin-bottom: 8px;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.edit-delete-card .selection-info {
|
|
margin-bottom: 8px;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.edit-delete-card .button-group {
|
|
display: flex;
|
|
gap: 10px;
|
|
justify-content: center;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.edit-delete-card .btn {
|
|
font-size: 11px;
|
|
padding: 5px 12px;
|
|
}
|
|
|
|
/* Barcode label preview */
|
|
#barcode-label-preview {
|
|
width: 8cm;
|
|
height: 4cm;
|
|
border: 2px solid #333;
|
|
background: white;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 10px auto;
|
|
position: relative;
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.07);
|
|
}
|
|
|
|
#barcode-label-preview .location-text {
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
#barcode-label-preview #location-barcode {
|
|
display: block;
|
|
margin: 0 auto;
|
|
max-width: 90%;
|
|
max-height: 70%;
|
|
}
|
|
|
|
#barcode-label-preview #barcode-placeholder {
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Dark mode for warehouse */
|
|
body.dark-mode .card {
|
|
background: #2d2d2d;
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
body.dark-mode .scan-table {
|
|
background-color: #1e1e1e;
|
|
color: #fff;
|
|
}
|
|
|
|
body.dark-mode .scan-table th {
|
|
background-color: #333;
|
|
}
|
|
|
|
body.dark-mode .scan-table td {
|
|
color: #ddd;
|
|
}
|
|
|
|
body.dark-mode .scan-table tr:nth-child(even) {
|
|
background-color: #2a2a2a;
|
|
}
|
|
|
|
body.dark-mode .print-section {
|
|
background-color: #333;
|
|
border-color: #555;
|
|
}
|
|
|
|
body.dark-mode .edit-delete-card {
|
|
background-color: #333;
|
|
border-color: #555;
|
|
}
|
|
|
|
body.dark-mode .edit-delete-card h3 {
|
|
color: #fff;
|
|
}
|
|
|
|
body.dark-mode .edit-delete-card .selection-message {
|
|
color: #ccc;
|
|
}
|
|
|
|
/* Modal Styles */
|
|
.modal {
|
|
position: fixed;
|
|
z-index: 1000;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0,0,0,0.5);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.modal-content {
|
|
background-color: #fff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 20px rgba(0,0,0,0.3);
|
|
width: 90%;
|
|
max-width: 500px;
|
|
max-height: 90vh;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.modal-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 16px 20px;
|
|
border-bottom: 1px solid #ddd;
|
|
background-color: #f8f9fa;
|
|
border-radius: 8px 8px 0 0;
|
|
}
|
|
|
|
.modal-header h3 {
|
|
margin: 0;
|
|
color: #333;
|
|
}
|
|
|
|
.close {
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
color: #666;
|
|
line-height: 1;
|
|
}
|
|
|
|
.close:hover {
|
|
color: #333;
|
|
}
|
|
|
|
.modal-body {
|
|
padding: 20px;
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.form-group label {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
font-weight: bold;
|
|
color: #333;
|
|
}
|
|
|
|
.form-group input {
|
|
width: 100%;
|
|
padding: 8px 12px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
font-size: 14px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.modal-buttons {
|
|
display: flex;
|
|
gap: 10px;
|
|
justify-content: flex-end;
|
|
margin-top: 20px;
|
|
padding-top: 15px;
|
|
border-top: 1px solid #eee;
|
|
}
|
|
|
|
.confirm-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin: 15px 0;
|
|
}
|
|
|
|
.confirm-table td {
|
|
padding: 8px 12px;
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
|
|
.confirm-table td:first-child {
|
|
width: 30%;
|
|
background-color: #f8f9fa;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.btn-secondary {
|
|
background-color: #6c757d;
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background-color: #5a6268;
|
|
}
|
|
|
|
/* Dark mode for modals */
|
|
body.dark-mode .modal-content {
|
|
background-color: #2d2d2d;
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
body.dark-mode .modal-header {
|
|
background-color: #333;
|
|
border-bottom-color: #555;
|
|
}
|
|
|
|
body.dark-mode .modal-header h3 {
|
|
color: #fff;
|
|
}
|
|
|
|
body.dark-mode .close {
|
|
color: #ccc;
|
|
}
|
|
|
|
body.dark-mode .close:hover {
|
|
color: #fff;
|
|
}
|
|
|
|
body.dark-mode .form-group input {
|
|
background-color: #333;
|
|
border-color: #555;
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
body.dark-mode .confirm-table td:first-child {
|
|
background-color: #333;
|
|
}
|
|
|
|
body.dark-mode .modal-buttons {
|
|
border-top-color: #555;
|
|
}
|
|
|
|
/* ENHANCED DARK MODE SUPPORT FOR NEW WAREHOUSE LAYOUT */
|
|
body.dark-mode .main-content {
|
|
background: #121212 !important; /* Match body dark background */
|
|
}
|
|
|
|
body.dark-mode .warehouse-container-1,
|
|
body.dark-mode .warehouse-container-2,
|
|
body.dark-mode .warehouse-container-3 {
|
|
background: #1e1e1e !important; /* Match header dark background */
|
|
color: #e0e0e0 !important; /* Match body dark text */
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.3);
|
|
}
|
|
|
|
body.dark-mode form label {
|
|
color: #e0e0e0 !important; /* Match body dark text */
|
|
}
|
|
|
|
body.dark-mode form input,
|
|
body.dark-mode form select {
|
|
background: #2d2d2d !important; /* Slightly lighter than containers */
|
|
color: #e0e0e0 !important; /* Match body dark text */
|
|
border: 1px solid #444 !important;
|
|
}
|
|
|
|
body.dark-mode .btn {
|
|
background-color: #4299e1 !important;
|
|
}
|
|
|
|
body.dark-mode .btn:hover {
|
|
background-color: #3182ce !important;
|
|
}
|
|
|
|
body.dark-mode .btn-success {
|
|
background-color: #48bb78 !important;
|
|
}
|
|
|
|
body.dark-mode .btn-info {
|
|
background-color: #38b2ac !important;
|
|
}
|
|
|
|
body.dark-mode .btn-danger {
|
|
background-color: #f56565 !important;
|
|
}
|
|
|
|
body.dark-mode .scan-table {
|
|
background-color: #1e1e1e !important; /* Match header background */
|
|
color: #e0e0e0 !important; /* Match body dark text */
|
|
}
|
|
|
|
body.dark-mode .scan-table th {
|
|
background-color: #2d2d2d !important; /* Slightly lighter */
|
|
color: #e0e0e0 !important; /* Match body dark text */
|
|
border: 1px solid #444 !important;
|
|
}
|
|
|
|
body.dark-mode .scan-table td {
|
|
color: #e0e0e0 !important; /* Match body dark text */
|
|
border: 1px solid #444 !important;
|
|
}
|
|
|
|
body.dark-mode .location-row:hover {
|
|
background-color: #2d2d2d !important; /* Slightly lighter than table */
|
|
}
|
|
|
|
body.dark-mode .location-row.selected {
|
|
background-color: #ed8936 !important;
|
|
color: #1a202c !important;
|
|
}
|
|
|
|
body.dark-mode .selection-message {
|
|
color: #999 !important; /* Lighter gray for secondary text */
|
|
}
|
|
|
|
body.dark-mode .selection-info {
|
|
color: #e0e0e0 !important; /* Match body dark text */
|
|
}
|
|
|
|
body.dark-mode #barcode-label-preview {
|
|
background: #f8fafc !important; /* Keep white for readability */
|
|
border: 2px solid #444 !important;
|
|
} |