530 lines
10 KiB
CSS
530 lines
10 KiB
CSS
/* modules/gift-list/gift-list.css */
|
|
|
|
.pf-gift-list h1 {
|
|
font-size: 1.6rem;
|
|
font-weight: 800;
|
|
margin: 0;
|
|
color: var(--text-main);
|
|
}
|
|
.cl-titlebar {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 15px;
|
|
margin-bottom: 20px;
|
|
border-bottom: 1px solid var(--border-light);
|
|
padding-bottom: 15px;
|
|
}
|
|
.cl-view-switch {
|
|
display: flex;
|
|
padding: 4px;
|
|
border-radius: 8px;
|
|
border: 1px solid var(--border-light);
|
|
box-shadow: var(--shadow-sm);
|
|
}
|
|
.cl-view-btn {
|
|
padding: 6px 16px;
|
|
border-radius: 6px;
|
|
text-decoration: none;
|
|
font-size: 0.85rem;
|
|
font-weight: 600;
|
|
color: var(--text-muted);
|
|
transition: 0.2s;
|
|
}
|
|
.cl-view-btn.is-active {
|
|
background: var(--text-main);
|
|
color: var(--bg-panel);
|
|
}
|
|
|
|
/* === FILTRES === */
|
|
.pf-filter-bar {
|
|
display: flex;
|
|
gap: 10px;
|
|
align-items: center;
|
|
margin-bottom: 24px;
|
|
position: sticky;
|
|
top: 64px;
|
|
z-index: 50;
|
|
flex-wrap: wrap;
|
|
}
|
|
.pf-filter-label {
|
|
font-size: 0.85rem;
|
|
font-weight: 600;
|
|
color: var(--text-muted);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
/* === SECTIONS ENFANTS === */
|
|
.pf-child-section {
|
|
margin-bottom: 30px;
|
|
background: var(--bg-panel);
|
|
padding: 20px;
|
|
border-radius: 16px;
|
|
border: 1px solid var(--border-light);
|
|
box-shadow: var(--shadow-sm);
|
|
}
|
|
.pf-child-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 15px;
|
|
}
|
|
.pf-child-header h3 {
|
|
margin: 0;
|
|
font-size: 1.3rem;
|
|
color: var(--text-main);
|
|
}
|
|
|
|
/* === BARRE DES TOTAUX (PILLS) === */
|
|
.pf-child-totals-bar {
|
|
display: flex;
|
|
gap: 8px;
|
|
overflow-x: auto;
|
|
padding-bottom: 12px;
|
|
margin-bottom: 15px;
|
|
border-bottom: 1px solid var(--border-light);
|
|
scrollbar-width: none;
|
|
}
|
|
.pf-child-totals-bar::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
.pf-summary-pill {
|
|
white-space: nowrap;
|
|
background: var(--bg-page);
|
|
padding: 4px 12px;
|
|
border-radius: 50px;
|
|
font-size: 0.8rem;
|
|
font-weight: 700;
|
|
color: var(--text-muted);
|
|
border: 1px solid var(--border-strong);
|
|
transition: opacity 0.2s;
|
|
}
|
|
|
|
/* === FEED DES CARTES CADEAUX === */
|
|
.pf-gift-feed {
|
|
display: grid;
|
|
gap: 12px;
|
|
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
|
|
}
|
|
.pf-gift-card-compact {
|
|
background: var(--bg-panel);
|
|
border-radius: 10px;
|
|
border: 1px solid var(--border-light);
|
|
padding: 12px;
|
|
position: relative;
|
|
transition: 0.2s;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100px;
|
|
}
|
|
.pf-gift-card-compact:hover {
|
|
border-color: var(--border-strong);
|
|
box-shadow: var(--shadow-md);
|
|
}
|
|
.pf-gift-title {
|
|
font-weight: 600;
|
|
color: var(--text-main);
|
|
font-size: 0.95rem;
|
|
margin: 0 0 10px 0;
|
|
line-height: 1.3;
|
|
word-break: break-word;
|
|
}
|
|
.pf-gift-link {
|
|
text-decoration: none;
|
|
margin-left: 4px;
|
|
}
|
|
.pf-gift-footer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-end;
|
|
margin-top: auto;
|
|
}
|
|
.pf-gift-price {
|
|
font-weight: 800;
|
|
color: var(--success);
|
|
font-size: 1rem;
|
|
}
|
|
.pf-pill-adult {
|
|
font-size: 0.7rem;
|
|
font-weight: 700;
|
|
background: #e0f2fe;
|
|
color: #0369a1;
|
|
padding: 2px 6px;
|
|
border-radius: 4px;
|
|
}
|
|
.pf-gift-payer {
|
|
font-size: 0.7rem;
|
|
color: #ef4444;
|
|
font-weight: 600;
|
|
font-style: italic;
|
|
margin-top: 5px;
|
|
}
|
|
.pf-gift-actions {
|
|
display: flex;
|
|
gap: 4px;
|
|
}
|
|
|
|
/* === TRICOUNT / LIQUIDATIONS === */
|
|
.pf-tricount-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
.pf-tricount-item {
|
|
background: var(--bg-panel);
|
|
padding: 12px 15px;
|
|
border: 1px solid var(--border-light);
|
|
border-radius: 8px;
|
|
margin-bottom: 8px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-size: 0.95rem;
|
|
}
|
|
.cl-debt-matrix th:first-child,
|
|
.cl-debt-matrix td:first-child {
|
|
position: sticky;
|
|
left: 0;
|
|
background: var(--bg-page);
|
|
z-index: 2;
|
|
border-right: 2px solid var(--border-light);
|
|
}
|
|
.gift-tricount-section {
|
|
border: 1px solid var(--border-light);
|
|
margin-top: 40px;
|
|
}
|
|
.gift-tricount-title {
|
|
margin-top: 0;
|
|
color: var(--text-main);
|
|
font-size: 1.3rem;
|
|
}
|
|
.gift-tricount-success {
|
|
color: var(--success);
|
|
font-weight: 700;
|
|
margin-bottom: 0;
|
|
}
|
|
.gift-tricount-debt-amount {
|
|
color: var(--danger);
|
|
}
|
|
.gift-matrix-details {
|
|
margin-top: 20px;
|
|
padding: 12px;
|
|
border-radius: 8px;
|
|
background: var(--bg-panel);
|
|
border: 1px solid var(--border-light);
|
|
}
|
|
.gift-matrix-summary {
|
|
cursor: pointer;
|
|
font-weight: 600;
|
|
color: var(--text-muted);
|
|
outline: none;
|
|
}
|
|
.gift-matrix-wrapper {
|
|
overflow-x: auto;
|
|
margin-top: 15px;
|
|
}
|
|
.cl-debt-matrix th.sticky-col.bg-header {
|
|
background: var(--bg-page);
|
|
}
|
|
.cl-debt-matrix th.sticky-col.bg-body {
|
|
background: var(--bg-panel);
|
|
}
|
|
.gift-cell-danger {
|
|
color: var(--danger);
|
|
font-weight: 700;
|
|
background: var(--bg-danger-soft);
|
|
}
|
|
.gift-cell-muted {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
/* === TYPOGRAPHIE & ICONES === */
|
|
.cl-occasion-icon {
|
|
font-size: 1.4rem;
|
|
margin-right: 8px;
|
|
}
|
|
.cl-occasion-title {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.gift-empty-state {
|
|
color: var(--text-muted);
|
|
font-size: 0.9rem;
|
|
font-style: italic;
|
|
margin: 0;
|
|
}
|
|
|
|
/* === COMPOSANT MULTI-SELECT VANILLA === */
|
|
.pf-multi-select {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
.pf-ms-trigger {
|
|
padding: 6px 16px;
|
|
border-radius: 20px;
|
|
border: 1px solid var(--border-light);
|
|
backdrop-filter: blur(8px);
|
|
font-size: 0.85rem;
|
|
font-weight: 600;
|
|
color: var(--text-main);
|
|
cursor: pointer;
|
|
box-shadow: var(--shadow-sm);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
user-select: none;
|
|
}
|
|
.pf-ms-trigger:hover {
|
|
border-color: #cbd5e1;
|
|
}
|
|
.pf-ms-trigger.active {
|
|
border-color: var(--primary);
|
|
box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
|
|
}
|
|
.pf-ms-dropdown {
|
|
display: none;
|
|
position: absolute;
|
|
top: calc(100% + 8px);
|
|
left: 0;
|
|
background: var(--bg-panel);
|
|
border: 1px solid var(--border-light);
|
|
border-radius: 12px;
|
|
padding: 8px;
|
|
box-shadow: var(--shadow-lg);
|
|
z-index: 100;
|
|
min-width: 200px;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
max-height: 60vh;
|
|
overflow-y: auto;
|
|
}
|
|
.pf-ms-dropdown.open {
|
|
display: flex;
|
|
animation: popDown 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
|
|
}
|
|
.pf-ms-option {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-size: 0.85rem;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
padding: 8px 10px;
|
|
border-radius: 6px;
|
|
color: var(--text-main);
|
|
transition: 0.2s;
|
|
}
|
|
.pf-ms-option:hover {
|
|
background: var(--bg-page);
|
|
}
|
|
.pf-ms-option input[type="checkbox"] {
|
|
margin: 0;
|
|
cursor: pointer;
|
|
accent-color: var(--primary);
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
.pf-ms-option.is-all {
|
|
font-weight: 700;
|
|
border-bottom: 1px solid var(--border-light);
|
|
padding-bottom: 10px;
|
|
margin-bottom: 4px;
|
|
border-radius: 6px 6px 0 0;
|
|
}
|
|
|
|
@keyframes popDown {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(-10px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.pf-child-section {
|
|
padding: 15px;
|
|
}
|
|
.pf-filter-bar {
|
|
padding: 0 5px;
|
|
}
|
|
.pf-filter-label {
|
|
display: none;
|
|
}
|
|
.pf-gift-feed {
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
.pf-gift-title {
|
|
font-size: 0.85rem;
|
|
}
|
|
.pf-gift-price {
|
|
font-size: 0.9rem;
|
|
}
|
|
}
|
|
@media (max-width: 400px) {
|
|
.pf-gift-feed {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
/* === MODALE EDITION CADEAU === */
|
|
.gift-modal-custom-content {
|
|
max-width: 500px;
|
|
width: 95%;
|
|
}
|
|
.gift-modal-custom-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
.gift-modal-custom-title {
|
|
margin: 0;
|
|
border: none;
|
|
padding: 0;
|
|
}
|
|
.gift-modal-close-btn {
|
|
background: none;
|
|
border: none;
|
|
font-size: 1.8rem;
|
|
cursor: pointer;
|
|
color: var(--text-muted);
|
|
line-height: 1;
|
|
}
|
|
.gift-form-group-spaced {
|
|
margin-bottom: 25px;
|
|
}
|
|
.gift-modal-custom-footer {
|
|
padding-top: 15px;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 10px;
|
|
border-top: 1px solid var(--border-light);
|
|
}
|
|
|
|
.gl-pane {
|
|
display: none;
|
|
animation: fadeIn 0.3s ease;
|
|
}
|
|
.gl-pane.active {
|
|
display: block;
|
|
}
|
|
.gl-pane-title {
|
|
margin-top: 0;
|
|
color: var(--text-main);
|
|
font-size: 1.1rem;
|
|
margin-bottom: 10px;
|
|
}
|
|
.gl-pane-desc {
|
|
font-size: 0.85rem;
|
|
color: var(--text-muted);
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.gl-list-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 10px 14px;
|
|
background: var(--bg-panel);
|
|
border-radius: var(--radius);
|
|
border: 1px solid var(--border-light);
|
|
margin-bottom: 8px;
|
|
}
|
|
.gl-form-row {
|
|
display: flex;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
align-items: flex-end;
|
|
margin-top: 15px;
|
|
}
|
|
.gl-divider {
|
|
margin: 1.5rem 0;
|
|
border: 0;
|
|
border-bottom: 1px solid var(--border-light);
|
|
}
|
|
.gl-input-sm {
|
|
flex: 0 0 60px;
|
|
}
|
|
.gl-input-md {
|
|
flex: 1;
|
|
min-width: 120px;
|
|
}
|
|
|
|
.gift-loader {
|
|
text-align: center;
|
|
padding: 20px;
|
|
color: var(--text-muted);
|
|
font-style: italic;
|
|
}
|
|
.align-center {
|
|
align-items: center;
|
|
}
|
|
|
|
/* =========================================
|
|
COMPOSANTS MODALE & EDITION IN-PLACE
|
|
========================================= */
|
|
|
|
/* Sélecteur d'émojis horizontal */
|
|
.emoji-picker {
|
|
display: flex;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
}
|
|
.emoji-option {
|
|
cursor: pointer;
|
|
width: 38px;
|
|
height: 38px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 1px solid var(--border-light);
|
|
border-radius: 8px;
|
|
font-size: 1.4rem;
|
|
transition: all 0.2s;
|
|
background: transparent;
|
|
user-select: none;
|
|
}
|
|
.emoji-option:hover {
|
|
background: var(--bg-page);
|
|
border-color: #cbd5e1;
|
|
}
|
|
.emoji-option.selected {
|
|
border-color: var(--primary);
|
|
background: var(
|
|
--bg-subtle
|
|
); /* ou un bleu très clair rgba(59, 130, 246, 0.1) */
|
|
box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
|
|
}
|
|
|
|
/* Alignement des boutons d'ajout */
|
|
.modal-actions-right {
|
|
display: flex;
|
|
gap: 10px;
|
|
justify-content: flex-end;
|
|
width: 100%;
|
|
margin-top: 10px;
|
|
padding-top: 15px;
|
|
border-top: 1px solid var(--border-light);
|
|
}
|
|
|
|
/* Édition In-Place sur les lignes de la liste */
|
|
.inline-edit-form {
|
|
display: flex;
|
|
gap: 8px;
|
|
align-items: center;
|
|
background: var(--bg-subtle);
|
|
padding: 8px 12px;
|
|
border-radius: 8px;
|
|
width: 100%;
|
|
flex-wrap: wrap; /* Évite que ça dépasse sur mobile */
|
|
}
|
|
.inline-edit-form .pf-input {
|
|
margin: 0;
|
|
}
|