844 lines
19 KiB
CSS
844 lines
19 KiB
CSS
/**
|
|
* Styles CSS pour l'interface d'administration B-PAY Bankily
|
|
* Fichier: assets/bankily-admin.css
|
|
* Version: 1.0.0
|
|
*/
|
|
|
|
/* === VARIABLES CSS === */
|
|
:root {
|
|
--bankily-primary: #007cba;
|
|
--bankily-success: #28a745;
|
|
--bankily-warning: #ffc107;
|
|
--bankily-danger: #dc3545;
|
|
--bankily-info: #17a2b8;
|
|
--bankily-light: #f8f9fa;
|
|
--bankily-dark: #343a40;
|
|
--bankily-border: #dee2e6;
|
|
--bankily-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
--bankily-shadow-lg: 0 4px 8px rgba(0,0,0,0.15);
|
|
--bankily-border-radius: 8px;
|
|
--bankily-transition: all 0.3s ease;
|
|
}
|
|
|
|
/* === LAYOUT GÉNÉRAL === */
|
|
.wrap .bankily-stats-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
|
gap: 20px;
|
|
margin: 20px 0 30px 0;
|
|
}
|
|
|
|
.bankily-stat-card {
|
|
background: #fff;
|
|
border: 1px solid var(--bankily-border);
|
|
border-radius: var(--bankily-border-radius);
|
|
padding: 24px;
|
|
text-align: center;
|
|
box-shadow: var(--bankily-shadow);
|
|
transition: var(--bankily-transition);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.bankily-stat-card:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: var(--bankily-shadow-lg);
|
|
}
|
|
|
|
.bankily-stat-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 4px;
|
|
background: var(--bankily-primary);
|
|
}
|
|
|
|
.bankily-stat-card h3 {
|
|
font-size: 2.8em;
|
|
margin: 0 0 10px 0;
|
|
font-weight: 700;
|
|
line-height: 1;
|
|
}
|
|
|
|
.bankily-stat-card p {
|
|
margin: 0;
|
|
color: #666;
|
|
font-size: 14px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.8px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* Couleurs des cartes statistiques */
|
|
.bankily-stat-card.total::before { background: var(--bankily-primary); }
|
|
.bankily-stat-card.total h3 { color: var(--bankily-primary); }
|
|
|
|
.bankily-stat-card.success::before { background: var(--bankily-success); }
|
|
.bankily-stat-card.success h3 { color: var(--bankily-success); }
|
|
|
|
.bankily-stat-card.pending::before { background: var(--bankily-warning); }
|
|
.bankily-stat-card.pending h3 { color: var(--bankily-warning); }
|
|
|
|
.bankily-stat-card.failed::before { background: var(--bankily-danger); }
|
|
.bankily-stat-card.failed h3 { color: var(--bankily-danger); }
|
|
|
|
.bankily-stat-card.amount::before { background: var(--bankily-info); }
|
|
.bankily-stat-card.amount h3 { color: var(--bankily-info); }
|
|
|
|
/* === ACTIONS RAPIDES === */
|
|
.bankily-quick-actions {
|
|
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
|
|
border: 1px solid var(--bankily-border);
|
|
border-radius: var(--bankily-border-radius);
|
|
padding: 24px;
|
|
margin: 20px 0 30px 0;
|
|
position: relative;
|
|
}
|
|
|
|
.bankily-quick-actions::before {
|
|
content: '⚡';
|
|
position: absolute;
|
|
top: -10px;
|
|
left: 20px;
|
|
background: var(--bankily-warning);
|
|
color: white;
|
|
width: 30px;
|
|
height: 30px;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.bankily-quick-actions h2 {
|
|
margin-top: 0;
|
|
color: var(--bankily-dark);
|
|
font-size: 18px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.bankily-action-buttons {
|
|
display: flex;
|
|
gap: 12px;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
}
|
|
|
|
.bankily-action-buttons .button {
|
|
margin: 0;
|
|
font-weight: 500;
|
|
transition: var(--bankily-transition);
|
|
}
|
|
|
|
.bankily-action-buttons .button-primary {
|
|
background: var(--bankily-primary);
|
|
border-color: var(--bankily-primary);
|
|
}
|
|
|
|
.bankily-action-buttons .button-primary:hover {
|
|
background: #005a87;
|
|
border-color: #005a87;
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
/* === STATUTS DES TRANSACTIONS === */
|
|
.bankily-status {
|
|
display: inline-block;
|
|
padding: 6px 12px;
|
|
border-radius: 20px;
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.8px;
|
|
border: 2px solid transparent;
|
|
transition: var(--bankily-transition);
|
|
}
|
|
|
|
.bankily-status-ts {
|
|
background: linear-gradient(135deg, #d4edda, #c3e6cb);
|
|
color: #155724;
|
|
border-color: #c3e6cb;
|
|
}
|
|
|
|
.bankily-status-tf {
|
|
background: linear-gradient(135deg, #f8d7da, #f5c6cb);
|
|
color: #721c24;
|
|
border-color: #f5c6cb;
|
|
}
|
|
|
|
.bankily-status-ta {
|
|
background: linear-gradient(135deg, #fff3cd, #ffeaa7);
|
|
color: #856404;
|
|
border-color: #ffeaa7;
|
|
animation: pulse-warning 2s infinite;
|
|
}
|
|
|
|
@keyframes pulse-warning {
|
|
0%, 100% { opacity: 1; }
|
|
50% { opacity: 0.8; }
|
|
}
|
|
|
|
/* === FILTRES ET RECHERCHE === */
|
|
.bankily-filters {
|
|
background: #fff;
|
|
border: 1px solid var(--bankily-border);
|
|
border-radius: var(--bankily-border-radius);
|
|
padding: 20px;
|
|
margin: 20px 0;
|
|
box-shadow: var(--bankily-shadow);
|
|
}
|
|
|
|
.bankily-search-box {
|
|
display: flex;
|
|
gap: 12px;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.bankily-search-box input[type="text"] {
|
|
flex: 1;
|
|
min-width: 300px;
|
|
padding: 10px 16px;
|
|
border: 2px solid var(--bankily-border);
|
|
border-radius: 6px;
|
|
font-size: 14px;
|
|
transition: var(--bankily-transition);
|
|
}
|
|
|
|
.bankily-search-box input[type="text"]:focus {
|
|
outline: none;
|
|
border-color: var(--bankily-primary);
|
|
box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
|
|
}
|
|
|
|
.bankily-advanced-filters {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
|
|
gap: 16px;
|
|
margin-top: 16px;
|
|
padding-top: 16px;
|
|
border-top: 1px solid var(--bankily-border);
|
|
}
|
|
|
|
.bankily-filter-group label {
|
|
display: block;
|
|
font-weight: 600;
|
|
margin-bottom: 6px;
|
|
color: var(--bankily-dark);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.bankily-filter-group select,
|
|
.bankily-filter-group input {
|
|
width: 100%;
|
|
padding: 8px 12px;
|
|
border: 1px solid var(--bankily-border);
|
|
border-radius: 4px;
|
|
font-size: 13px;
|
|
transition: var(--bankily-transition);
|
|
}
|
|
|
|
.bankily-filter-group select:focus,
|
|
.bankily-filter-group input:focus {
|
|
outline: none;
|
|
border-color: var(--bankily-primary);
|
|
}
|
|
|
|
/* === ACTIONS EN LOT === */
|
|
.bankily-bulk-actions {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 12px 0;
|
|
border-bottom: 2px solid var(--bankily-border);
|
|
margin-bottom: 15px;
|
|
background: linear-gradient(90deg, rgba(0, 124, 186, 0.05) 0%, rgba(0, 124, 186, 0.02) 100%);
|
|
padding: 16px;
|
|
border-radius: 6px;
|
|
margin: 10px 0 20px 0;
|
|
}
|
|
|
|
.bankily-bulk-actions select {
|
|
margin-right: 8px;
|
|
padding: 6px 10px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.bankily-bulk-actions .button.action:disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.bankily-bulk-actions .displaying-num {
|
|
color: #666;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* === TABLEAU DES TRANSACTIONS === */
|
|
.wp-list-table {
|
|
border-radius: var(--bankily-border-radius);
|
|
overflow: hidden;
|
|
box-shadow: var(--bankily-shadow);
|
|
}
|
|
|
|
.wp-list-table .transaction-row {
|
|
transition: var(--bankily-transition);
|
|
}
|
|
|
|
.wp-list-table .transaction-row:hover {
|
|
background-color: rgba(0, 124, 186, 0.05);
|
|
}
|
|
|
|
.wp-list-table .transaction-row.updated {
|
|
background-color: rgba(40, 167, 69, 0.1);
|
|
border-left: 4px solid var(--bankily-success);
|
|
}
|
|
|
|
.wp-list-table .transaction-row.bankily-checking {
|
|
background-color: rgba(0, 124, 186, 0.1);
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.wp-list-table .transaction-row.bankily-success {
|
|
background-color: rgba(40, 167, 69, 0.15);
|
|
animation: flash-success 1.5s ease;
|
|
}
|
|
|
|
.wp-list-table .transaction-row.bankily-error {
|
|
background-color: rgba(220, 53, 69, 0.15);
|
|
animation: flash-error 1.5s ease;
|
|
}
|
|
|
|
@keyframes flash-success {
|
|
0%, 100% { background-color: rgba(40, 167, 69, 0.15); }
|
|
50% { background-color: rgba(40, 167, 69, 0.3); }
|
|
}
|
|
|
|
@keyframes flash-error {
|
|
0%, 100% { background-color: rgba(220, 53, 69, 0.15); }
|
|
50% { background-color: rgba(220, 53, 69, 0.3); }
|
|
}
|
|
|
|
.wp-list-table .operation-id {
|
|
font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.wp-list-table .operation-id small {
|
|
color: #666;
|
|
font-size: 10px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.wp-list-table .actions {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.wp-list-table .actions .button {
|
|
margin: 2px;
|
|
font-size: 11px;
|
|
padding: 4px 8px;
|
|
border-radius: 4px;
|
|
font-weight: 500;
|
|
transition: var(--bankily-transition);
|
|
}
|
|
|
|
.wp-list-table .actions .button:hover {
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.wp-list-table .actions .button.bankily-loading {
|
|
position: relative;
|
|
color: transparent !important;
|
|
}
|
|
|
|
.wp-list-table .actions .button.bankily-loading::after {
|
|
content: '';
|
|
position: absolute;
|
|
width: 12px;
|
|
height: 12px;
|
|
top: 50%;
|
|
left: 50%;
|
|
margin-left: -6px;
|
|
margin-top: -6px;
|
|
border: 2px solid #fff;
|
|
border-radius: 50%;
|
|
border-top-color: transparent;
|
|
animation: spin 1s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
.wp-list-table .error-message {
|
|
color: var(--bankily-danger);
|
|
font-style: italic;
|
|
cursor: help;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.wp-list-table .error-message:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* Statuts des commandes */
|
|
.order-status-completed { color: var(--bankily-success); font-weight: 600; }
|
|
.order-status-processing { color: var(--bankily-info); font-weight: 600; }
|
|
.order-status-on-hold { color: var(--bankily-warning); font-weight: 600; }
|
|
.order-status-cancelled { color: var(--bankily-danger); font-weight: 600; }
|
|
.order-status-refunded { color: #6c757d; font-weight: 600; }
|
|
.order-status-failed { color: var(--bankily-danger); font-weight: 600; }
|
|
.order-status-pending { color: #fd7e14; font-weight: 600; }
|
|
|
|
/* === BARRE DE PROGRESSION === */
|
|
#bankily-progress-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.8);
|
|
z-index: 999999;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
backdrop-filter: blur(5px);
|
|
}
|
|
|
|
.bankily-progress-container {
|
|
background: #fff;
|
|
border-radius: var(--bankily-border-radius);
|
|
padding: 40px;
|
|
min-width: 450px;
|
|
max-width: 90vw;
|
|
text-align: center;
|
|
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
|
|
border: 3px solid var(--bankily-primary);
|
|
}
|
|
|
|
.bankily-progress-container h3 {
|
|
margin: 0 0 24px 0;
|
|
color: var(--bankily-dark);
|
|
font-size: 20px;
|
|
}
|
|
|
|
.bankily-progress-bar {
|
|
width: 100%;
|
|
height: 24px;
|
|
background: #e9ecef;
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
margin-bottom: 16px;
|
|
border: 2px solid var(--bankily-border);
|
|
}
|
|
|
|
.bankily-progress-fill {
|
|
height: 100%;
|
|
background: linear-gradient(45deg, var(--bankily-primary), var(--bankily-info));
|
|
transition: width 0.5s ease;
|
|
position: relative;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.bankily-progress-fill::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
background-image: linear-gradient(
|
|
45deg,
|
|
rgba(255, 255, 255, 0.3) 25%,
|
|
transparent 25%,
|
|
transparent 50%,
|
|
rgba(255, 255, 255, 0.3) 50%,
|
|
rgba(255, 255, 255, 0.3) 75%,
|
|
transparent 75%,
|
|
transparent
|
|
);
|
|
background-size: 24px 24px;
|
|
animation: progress-stripes 1.5s linear infinite;
|
|
}
|
|
|
|
@keyframes progress-stripes {
|
|
0% { background-position: 0 0; }
|
|
100% { background-position: 24px 0; }
|
|
}
|
|
|
|
.bankily-progress-text {
|
|
color: var(--bankily-dark);
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.bankily-progress-container p {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.bankily-progress-container small {
|
|
color: #666;
|
|
font-style: italic;
|
|
}
|
|
|
|
/* === PAGINATION === */
|
|
.bankily-pagination {
|
|
text-align: center;
|
|
margin: 30px 0;
|
|
}
|
|
|
|
.bankily-pagination .page-numbers {
|
|
display: inline-block;
|
|
padding: 10px 14px;
|
|
margin: 0 3px;
|
|
border: 2px solid var(--bankily-border);
|
|
border-radius: 6px;
|
|
color: var(--bankily-primary);
|
|
text-decoration: none;
|
|
transition: var(--bankily-transition);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.bankily-pagination .page-numbers:hover {
|
|
background: var(--bankily-primary);
|
|
color: #fff;
|
|
border-color: var(--bankily-primary);
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.bankily-pagination .page-numbers.current {
|
|
background: var(--bankily-primary);
|
|
color: #fff;
|
|
border-color: var(--bankily-primary);
|
|
}
|
|
|
|
/* === NOTICES === */
|
|
.bankily-notice {
|
|
margin: 15px 0;
|
|
animation: slideDown 0.4s ease;
|
|
border-left: 4px solid var(--bankily-primary);
|
|
box-shadow: var(--bankily-shadow);
|
|
}
|
|
|
|
@keyframes slideDown {
|
|
from {
|
|
transform: translateY(-20px);
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
transform: translateY(0);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.bankily-notice.notice-success {
|
|
border-left-color: var(--bankily-success);
|
|
}
|
|
|
|
.bankily-notice.notice-error {
|
|
border-left-color: var(--bankily-danger);
|
|
}
|
|
|
|
.bankily-notice.notice-warning {
|
|
border-left-color: var(--bankily-warning);
|
|
}
|
|
|
|
.bankily-notice.notice-info {
|
|
border-left-color: var(--bankily-info);
|
|
}
|
|
|
|
/* === INDICATEUR DE CONNEXION === */
|
|
#bankily-connection-status {
|
|
position: fixed;
|
|
bottom: 20px;
|
|
right: 20px;
|
|
padding: 10px 16px;
|
|
border-radius: 25px;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
z-index: 10000;
|
|
transition: var(--bankily-transition);
|
|
box-shadow: var(--bankily-shadow-lg);
|
|
border: 2px solid transparent;
|
|
}
|
|
|
|
#bankily-connection-status.online {
|
|
background: linear-gradient(135deg, var(--bankily-success), #20c997);
|
|
color: #fff;
|
|
border-color: var(--bankily-success);
|
|
}
|
|
|
|
#bankily-connection-status.offline {
|
|
background: linear-gradient(135deg, var(--bankily-danger), #e83e8c);
|
|
color: #fff;
|
|
border-color: var(--bankily-danger);
|
|
animation: pulse-offline 2s infinite;
|
|
}
|
|
|
|
@keyframes pulse-offline {
|
|
0%, 100% { opacity: 1; transform: scale(1); }
|
|
50% { opacity: 0.8; transform: scale(1.05); }
|
|
}
|
|
|
|
/* === TOOLTIPS === */
|
|
#bankily-tooltip {
|
|
background: var(--bankily-dark);
|
|
color: #fff;
|
|
padding: 8px 12px;
|
|
border-radius: 6px;
|
|
font-size: 12px;
|
|
max-width: 300px;
|
|
word-wrap: break-word;
|
|
box-shadow: var(--bankily-shadow-lg);
|
|
z-index: 999999;
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
/* === BADGES ET ICÔNES === */
|
|
.bankily-badge {
|
|
display: inline-block;
|
|
padding: 3px 8px;
|
|
font-size: 10px;
|
|
font-weight: 700;
|
|
border-radius: 3px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.bankily-badge.new {
|
|
background: linear-gradient(135deg, #e3f2fd, #bbdefb);
|
|
color: #1976d2;
|
|
border: 1px solid #90caf9;
|
|
}
|
|
|
|
.bankily-badge.urgent {
|
|
background: linear-gradient(135deg, #ffebee, #ffcdd2);
|
|
color: #c62828;
|
|
border: 1px solid #ef9a9a;
|
|
animation: pulse-urgent 2s infinite;
|
|
}
|
|
|
|
@keyframes pulse-urgent {
|
|
0%, 100% { opacity: 1; }
|
|
50% { opacity: 0.7; }
|
|
}
|
|
|
|
/* === RESPONSIVE === */
|
|
@media (max-width: 1200px) {
|
|
.bankily-stats-grid {
|
|
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
|
|
gap: 16px;
|
|
}
|
|
|
|
.bankily-stat-card {
|
|
padding: 20px;
|
|
}
|
|
|
|
.bankily-stat-card h3 {
|
|
font-size: 2.4em;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 782px) {
|
|
.bankily-stats-grid {
|
|
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.bankily-stat-card {
|
|
padding: 16px;
|
|
}
|
|
|
|
.bankily-stat-card h3 {
|
|
font-size: 2em;
|
|
}
|
|
|
|
.bankily-search-box {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.bankily-search-box input[type="text"] {
|
|
min-width: auto;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.bankily-action-buttons {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.bankily-action-buttons .button {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.bankily-bulk-actions {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
gap: 10px;
|
|
}
|
|
|
|
.bankily-advanced-filters {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.wp-list-table .actions {
|
|
white-space: normal;
|
|
}
|
|
|
|
.wp-list-table .actions .button {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
.bankily-progress-container {
|
|
padding: 20px;
|
|
min-width: auto;
|
|
max-width: 95vw;
|
|
}
|
|
|
|
#bankily-connection-status {
|
|
bottom: 10px;
|
|
right: 10px;
|
|
font-size: 11px;
|
|
padding: 8px 12px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.bankily-stats-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.bankily-quick-actions {
|
|
padding: 16px;
|
|
}
|
|
|
|
.bankily-filters {
|
|
padding: 16px;
|
|
}
|
|
|
|
.wp-list-table {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.wp-list-table th,
|
|
.wp-list-table td {
|
|
padding: 8px 4px;
|
|
}
|
|
}
|
|
|
|
/* === DARK MODE (optionnel) === */
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--bankily-light: #2c3e50;
|
|
--bankily-border: #34495e;
|
|
--bankily-dark: #ecf0f1;
|
|
}
|
|
|
|
.bankily-stat-card {
|
|
background: var(--bankily-light);
|
|
border-color: var(--bankily-border);
|
|
color: var(--bankily-dark);
|
|
}
|
|
|
|
.bankily-quick-actions {
|
|
background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
|
|
border-color: var(--bankily-border);
|
|
color: var(--bankily-dark);
|
|
}
|
|
|
|
.bankily-filters {
|
|
background: var(--bankily-light);
|
|
border-color: var(--bankily-border);
|
|
color: var(--bankily-dark);
|
|
}
|
|
|
|
.bankily-progress-container {
|
|
background: var(--bankily-light);
|
|
color: var(--bankily-dark);
|
|
border-color: var(--bankily-primary);
|
|
}
|
|
}
|
|
|
|
/* === ANIMATIONS SUPPLÉMENTAIRES === */
|
|
@keyframes fadeInUp {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(20px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
.bankily-stats-grid .bankily-stat-card {
|
|
animation: fadeInUp 0.5s ease forwards;
|
|
}
|
|
|
|
.bankily-stats-grid .bankily-stat-card:nth-child(1) { animation-delay: 0.1s; }
|
|
.bankily-stats-grid .bankily-stat-card:nth-child(2) { animation-delay: 0.2s; }
|
|
.bankily-stats-grid .bankily-stat-card:nth-child(3) { animation-delay: 0.3s; }
|
|
.bankily-stats-grid .bankily-stat-card:nth-child(4) { animation-delay: 0.4s; }
|
|
.bankily-stats-grid .bankily-stat-card:nth-child(5) { animation-delay: 0.5s; }
|
|
|
|
/* === ACCESSIBILITÉ === */
|
|
.sr-only {
|
|
position: absolute !important;
|
|
width: 1px !important;
|
|
height: 1px !important;
|
|
padding: 0 !important;
|
|
margin: -1px !important;
|
|
overflow: hidden !important;
|
|
clip: rect(0, 0, 0, 0) !important;
|
|
white-space: nowrap !important;
|
|
border: 0 !important;
|
|
}
|
|
|
|
/* Focus visible pour la navigation clavier */
|
|
.bankily-stat-card:focus,
|
|
.button:focus,
|
|
input:focus,
|
|
select:focus,
|
|
.bankily-status:focus {
|
|
outline: 2px solid var(--bankily-primary);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
/* === IMPRESSION === */
|
|
@media print {
|
|
.bankily-action-buttons,
|
|
.bankily-bulk-actions,
|
|
.wp-list-table .actions,
|
|
#bankily-connection-status,
|
|
.notice,
|
|
#bankily-progress-overlay {
|
|
display: none !important;
|
|
}
|
|
|
|
.bankily-stat-card {
|
|
break-inside: avoid;
|
|
box-shadow: none;
|
|
border: 1px solid #000;
|
|
}
|
|
|
|
.wp-list-table {
|
|
font-size: 10px;
|
|
}
|
|
|
|
.bankily-status {
|
|
border: 1px solid #000 !important;
|
|
background: #fff !important;
|
|
color: #000 !important;
|
|
}
|
|
} |