new v3 layout

This commit is contained in:
2025-09-23 12:15:49 +02:00
parent e38f6bbe1d
commit 818d98b504
3 changed files with 313 additions and 271 deletions
@@ -1,159 +1,156 @@
/* Cpeprovisioning.css */
.cpe-provisioning-page .filter-card {
margin-bottom: 1rem;
body {
overflow: hidden;
}
/* --- Page & Filter Layout --- */
.cpe-provisioning-page .filter-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 1rem;
align-items: end;
}
.cpe-provisioning-page .filter-actions {
display: flex;
gap: 0.5rem;
padding-top: 1.5rem; /* Align with form labels */
padding-bottom: 0.25rem;
}
.loading-indicator, .no-results-indicator {
text-align: center;
padding: 4rem 2rem;
color: #6c757d;
}
.cpe-provisioning-page .cpe-details-grid {
/* --- Cards Container --- */
.cpe-cards-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
grid-template-columns: 1fr;
gap: 1rem;
padding: 1rem;
background-color: #f8f9fa;
border-top: 1px solid #dee2e6;
margin-top: 1.5rem;
}
.cpe-provisioning-page .section-title {
grid-column: 1 / -1;
/* --- Single Card Styling --- */
.cpe-card {
background-color: #fff;
border: 1px solid #dee2e6;
border-left: 5px solid transparent;
border-radius: 0.5rem;
transition: box-shadow 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.cpe-card.is-dirty {
border-left-color: #f7c423; /* Yellow accent for dirty */
}
.cpe-card:hover {
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
/* --- Card Header --- */
.cpe-card-header {
display: grid;
grid-template-columns: minmax(200px, 1.5fr) 2fr auto;
align-items: center;
gap: 1.5rem;
padding: 0.75rem 1rem;
background-color: #f8f9fa;
border-bottom: 1px solid #e9ecef;
}
.cpe-card-header .customer-info strong {
color: #005384;
font-size: 1.1rem;
}
.cpe-card-header .customer-info small {
display: block;
font-size: 0.8rem;
}
.location-contact-header {
font-size: 0.85rem;
color: #495057;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 0.1rem 1rem;
}
.header-actions {
display: flex;
align-items: center;
gap: 1rem;
font-size: 1.1rem;
color: #005384;
}
.header-actions a { color: inherit; transition: color 0.2s; }
.header-actions a:hover { color: #f7c423; }
/* --- Card Content Grid --- */
.cpe-card-content {
padding: 0.75rem 1rem;
display: grid;
grid-template-columns: minmax(280px, 1.25fr) minmax(280px, 1.25fr) minmax(280px, 1.5fr);
gap: 1rem 1.5rem;
}
.content-column {
padding-top: 0.5rem;
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.content-column.action-column {
justify-content: space-between;
}
.content-column h5 {
font-size: 0.8rem;
font-weight: 600;
color: #005384;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 0.25rem;
padding-bottom: 0.25rem;
border-bottom: 1px solid #e9ecef;
}
.content-column p {
font-size: 0.9rem;
margin-bottom: 0.25rem;
line-height: 1.4;
}
.content-column .form-group, .content-column .tt-select-modern {
margin-bottom: 0;
}
.action-column .btn {
width: 100%;
margin-top: 0.5rem;
margin-bottom: 0;
padding-bottom: 0.5rem;
border-bottom: 2px solid #f7c423;
}
.cpe-provisioning-page .info-pills {
.shipping-dims {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 0.5rem 0.75rem;
}
.finish-wrapper {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
padding: 0.5rem 0;
}
.cpe-provisioning-page .info-pill {
background-color: #e9ecef;
color: #495057;
padding: 0.25rem 0.6rem;
border-radius: 1rem;
font-size: 0.8rem;
display: inline-flex;
align-items: center;
gap: 0.3rem;
white-space: nowrap;
justify-content: space-between;
padding: 0.25rem;
background-color: #f1f3f5;
border-radius: 0.25rem;
}
.mt-auto {
margin-top: auto !important;
}
.cpe-provisioning-page .info-pill i {
color: #005384;
}
/* Ensure form groups don't have excessive bottom margin in the grid */
.cpe-provisioning-page .cpe-details-grid .form-group {
margin-bottom: 0;
}
/* Save button alignment */
.cpe-provisioning-page .save-button-container {
grid-column: 1 / -1;
display: flex;
justify-content: flex-end;
margin-top: 1rem;
}
/* For tt-table expanded row content */
.tt-table tbody tr[style*="display: table-row;"] > td {
background-color: #f8f9fa !important;
padding: 0;
}
/* Change tracking */
.cpe-provisioning-page .is-dirty {
background-color: #fff3cd; /* A light yellow to indicate changes */
border-color: #ffeeba;
}
.cpe-provisioning-page .form-group-condensed .col-form-label {
padding-bottom: 0;
}
/* --- VLAN Chip Styling --- */
.vlans-container { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tt-chip { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 16px; background-color: #f1f3f5; border: 1px solid #dee2e6; font-size: 0.8em; white-space: nowrap; }
.tt-chip.is-checked { background-color: #e7f5ff; border-color: #a5d8ff; color: #1c7ed6; font-weight: 500; }
.tt-chip > * + * { margin-left: 6px; }
.tt-chip input[type="checkbox"] { margin: 0; cursor: pointer; }
/* Responsive adjustments */
@media (max-width: 768px) {
.cpe-provisioning-page .filter-grid,
.cpe-provisioning-page .cpe-details-grid {
grid-template-columns: 1fr; /* Stack on smaller screens */
}
.cpe-provisioning-page .filter-actions {
padding-top: 0;
flex-direction: column;
}
.cpe-provisioning-page .filter-actions .btn {
width: 100%;
@media (max-width: 1400px) {
.cpe-card-content {
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
}
.vlans-container {
display: flex;
flex-wrap: wrap;
/*center items in the middle of the full width*/
justify-content: center;
/*flex-direction: column;*/
gap: 0.5rem;
}
/* TODO: MOVE TT-CHIP TO OWN FILE */
.tt-chip {
display: inline-flex;
align-items: center;
padding: 5px 12px;
border-radius: 16px; /* Pill shape */
background-color: #f1f3f5; /* Light grey for unchecked state */
border: 1px solid #dee2e6;
font-size: 0.875em; /* 14px if base is 16px */
margin: 3px;
transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
cursor: default;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 200px;
}
.tt-chip.is-checked {
background-color: #e7f5ff; /* A pleasant light blue for the checked state */
border-color: #a5d8ff;
color: #1c7ed6;
font-weight: 500;
}
/* Add a subtle shadow on hover for interactivity */
.tt-chip:hover {
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
/* Style elements passed into the slot for consistent spacing and alignment */
.tt-chip > * + * {
margin-left: 8px;
}
.tt-chip input[type="checkbox"] {
margin: 0;
width: 15px;
height: 15px;
cursor: pointer;
}
@media (max-width: 992px) {
.cpe-card-header {
grid-template-columns: 1fr;
gap: 0.75rem;
}
}