1441 lines
58 KiB
SCSS
1441 lines
58 KiB
SCSS
/* ========================================================== */
|
|
/* 1. VARIÁVEIS E CONFIGURAÇÕES GERAIS */
|
|
/* ========================================================== */
|
|
:host {
|
|
--brand: #E33DCF;
|
|
--blue: #030FAA;
|
|
--text: #111214;
|
|
--muted: rgba(17, 18, 20, 0.65);
|
|
|
|
/* Cores Dashboard Financeiro */
|
|
--bg-vivo: #fbf5fc;
|
|
--text-vivo: #8a2be2;
|
|
--bg-line: #f5f6ff;
|
|
--text-line: #030FAA;
|
|
|
|
--success-bg: rgba(25, 135, 84, 0.1);
|
|
--success-text: #198754;
|
|
--warn-bg: rgba(255, 193, 7, 0.15);
|
|
--warn-text: #b58100;
|
|
--danger-bg: rgba(220, 53, 69, 0.1);
|
|
--danger-text: #dc3545;
|
|
|
|
--radius-xl: 22px;
|
|
--radius-lg: 16px;
|
|
--radius-md: 12px;
|
|
--shadow-card: 0 22px 46px rgba(17, 18, 20, 0.10);
|
|
--glass-bg: rgba(255, 255, 255, 0.82);
|
|
--glass-border: 1px solid rgba(227, 61, 207, 0.16);
|
|
|
|
/* Espaçamento responsivo */
|
|
--page-top-gap: clamp(14px, 4vh, 40px);
|
|
--page-bottom-gap: clamp(60px, 10vh, 120px);
|
|
|
|
display: block;
|
|
font-family: 'Inter', sans-serif;
|
|
color: var(--text);
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* ========================================================== */
|
|
/* 2. LAYOUT DA PÁGINA (Vertical Destravado) */
|
|
/* ========================================================== */
|
|
.geral-page {
|
|
min-height: 100dvh;
|
|
padding: var(--page-top-gap) 12px var(--page-bottom-gap);
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: center;
|
|
position: relative;
|
|
overflow: visible;
|
|
background:
|
|
radial-gradient(900px 420px at 20% 10%, rgba(227, 61, 207, 0.14), transparent 60%),
|
|
radial-gradient(820px 380px at 80% 30%, rgba(227, 61, 207, 0.08), transparent 60%),
|
|
linear-gradient(180deg, #ffffff 0%, #f5f5f7 70%);
|
|
|
|
&::after {
|
|
content: ''; position: absolute; inset: 0; pointer-events: none;
|
|
background: rgba(255, 255, 255, 0.25);
|
|
}
|
|
}
|
|
|
|
.page-blob {
|
|
position: fixed; pointer-events: none; border-radius: 999px;
|
|
filter: blur(34px); opacity: 0.55; z-index: 0;
|
|
background: radial-gradient(circle at 30% 30%, rgba(227,61,207,0.55), rgba(227,61,207,0.06));
|
|
animation: floaty 10s ease-in-out infinite;
|
|
&.blob-1 { width: 420px; height: 420px; top: -140px; left: -140px; }
|
|
&.blob-2 { width: 520px; height: 520px; top: -220px; right: -240px; animation-duration: 12s; }
|
|
&.blob-3 { width: 360px; height: 360px; bottom: -180px; left: 25%; animation-duration: 14s; }
|
|
&.blob-4 { width: 520px; height: 520px; bottom: -260px; right: -260px; animation-duration: 16s; opacity: .45; }
|
|
}
|
|
@keyframes floaty {
|
|
0% { transform: translate(0, 0) scale(1); }
|
|
50% { transform: translate(18px, 10px) scale(1.03); }
|
|
100% { transform: translate(0, 0) scale(1); }
|
|
}
|
|
|
|
.container-geral {
|
|
width: 100%;
|
|
max-width: 1100px; /* Largura controlada */
|
|
position: relative;
|
|
z-index: 1;
|
|
margin-top: 0;
|
|
margin-bottom: var(--page-bottom-gap);
|
|
margin-left: auto; margin-right: auto;
|
|
}
|
|
|
|
.geral-card {
|
|
border-radius: var(--radius-xl);
|
|
overflow: hidden;
|
|
overflow-y: visible; /* Permite dropdowns/conteudo vazar */
|
|
background: var(--glass-bg);
|
|
border: var(--glass-border);
|
|
backdrop-filter: blur(12px);
|
|
box-shadow: var(--shadow-card);
|
|
position: relative;
|
|
display: flex; flex-direction: column;
|
|
|
|
/* Vertical Fix */
|
|
height: auto !important;
|
|
min-height: 80vh;
|
|
max-height: none !important;
|
|
|
|
&::before {
|
|
content: ''; position: absolute; inset: 1px; border-radius: calc(var(--radius-xl) - 1px);
|
|
pointer-events: none; border: 1px solid rgba(255, 255, 255, 0.65); opacity: 0.75;
|
|
}
|
|
}
|
|
|
|
/* ========================================================== */
|
|
/* 3. HEADER, FILTROS E KPIs */
|
|
/* ========================================================== */
|
|
.geral-header { padding: 16px 24px; border-bottom: 1px solid rgba(17, 18, 20, 0.06); background: linear-gradient(180deg, rgba(227,61,207,0.06), rgba(255,255,255,0.2)); flex-shrink: 0; }
|
|
.header-row-top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; @media (max-width: 768px) { grid-template-columns: 1fr; text-align: center; gap: 16px; .title-badge { justify-self: center; margin-bottom: 8px; } .header-actions { justify-self: center; } } }
|
|
.title-badge { justify-self: start; display: inline-flex; align-items: center; gap: 10px; padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, 0.78); border: 1px solid rgba(227, 61, 207, 0.22); backdrop-filter: blur(10px); color: var(--text); font-size: 13px; font-weight: 800; i { color: var(--brand); } }
|
|
.header-title { justify-self: center; display: flex; flex-direction: column; align-items: center; text-align: center; }
|
|
.title { font-size: 26px; font-weight: 950; letter-spacing: -0.3px; color: var(--text); margin-top: 10px; margin-bottom: 0; }
|
|
.subtitle { color: rgba(17, 18, 20, 0.65); font-weight: 700; }
|
|
.header-actions { justify-self: end; }
|
|
|
|
/* Botões */
|
|
.btn-brand { background-color: var(--brand); border-color: var(--brand); color: #fff; font-weight: 900; border-radius: 12px; transition: transform 0.2s, box-shadow 0.2s; &:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(227, 61, 207, 0.25); filter: brightness(1.05); } &:disabled { opacity: 0.7; cursor: not-allowed; transform: none; } }
|
|
.btn-glass { border-radius: 12px; font-weight: 900; background: rgba(255, 255, 255, 0.6); border: 1px solid rgba(3, 15, 170, 0.25); color: var(--blue); &:hover { transform: translateY(-2px); border-color: var(--brand); background: #fff; } }
|
|
|
|
/* Filtros e Multi-Select */
|
|
.filters-stack {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
|
|
.filters-row {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: flex-end;
|
|
gap: 12px;
|
|
flex-wrap: wrap;
|
|
margin-top: 0;
|
|
position: relative;
|
|
z-index: 30;
|
|
overflow: visible;
|
|
}
|
|
|
|
.filters-row-top {
|
|
justify-content: center;
|
|
z-index: 60;
|
|
}
|
|
|
|
.filters-row-bottom {
|
|
justify-content: center;
|
|
z-index: 40;
|
|
}
|
|
.filter-tabs { display: flex; gap: 4px; padding: 4px; background: rgba(255, 255, 255, 0.6); border: 1px solid rgba(17, 18, 20, 0.08); border-radius: 12px; backdrop-filter: blur(8px); flex-wrap: wrap; justify-content: center; }
|
|
.filter-tab { border: none; background: transparent; padding: 8px 16px; border-radius: 8px; font-size: 0.85rem; font-weight: 700; color: var(--muted); transition: all 0.2s ease; display: flex; align-items: center; gap: 6px; flex: 0 0 auto; white-space: nowrap; line-height: 1.1; &:hover { color: var(--text); background: rgba(255, 255, 255, 0.5); } &.active { background: #fff; color: var(--brand); box-shadow: 0 2px 8px rgba(227, 61, 207, 0.15); } &:disabled { opacity: 0.5; cursor: not-allowed; } }
|
|
.filter-blocked-select-box { width: 196px; flex: 0 0 auto; position: relative; z-index: 80; }
|
|
.blocked-status-select-icon {
|
|
position: absolute;
|
|
left: 11px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
z-index: 2;
|
|
pointer-events: none;
|
|
color: rgba(17, 18, 20, 0.68);
|
|
font-size: 0.82rem;
|
|
}
|
|
.blocked-status-native-select {
|
|
width: 100%;
|
|
height: 36px;
|
|
border-radius: 12px;
|
|
border: 1px solid rgba(17, 18, 20, 0.15);
|
|
background: rgba(255, 255, 255, 0.7);
|
|
color: #0f172a;
|
|
font-size: 0.78rem;
|
|
font-weight: 800;
|
|
padding: 0 30px 0 30px;
|
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
|
|
appearance: none;
|
|
-webkit-appearance: none;
|
|
transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
|
|
|
|
&:hover {
|
|
background: #fff;
|
|
border-color: rgba(17, 18, 20, 0.7);
|
|
box-shadow: 0 4px 12px rgba(3, 15, 170, 0.1);
|
|
}
|
|
|
|
&:focus {
|
|
outline: none;
|
|
border-color: #e33dcf;
|
|
box-shadow: 0 0 0 3px rgba(227, 61, 207, 0.15);
|
|
}
|
|
|
|
&:disabled {
|
|
background-color: #f1f5f9;
|
|
color: #94a3b8;
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1366px) {
|
|
.filter-tabs {
|
|
gap: 3px;
|
|
padding: 3px;
|
|
}
|
|
|
|
.filter-tab {
|
|
padding: 7px 12px;
|
|
font-size: 0.78rem;
|
|
gap: 5px;
|
|
}
|
|
|
|
.filter-blocked-select-box {
|
|
width: 184px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1200px) {
|
|
.filter-tab {
|
|
padding: 6px 10px;
|
|
font-size: 0.74rem;
|
|
gap: 4px;
|
|
}
|
|
|
|
.filter-blocked-select-box {
|
|
width: 176px;
|
|
}
|
|
}
|
|
|
|
.client-filter-wrap { position: relative; z-index: 40; }
|
|
.btn-client-filter { display: flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 12px; border: 1px solid rgba(17, 18, 20, 0.08); background: rgba(255, 255, 255, 0.6); color: var(--muted); font-weight: 700; font-size: 0.85rem; backdrop-filter: blur(8px); transition: all 0.2s; min-height: 38px; height: auto; flex-wrap: wrap; &:hover { background: #fff; border-color: var(--blue); color: var(--blue); } &.active, &.has-selection { background: #fff; border-color: var(--brand); } }
|
|
.chips-container { display: flex; flex-wrap: wrap; gap: 6px; max-width: 400px; }
|
|
.client-chip { display: inline-flex; align-items: center; background: rgba(227, 61, 207, 0.1); color: var(--brand); border: 1px solid rgba(227, 61, 207, 0.2); border-radius: 6px; padding: 2px 6px; font-size: 0.75rem; font-weight: 800; cursor: default; user-select: none; }
|
|
.chip-close { margin-left: 6px; cursor: pointer; display: flex; align-items: center; justify-content: center; border-radius: 50%; width: 14px; height: 14px; transition: background 0.2s; &:hover { background: rgba(227, 61, 207, 0.2); color: #b91f9b; } }
|
|
.client-dropdown { position: absolute; top: calc(100% + 8px); right: 0; width: 320px; max-height: 400px; background: #fff; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); border: 1px solid rgba(17,18,20,0.08); z-index: 100; display: flex; flex-direction: column; overflow: hidden; animation: fadeIn 0.2s ease; }
|
|
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
|
|
.dropdown-header-search { padding: 8px; border-bottom: 1px solid rgba(0,0,0,0.05); background: #f9fafb; }
|
|
.dropdown-list { overflow-y: auto; max-height: 300px; }
|
|
.dropdown-item-custom { padding: 10px 16px; font-size: 0.85rem; color: var(--text); cursor: pointer; border-bottom: 1px solid rgba(0,0,0,0.03); transition: background 0.1s; &:hover { background: rgba(227,61,207,0.05); color: var(--brand); font-weight: 600; } &.selected { background: rgba(227, 61, 207, 0.08); color: var(--brand); font-weight: 700; } }
|
|
|
|
.additional-filter-wrap {
|
|
position: relative;
|
|
z-index: 40;
|
|
}
|
|
|
|
.operadora-empresa-filters {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
position: relative;
|
|
z-index: 50;
|
|
}
|
|
|
|
.filter-select-box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
min-width: 190px;
|
|
position: relative;
|
|
z-index: 50;
|
|
}
|
|
|
|
.filter-select-label {
|
|
font-size: 0.66rem;
|
|
font-weight: 900;
|
|
letter-spacing: 0.05em;
|
|
text-transform: uppercase;
|
|
color: rgba(17, 18, 20, 0.58);
|
|
padding-left: 2px;
|
|
}
|
|
|
|
.btn-additional-filter {
|
|
min-width: 160px;
|
|
max-width: 230px;
|
|
}
|
|
|
|
.additional-dropdown {
|
|
width: min(420px, calc(100vw - 24px));
|
|
max-height: 460px;
|
|
padding: 10px;
|
|
overflow: auto;
|
|
gap: 10px;
|
|
}
|
|
|
|
.additional-dropdown-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.additional-dropdown-title {
|
|
font-size: 0.74rem;
|
|
font-weight: 900;
|
|
letter-spacing: 0.04em;
|
|
text-transform: uppercase;
|
|
color: rgba(17, 18, 20, 0.6);
|
|
}
|
|
|
|
.additional-dropdown-footer {
|
|
padding-top: 4px;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.additional-mode-tabs {
|
|
display: flex;
|
|
gap: 6px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.additional-mode-btn {
|
|
border: 1px solid rgba(17, 18, 20, 0.12);
|
|
background: rgba(255, 255, 255, 0.7);
|
|
color: var(--muted);
|
|
font-weight: 800;
|
|
font-size: 0.8rem;
|
|
border-radius: 999px;
|
|
padding: 6px 12px;
|
|
transition: all 0.2s ease;
|
|
|
|
&:hover {
|
|
border-color: var(--blue);
|
|
color: var(--blue);
|
|
background: #fff;
|
|
}
|
|
|
|
&.active {
|
|
border-color: var(--brand);
|
|
color: var(--brand);
|
|
background: #fff;
|
|
box-shadow: 0 2px 8px rgba(227, 61, 207, 0.15);
|
|
}
|
|
|
|
&:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
|
|
.additional-services-chips {
|
|
display: flex;
|
|
gap: 6px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.additional-chip-btn {
|
|
border: 1px solid rgba(17, 18, 20, 0.12);
|
|
background: rgba(255, 255, 255, 0.68);
|
|
color: var(--muted);
|
|
font-weight: 700;
|
|
font-size: 0.78rem;
|
|
border-radius: 999px;
|
|
padding: 5px 10px;
|
|
transition: all 0.2s ease;
|
|
|
|
&:hover {
|
|
border-color: var(--blue);
|
|
color: var(--blue);
|
|
background: #fff;
|
|
}
|
|
|
|
&.active {
|
|
border-color: var(--brand);
|
|
color: var(--brand);
|
|
background: rgba(227, 61, 207, 0.12);
|
|
}
|
|
|
|
&.clear {
|
|
color: var(--blue);
|
|
border-color: rgba(3, 15, 170, 0.18);
|
|
}
|
|
|
|
&:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.operadora-empresa-filters {
|
|
width: 100%;
|
|
justify-content: center;
|
|
}
|
|
|
|
.filter-select-box {
|
|
flex: 1 1 220px;
|
|
min-width: 0;
|
|
}
|
|
}
|
|
|
|
/* KPIs */
|
|
.geral-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 20px; margin-bottom: 16px; width: 100%; @media (max-width: 992px) { grid-template-columns: repeat(2, 1fr); } @media (max-width: 576px) { grid-template-columns: 1fr; } }
|
|
.geral-kpis.geral-kpis-client {
|
|
grid-template-columns: repeat(3, minmax(180px, 240px));
|
|
justify-content: center;
|
|
|
|
@media (max-width: 992px) {
|
|
grid-template-columns: repeat(2, minmax(170px, 1fr));
|
|
justify-content: stretch;
|
|
}
|
|
|
|
@media (max-width: 576px) {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
.kpi { background: rgba(255,255,255,0.7); border: 1px solid rgba(17,18,20,0.08); border-radius: 16px; padding: 12px 16px; display: flex; justify-content: space-between; align-items: center; backdrop-filter: blur(8px); transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 2px 5px rgba(0,0,0,0.02); &:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(227, 61, 207, 0.1); background: #fff; border-color: var(--brand); } .lbl { font-size: 0.72rem; font-weight: 900; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); &.text-success { color: var(--success-text) !important; } &.text-danger { color: var(--danger-text) !important; } } .val { font-size: 1.25rem; font-weight: 950; color: var(--text); } }
|
|
.kpi .val-loading { font-size: 0.86rem; font-weight: 900; color: var(--muted); display: inline-flex; align-items: center; }
|
|
|
|
/* Insights */
|
|
|
|
/* Controls */
|
|
.controls { display: flex; gap: 12px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
|
|
.controls-right {
|
|
margin-left: auto;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
gap: 12px;
|
|
flex-wrap: wrap;
|
|
|
|
@media (max-width: 900px) {
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
gap: 8px;
|
|
}
|
|
}
|
|
.search-group { max-width: 270px; border-radius: 12px; overflow: hidden; display: flex; align-items: stretch; background: #fff; border: 1px solid rgba(17, 18, 20, 0.15); box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04); transition: all 0.2s ease; &:focus-within { border-color: var(--brand); box-shadow: 0 4px 12px rgba(227, 61, 207, 0.15); transform: translateY(-1px); } .input-group-text { background: transparent; border: none; color: var(--muted); padding-left: 14px; padding-right: 8px; display: flex; align-items: center; i { font-size: 1rem; } } .form-control { border: none; background: transparent; padding: 10px 0; font-size: 0.9rem; color: var(--text); box-shadow: none; &::placeholder { color: rgba(17, 18, 20, 0.4); font-weight: 500; } &:focus { outline: none; } } .btn-clear { background: transparent; border: none; color: var(--muted); padding: 0 12px; display: flex; align-items: center; cursor: pointer; transition: color 0.2s; &:hover { color: #dc3545; } i { font-size: 1rem; } } }
|
|
.page-size { @media (max-width: 500px) { width: 100%; justify-content: space-between; } }
|
|
.batch-status-tools {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
|
|
@media (max-width: 900px) {
|
|
width: 100%;
|
|
}
|
|
}
|
|
.batch-status-count {
|
|
font-size: 0.75rem;
|
|
font-weight: 800;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
color: rgba(17, 18, 20, 0.62);
|
|
padding: 4px 8px;
|
|
border-radius: 999px;
|
|
border: 1px solid rgba(17, 18, 20, 0.12);
|
|
background: rgba(255, 255, 255, 0.8);
|
|
}
|
|
.select-wrapper { position: relative; display: inline-block; min-width: 90px; }
|
|
.select-glass { background: rgba(255, 255, 255, 0.7); border: 1px solid rgba(17, 18, 20, 0.15); border-radius: 12px; color: var(--blue); font-weight: 800; font-size: 0.9rem; text-align: left; padding: 8px 36px 8px 14px; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04); cursor: pointer; transition: all 0.2s ease; width: 100%; &:hover { background: #fff; border-color: var(--blue); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(3, 15, 170, 0.1); } &:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(227, 61, 207, 0.15); } }
|
|
.select-icon { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--muted); font-size: 0.75rem; transition: transform 0.2s ease; }
|
|
.select-wrapper:hover .select-icon { color: var(--blue); }
|
|
.animate-fade-in { animation: simpleFadeIn 0.5s ease-out forwards; }
|
|
@keyframes simpleFadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }
|
|
|
|
/* ========================================================== */
|
|
/* 6. GRUPOS (ACCORDION) & TABELA PRINCIPAL */
|
|
/* ========================================================== */
|
|
.geral-body { padding: 0; background: transparent; flex: 1; overflow: hidden; display: flex; flex-direction: column; }
|
|
.groups-container { padding: 16px; overflow: visible; height: auto; min-height: 0; }
|
|
.group-list { display: flex; flex-direction: column; gap: 12px; }
|
|
.empty-group { background: rgba(255,255,255,0.7); border: 1px dashed rgba(17,18,20,0.12); border-radius: 16px; padding: 18px; text-align: center; font-weight: 800; color: var(--muted); }
|
|
|
|
.client-group-card { background: #fff; border-radius: 16px; border: 1px solid rgba(17,18,20,0.08); overflow: hidden; transition: all 0.3s ease; &:hover { border-color: var(--brand); box-shadow: 0 4px 12px rgba(227,61,207,0.1); } &.expanded { border-color: var(--brand); box-shadow: 0 8px 24px rgba(227,61,207,0.12); } }
|
|
.group-header { padding: 16px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; background: linear-gradient(180deg, #fff, #fdfdfd); &:hover .group-toggle-icon { color: var(--brand); } }
|
|
.group-info { display: flex; flex-direction: column; gap: 6px; }
|
|
.group-badges { display: flex; gap: 8px; flex-wrap: wrap; }
|
|
.badge-pill { font-size: 0.7rem; padding: 4px 10px; border-radius: 999px; font-weight: 800; text-transform: uppercase; &.total { background: rgba(3,15,170,0.1); color: var(--blue); } &.ok { background: var(--success-bg); color: var(--success-text); } }
|
|
.group-tags { display: flex; flex-wrap: wrap; gap: 6px; }
|
|
.tag-pill { font-size: 0.65rem; padding: 4px 8px; border-radius: 999px; font-weight: 800; text-transform: uppercase; background: rgba(3,15,170,0.08); color: var(--blue); border: 1px solid rgba(3,15,170,0.16); }
|
|
.tag-pill.active { background: var(--success-bg); color: var(--success-text); border-color: rgba(25,135,84,0.22); }
|
|
.tag-pill.blocked { background: var(--danger-bg); color: var(--danger-text); border-color: rgba(220,53,69,0.22); }
|
|
.group-toggle-icon { font-size: 1.2rem; color: var(--muted); transition: transform 0.3s ease; }
|
|
.client-group-card.expanded .group-toggle-icon { transform: rotate(180deg); color: var(--brand); }
|
|
.group-body { border-top: 1px solid rgba(17,18,20,0.06); background: #fbfbfc; animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
|
|
.btn-add-line-group {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 34px;
|
|
border: 1px solid transparent;
|
|
border-radius: 12px;
|
|
padding: 0.42rem 0.85rem;
|
|
line-height: 1;
|
|
white-space: nowrap;
|
|
font-weight: 800;
|
|
letter-spacing: 0.01em;
|
|
color: #fff;
|
|
background:
|
|
linear-gradient(135deg, rgba(227, 61, 207, 0.95), rgba(3, 15, 170, 0.95));
|
|
background-clip: padding-box;
|
|
box-shadow:
|
|
0 10px 22px rgba(3, 15, 170, 0.16),
|
|
inset 0 1px 0 rgba(255,255,255,0.2);
|
|
transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
|
|
|
|
i {
|
|
font-weight: 900;
|
|
}
|
|
|
|
&:hover {
|
|
color: #fff;
|
|
transform: translateY(-1px);
|
|
filter: saturate(1.05) brightness(1.02);
|
|
box-shadow:
|
|
0 14px 26px rgba(227, 61, 207, 0.18),
|
|
0 8px 18px rgba(3, 15, 170, 0.14);
|
|
}
|
|
|
|
&:focus-visible {
|
|
outline: none;
|
|
box-shadow:
|
|
0 0 0 3px rgba(255, 255, 255, 0.95),
|
|
0 0 0 6px rgba(227, 61, 207, 0.28),
|
|
0 12px 24px rgba(3, 15, 170, 0.16);
|
|
}
|
|
|
|
&:active {
|
|
transform: translateY(0);
|
|
box-shadow:
|
|
0 8px 16px rgba(3, 15, 170, 0.14),
|
|
inset 0 1px 0 rgba(255,255,255,0.16);
|
|
}
|
|
}
|
|
|
|
.btn-send-reserva-group {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 34px;
|
|
border: 1px solid transparent;
|
|
border-radius: 12px;
|
|
padding: 0.42rem 0.85rem;
|
|
line-height: 1;
|
|
white-space: nowrap;
|
|
font-weight: 800;
|
|
letter-spacing: 0.01em;
|
|
color: #fff;
|
|
background:
|
|
linear-gradient(135deg, rgba(3, 15, 170, 0.96), rgba(227, 61, 207, 0.9));
|
|
box-shadow:
|
|
0 10px 22px rgba(3, 15, 170, 0.14),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.2);
|
|
transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, opacity 0.18s ease;
|
|
|
|
i {
|
|
font-weight: 900;
|
|
}
|
|
|
|
&:hover:not(:disabled) {
|
|
color: #fff;
|
|
transform: translateY(-1px);
|
|
filter: saturate(1.05) brightness(1.02);
|
|
box-shadow:
|
|
0 14px 26px rgba(227, 61, 207, 0.16),
|
|
0 8px 18px rgba(3, 15, 170, 0.14);
|
|
}
|
|
|
|
&:focus-visible {
|
|
outline: none;
|
|
box-shadow:
|
|
0 0 0 3px rgba(255, 255, 255, 0.95),
|
|
0 0 0 6px rgba(3, 15, 170, 0.24),
|
|
0 12px 24px rgba(227, 61, 207, 0.14);
|
|
}
|
|
|
|
&:active:not(:disabled) {
|
|
transform: translateY(0);
|
|
box-shadow:
|
|
0 8px 16px rgba(3, 15, 170, 0.12),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.16);
|
|
}
|
|
|
|
&:disabled {
|
|
opacity: 0.55;
|
|
cursor: not-allowed;
|
|
transform: none;
|
|
box-shadow: 0 6px 14px rgba(17, 18, 20, 0.12);
|
|
}
|
|
}
|
|
|
|
.line-select-checkbox {
|
|
appearance: none;
|
|
-webkit-appearance: none;
|
|
width: 18px;
|
|
height: 18px;
|
|
border-radius: 6px;
|
|
border: 1.5px solid rgba(3, 15, 170, 0.35);
|
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 246, 255, 0.95));
|
|
display: inline-grid;
|
|
place-content: center;
|
|
cursor: pointer;
|
|
transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, transform 0.12s ease;
|
|
position: relative;
|
|
vertical-align: middle;
|
|
|
|
&::after {
|
|
content: "";
|
|
width: 5px;
|
|
height: 9px;
|
|
border-right: 2px solid #fff;
|
|
border-bottom: 2px solid #fff;
|
|
transform: rotate(45deg) scale(0);
|
|
transform-origin: center;
|
|
transition: transform 0.16s ease;
|
|
margin-top: -1px;
|
|
}
|
|
|
|
&:hover {
|
|
border-color: rgba(227, 61, 207, 0.65);
|
|
box-shadow: 0 0 0 3px rgba(227, 61, 207, 0.14);
|
|
}
|
|
|
|
&:checked {
|
|
border-color: rgba(3, 15, 170, 0.95);
|
|
background: linear-gradient(135deg, rgba(3, 15, 170, 0.98), rgba(227, 61, 207, 0.95));
|
|
box-shadow:
|
|
0 0 0 3px rgba(3, 15, 170, 0.16),
|
|
0 4px 10px rgba(3, 15, 170, 0.24);
|
|
}
|
|
|
|
&:checked::after {
|
|
transform: rotate(45deg) scale(1);
|
|
}
|
|
|
|
&:focus-visible {
|
|
outline: none;
|
|
box-shadow:
|
|
0 0 0 3px rgba(255, 255, 255, 0.95),
|
|
0 0 0 6px rgba(3, 15, 170, 0.24);
|
|
}
|
|
|
|
&:active {
|
|
transform: scale(0.96);
|
|
}
|
|
}
|
|
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
|
|
|
|
/* Inner Table Destravada */
|
|
.inner-table-wrap { max-height: none !important; height: auto !important; overflow-y: visible; }
|
|
|
|
/* Tabela e Badges */
|
|
.group-actions-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: #fff; border-bottom: 1px solid rgba(17,18,20,0.06); }
|
|
.table-wrap { overflow-x: auto; overflow-y: visible; height: 100%; }
|
|
.table-modern { width: 100%; min-width: 1000px; border-collapse: separate; border-spacing: 0; thead th { position: sticky; top: 0; z-index: 10; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); border-bottom: 2px solid rgba(227, 61, 207, 0.15); padding: 12px; color: rgba(17, 18, 20, 0.7); font-size: 0.8rem; font-weight: 950; letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; cursor: pointer; transition: color 0.2s; text-align: center !important; &:hover { color: var(--brand); } } tbody tr { transition: background-color 0.2s; border-bottom: 1px solid rgba(17,18,20,0.05); &:hover { background-color: rgba(227, 61, 207, 0.05); } td { border-bottom: 1px solid rgba(17,18,20,0.04); } } td { padding: 12px; vertical-align: middle; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 0.875rem; color: var(--text); text-align: center !important; } }
|
|
.text-brand { color: var(--brand) !important; } .text-blue { color: var(--blue) !important; } .fw-black { font-weight: 950; } .td-clip { overflow: hidden; text-overflow: ellipsis; max-width: 250px; } .empty-state { background: rgba(255,255,255,0.4); }
|
|
|
|
.status-pill { display: inline-block; vertical-align: middle; padding: 6px 14px; border-radius: 999px; font-weight: 950; font-size: 0.75rem; letter-spacing: 0.3px; text-align: center; text-transform: uppercase; border: 1px solid rgba(17,18,20,0.1); background: rgba(17,18,20,0.05); color: rgba(17,18,20,0.7); &.is-active { background: rgba(25, 135, 84, 0.15); border-color: rgba(25, 135, 84, 0.25); color: #157347; } &.is-blocked { background: rgba(220, 53, 69, 0.15); border-color: rgba(220, 53, 69, 0.25); color: #b02a37; } &.static { display: inline-flex; width: auto; } }
|
|
.action-group { display: flex; justify-content: center; gap: 8px; }
|
|
.btn-icon { width: 32px; height: 32px; border: none; background: transparent; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(17,18,20,0.5); transition: all 0.2s; cursor: pointer; &:hover { background: rgba(17,18,20,0.05); color: var(--text); transform: translateY(-1px); } &.primary:hover { color: var(--blue); background: rgba(3,15,170,0.1); } &.danger:hover { color: var(--danger-text); background: var(--danger-bg); } }
|
|
|
|
/* Evita corte dos botões na última coluna de ações (grupos e tabela) */
|
|
.table-modern.table-modern-responsive th.actions-col-main,
|
|
.table-modern.table-modern-responsive td.actions-col-main {
|
|
min-width: 176px;
|
|
}
|
|
|
|
.table-modern.table-modern-responsive td.actions-col-main {
|
|
overflow: visible !important;
|
|
text-overflow: clip !important;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.table-modern.table-modern-responsive td.actions-col-main .action-group {
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
/* Footer */
|
|
.geral-footer { padding: 14px 24px; border-top: 1px solid rgba(17, 18, 20, 0.06); display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; flex-shrink: 0; @media (max-width: 768px) { justify-content: center; text-align: center; } }
|
|
.pagination-modern .page-link { color: var(--blue); font-weight: 900; border-radius: 10px; border: 1px solid rgba(17,18,20,0.1); background: rgba(255,255,255,0.6); margin: 0 2px; &:hover { transform: translateY(-1px); border-color: var(--brand); color: var(--brand); } }
|
|
.pagination-modern .page-item.active .page-link { background-color: var(--blue); border-color: var(--blue); color: #fff; }
|
|
|
|
/* ========================================================== */
|
|
/* 8. MODALS E FORMULÁRIOS COMPLETOS (RESTAURADOS ✅) */
|
|
/* ========================================================== */
|
|
.modal-card { background: #ffffff; border: 1px solid rgba(255,255,255,0.8); border-radius: 20px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); overflow: hidden; display: flex; flex-direction: column; animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); width: min(850px, 100%); max-height: 90vh; }
|
|
@keyframes modalPop { from { opacity: 0; transform: scale(0.95) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
|
|
|
|
.modal-header { padding: 16px 24px; border-bottom: 1px solid rgba(0,0,0,0.06); background: #fff; display: flex; justify-content: space-between; align-items: center;
|
|
.modal-title { font-size: 1.1rem; font-weight: 800; color: var(--text); display: flex; align-items: center; gap: 12px; }
|
|
.icon-bg { width: 32px; height: 32px; border-radius: 10px; background: rgba(3, 15, 170, 0.1); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 16px;
|
|
&.success { background: var(--success-bg); color: var(--success-text); }
|
|
&.primary-soft { background: rgba(3, 15, 170, 0.1); color: var(--blue); }
|
|
&.brand-soft { background: rgba(227, 61, 207, 0.1); color: var(--brand); }
|
|
}
|
|
.btn-icon { color: var(--muted); background: transparent; font-size: 1.2rem; &:hover { color: var(--brand); } }
|
|
}
|
|
.modal-body { padding: 24px; overflow-y: auto; &.bg-light-gray { background-color: #f8f9fa; } }
|
|
.modal-body .box-body { overflow: visible; }
|
|
.modal-xl-custom { width: min(1100px, 95vw); max-height: 85vh; }
|
|
.modal-card.modal-client-detail {
|
|
width: min(980px, 96vw);
|
|
}
|
|
.modal-card.modal-client-detail .details-dashboard {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 14px;
|
|
max-width: 940px;
|
|
margin: 0 auto;
|
|
|
|
@media (max-width: 900px) {
|
|
grid-template-columns: 1fr;
|
|
max-width: 520px;
|
|
}
|
|
}
|
|
.modal-card.modal-create { width: min(1280px, 96vw); max-height: 92vh; }
|
|
.modal-card.modal-create.batch-mode { width: min(1560px, 99vw); }
|
|
.modal-card.modal-move-reserva {
|
|
width: min(1520px, 99vw);
|
|
max-height: 94vh;
|
|
|
|
.details-dashboard {
|
|
grid-template-columns: minmax(420px, 0.9fr) minmax(700px, 1.45fr);
|
|
gap: 16px;
|
|
|
|
@media (max-width: 1100px) {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
.modal-body {
|
|
padding: 20px 22px;
|
|
}
|
|
|
|
.reserva-confirmation-pills {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 10px;
|
|
margin-top: 10px;
|
|
|
|
.summary-pill {
|
|
margin: 0;
|
|
white-space: normal;
|
|
line-height: 1.25;
|
|
}
|
|
}
|
|
}
|
|
.modal-card.modal-reserva-transfer {
|
|
width: min(1480px, 99vw);
|
|
max-height: 94vh;
|
|
|
|
.details-dashboard {
|
|
grid-template-columns: minmax(420px, 0.95fr) minmax(560px, 1.25fr);
|
|
gap: 16px;
|
|
|
|
@media (max-width: 1100px) {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
.modal-body {
|
|
padding: 20px 22px;
|
|
}
|
|
}
|
|
.modal-card.modal-batch-status {
|
|
width: min(1120px, 96vw);
|
|
max-height: 92vh;
|
|
|
|
.modal-header {
|
|
padding: 18px 22px 16px;
|
|
align-items: flex-start;
|
|
gap: 12px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.modal-title {
|
|
flex: 1 1 320px;
|
|
min-width: 0;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.batch-status-header-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.details-dashboard {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 16px;
|
|
align-items: start;
|
|
|
|
@media (max-width: 980px) {
|
|
grid-template-columns: 1fr;
|
|
gap: 12px;
|
|
}
|
|
}
|
|
|
|
.modal-body {
|
|
padding: 18px 22px 22px;
|
|
}
|
|
|
|
.detail-box {
|
|
height: 100%;
|
|
}
|
|
|
|
.box-body {
|
|
padding: 14px 16px 16px;
|
|
}
|
|
|
|
.form-grid {
|
|
gap: 14px 16px;
|
|
}
|
|
|
|
.form-field {
|
|
gap: 8px;
|
|
}
|
|
|
|
.reserva-confirmation-pills {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 10px;
|
|
margin-top: 2px;
|
|
|
|
.summary-pill {
|
|
margin: 0;
|
|
white-space: normal;
|
|
line-height: 1.25;
|
|
}
|
|
}
|
|
|
|
.batch-status-note {
|
|
display: block;
|
|
margin-top: 10px;
|
|
font-size: 0.8rem;
|
|
line-height: 1.4;
|
|
color: rgba(17, 18, 20, 0.58);
|
|
}
|
|
|
|
@media (max-width: 980px) {
|
|
.modal-header {
|
|
padding: 16px 18px 14px;
|
|
}
|
|
|
|
.batch-status-header-actions {
|
|
width: 100%;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.modal-body {
|
|
padding: 16px 18px 18px;
|
|
}
|
|
|
|
.form-grid {
|
|
gap: 12px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 640px) {
|
|
.modal-header {
|
|
padding: 14px 14px 12px;
|
|
}
|
|
|
|
.modal-title {
|
|
font-size: 1rem;
|
|
gap: 10px;
|
|
}
|
|
|
|
.batch-status-header-actions {
|
|
justify-content: stretch;
|
|
|
|
.btn {
|
|
flex: 1 1 140px;
|
|
}
|
|
}
|
|
|
|
.modal-body {
|
|
padding: 14px;
|
|
}
|
|
|
|
.box-body {
|
|
padding: 12px;
|
|
}
|
|
|
|
.reserva-confirmation-pills {
|
|
gap: 8px;
|
|
|
|
.summary-pill {
|
|
width: 100%;
|
|
justify-content: flex-start;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/* === MODAL DE EDITAR E SEÇÕES (Accordion) === */
|
|
/* ✅ Restauração Crítica para "Editar" e "Novo Cliente" */
|
|
.modal-card.modal-edit { width: min(1100px, 100%); }
|
|
.edit-sections { display: grid; gap: 12px; }
|
|
.edit-section {
|
|
background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.03);
|
|
summary {
|
|
cursor: pointer; user-select: none; padding: 12px 16px; font-weight: 950; color: rgba(17,18,20,0.75); display: flex; align-items: center; background: linear-gradient(180deg, rgba(227,61,207,0.06), rgba(255,255,255,0.6)); border-bottom: 1px solid rgba(0,0,0,0.06); list-style: none;
|
|
i { color: var(--blue); margin-right: 10px; }
|
|
&::-webkit-details-marker { display: none; }
|
|
/* Ícone de rotação (Chevron) */
|
|
.transition-icon { margin-left: auto; transition: transform 0.3s ease; font-size: 1rem; color: var(--muted); }
|
|
}
|
|
&[open] summary .transition-icon { transform: rotate(180deg); color: var(--brand); }
|
|
}
|
|
.edit-grid { padding: 14px 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; @media (max-width: 700px) { grid-template-columns: 1fr; } }
|
|
|
|
/* === DETALHES (Modal de Visualização) === */
|
|
.details-dashboard { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; @media (max-width: 992px) { grid-template-columns: repeat(2, 1fr); } @media (max-width: 700px) { grid-template-columns: 1fr; } }
|
|
.details-2col { grid-template-columns: 1fr 1fr; @media (max-width: 900px) { grid-template-columns: 1fr; } }
|
|
|
|
/* Caixas de Detalhes e Accordions simples */
|
|
details.detail-box { background: #fff; border-radius: 16px; border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 2px 8px rgba(0,0,0,0.02); overflow: visible; height: fit-content; &:not([open]) { padding-bottom: 0; } }
|
|
div.detail-box { background: #fff; border-radius: 16px; border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 2px 8px rgba(0,0,0,0.02); overflow: visible; height: 100%; display: flex; flex-direction: column; }
|
|
|
|
summary.box-header { padding: 10px 16px; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid rgba(0,0,0,0.04); background: #fdfdfd; display: flex; align-items: center; cursor: pointer; list-style: none; user-select: none; i:not(.transition-icon) { color: var(--brand); margin-right: 8px; } &::-webkit-details-marker { display: none; } .transition-icon { margin-left: auto; transition: transform 0.3s ease; font-size: 1rem; color: var(--muted); } }
|
|
details[open] summary .transition-icon { transform: rotate(180deg); color: var(--brand); }
|
|
|
|
div.box-header { padding: 10px 16px; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid rgba(0,0,0,0.04); background: #fdfdfd; display: flex; align-items: center; i { color: var(--brand); margin-right: 8px; } }
|
|
.box-header.justify-content-center { justify-content: center !important; text-align: center; background: rgba(227, 61, 207, 0.04); color: var(--brand); padding: 8px; i { margin-right: 8px; } }
|
|
div.box-body { padding: 16px; &.compact { padding: 12px 16px; } &.compact-padding { padding: 12px; } }
|
|
|
|
/* Itens de linha (Label: Valor) */
|
|
.row-item { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 0.85rem; color: var(--muted); align-items: baseline; &:last-child { margin-bottom: 0; } .lbl { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; } .val { font-weight: 600; color: var(--text); text-align: right; } }
|
|
.divider { height: 1px; background: rgba(0,0,0,0.06); margin: 12px 0; &.small { margin: 8px 0; } }
|
|
|
|
/* Grid de Informações (Quadrados cinzas) */
|
|
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0; }
|
|
.info-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 5px 8px; background: rgba(245, 245, 247, 0.5); border-radius: 12px; border: 1px solid rgba(0,0,0,0.03); transition: background 0.2s; &:hover { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.05); } &.span-2 { grid-column: span 2; } .lbl { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 800; color: var(--muted); margin-bottom: 2px; } .val { font-size: 0.9rem; font-weight: 700; color: var(--text); word-break: break-word; line-height: 1.2; &.fs-4 { font-size: 1.1rem !important; } &.small-text { font-size: 0.75rem; font-family: monospace; } } }
|
|
|
|
/* === DASHBOARD FINANCEIRO === */
|
|
.finance-dashboard { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; @media(max-width: 700px) { grid-template-columns: 1fr; } }
|
|
.finance-card { background: #fff; border-radius: 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.04); overflow: hidden; &.vivo-card { border-top: 4px solid var(--brand); .card-header-f { color: var(--brand); background: var(--bg-vivo); } } &.line-card { border-top: 4px solid var(--blue); .card-header-f { color: var(--blue); background: var(--bg-line); } } }
|
|
.card-header-f { padding: 12px 16px; font-weight: 800; font-size: 0.95rem; display: flex; align-items: center; }
|
|
.card-body-f { padding: 16px; .row-item { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.85rem; color: var(--muted); strong { color: var(--text); font-weight: 700; } &.total { font-size: 1rem; color: var(--text); margin-top: 8px; margin-bottom: 0; strong { font-weight: 900; } } } .divider { height: 1px; background: rgba(0,0,0,0.06); margin: 12px 0; } }
|
|
.finance-summary { background: #fff; border-radius: 16px; padding: 16px 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.03); display: flex; align-items: center; justify-content: space-around; .summary-item { display: flex; flex-direction: column; align-items: center; .lbl { font-size: 0.75rem; text-transform: uppercase; font-weight: 800; color: var(--muted); } .val { font-size: 1.25rem; font-weight: 900; } } .vertical-line { width: 1px; height: 40px; background: rgba(0,0,0,0.08); } }
|
|
|
|
/* === FORMULÁRIOS (GERAL) === */
|
|
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; @media (max-width: 600px) { grid-template-columns: 1fr; } }
|
|
.form-field { display: flex; flex-direction: column; gap: 6px; label { font-size: 0.75rem; font-weight: 900; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(17,18,20,0.65); } &.span-2 { grid-column: span 2; } }
|
|
.form-control, .form-select { border-radius: 8px; border: 1px solid rgba(17,18,20,0.15); background-color: #fff; font-size: 0.9rem; font-weight: 500; color: var(--text); transition: border-color 0.2s, box-shadow 0.2s; &:hover { border-color: rgba(17, 18, 20, 0.7); } &:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(227, 61, 207, 0.15); outline: none; } &:disabled, &[readonly] { background-color: rgba(17, 18, 20, 0.04); border-color: rgba(17, 18, 20, 0.2); color: var(--muted); } }
|
|
|
|
/* === CREATE MODES / LOTE === */
|
|
.create-entry-mode { display: grid; gap: 10px; }
|
|
.mode-pill-group { display: inline-flex; flex-wrap: wrap; gap: 8px; background: rgba(255,255,255,0.75); padding: 6px; border-radius: 999px; border: 1px solid rgba(17,18,20,0.08); width: fit-content; max-width: 100%; }
|
|
.mode-pill { border: 1px solid transparent; background: transparent; color: rgba(17,18,20,0.7); border-radius: 999px; padding: 8px 14px; font-size: 0.85rem; font-weight: 800; line-height: 1; transition: all 0.2s ease; white-space: nowrap; &:hover:not(:disabled) { background: rgba(227, 61, 207, 0.06); color: var(--brand); } &:disabled { opacity: 0.6; cursor: not-allowed; } &.active { background: linear-gradient(180deg, rgba(227,61,207,0.12), rgba(227,61,207,0.06)); color: var(--brand); border-color: rgba(227,61,207,0.18); box-shadow: 0 4px 12px rgba(227,61,207,0.08); } }
|
|
.mode-helper { font-size: 0.83rem; color: rgba(17,18,20,0.65); background: rgba(255,255,255,0.7); border: 1px solid rgba(17,18,20,0.06); border-radius: 12px; padding: 10px 12px; }
|
|
|
|
.batch-lines-panel { .detail-box { border-color: rgba(3,15,170,0.08); box-shadow: 0 10px 20px rgba(3,15,170,0.03); } }
|
|
.batch-client-setup { .detail-box { border-color: rgba(17,18,20,0.08); } }
|
|
.batch-count-badge { font-size: 0.72rem; font-weight: 900; color: var(--blue); background: rgba(3,15,170,0.08); border: 1px solid rgba(3,15,170,0.12); border-radius: 999px; padding: 3px 8px; }
|
|
.batch-summary-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
|
|
.summary-pill { display: inline-flex; align-items: center; border-radius: 999px; padding: 5px 10px; font-size: 0.75rem; font-weight: 900; border: 1px solid rgba(17,18,20,0.08); background: #fff; color: rgba(17,18,20,0.72); &.total { color: var(--blue); background: rgba(3,15,170,0.04); border-color: rgba(3,15,170,0.12); } &.ok { color: #157347; background: rgba(25,135,84,0.08); border-color: rgba(25,135,84,0.15); } &.warn { color: #b58105; background: rgba(255,193,7,0.14); border-color: rgba(255,193,7,0.18); } &.dup { color: #842029; background: rgba(220,53,69,0.08); border-color: rgba(220,53,69,0.15); } }
|
|
.batch-validation-banner { display: flex; align-items: center; gap: 8px; border-radius: 12px; padding: 10px 12px; margin-bottom: 10px; font-size: 0.84rem; font-weight: 700; border: 1px solid rgba(17,18,20,0.08); background: rgba(255,255,255,0.7); color: rgba(17,18,20,0.72); i { font-size: 1rem; } &.is-danger { color: #842029; background: rgba(220,53,69,0.08); border-color: rgba(220,53,69,0.15); } &.is-ok { color: #157347; background: rgba(25,135,84,0.08); border-color: rgba(25,135,84,0.15); } }
|
|
.batch-inheritance-note { border-radius: 12px; border: 1px solid rgba(17,18,20,0.06); background: rgba(255,255,255,0.72); padding: 10px 12px; color: rgba(17,18,20,0.65); font-size: 0.82rem; line-height: 1.35; margin-bottom: 12px; }
|
|
.batch-mass-input-box { border: 1px solid rgba(17,18,20,0.07); background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.72)); border-radius: 14px; padding: 12px; margin-bottom: 12px; display: grid; gap: 10px; }
|
|
.batch-mass-input-head { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
|
|
.batch-mass-title { font-size: 0.9rem; font-weight: 900; color: var(--text); }
|
|
.batch-mass-sub { font-size: 0.76rem; color: rgba(17,18,20,0.62); line-height: 1.35; margin-top: 3px; code { font-size: 0.72rem; color: var(--blue); background: rgba(3,15,170,0.05); border: 1px solid rgba(3,15,170,0.08); border-radius: 6px; padding: 1px 4px; } }
|
|
.batch-mass-controls { display: grid; gap: 4px; min-width: 150px; }
|
|
.batch-mass-guide { border: 1px solid rgba(3,15,170,0.08); border-radius: 12px; background: rgba(3,15,170,0.02); overflow: hidden;
|
|
summary { cursor: pointer; list-style: none; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 8px 12px; padding: 10px 12px; font-weight: 800; color: rgba(17,18,20,0.78); small { font-size: 0.72rem; font-weight: 700; color: rgba(17,18,20,0.55); text-align: left; white-space: normal; } }
|
|
}
|
|
.batch-mass-guide-body { padding: 10px 12px 12px; border-top: 1px solid rgba(3,15,170,0.06); display: grid; gap: 10px; }
|
|
.batch-mass-guide-list { display: grid; grid-template-columns: 1fr; gap: 8px; }
|
|
.batch-mass-guide-item { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 8px; align-items: start; border: 1px solid rgba(17,18,20,0.06); background: rgba(255,255,255,0.88); border-radius: 10px; padding: 8px; .pos { width: 28px; height: 28px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: rgba(3,15,170,0.08); color: var(--blue); font-weight: 900; font-size: 0.78rem; } .meta { min-width: 0; display: grid; gap: 2px; } .name { display: block; font-size: 0.79rem; font-weight: 800; color: var(--text); line-height: 1.25; } .hint { display: block; font-size: 0.71rem; color: rgba(17,18,20,0.62); font-weight: 800; line-height: 1.2; } .note { display: block; font-size: 0.71rem; color: rgba(17,18,20,0.56); line-height: 1.25; } }
|
|
.batch-mass-guide-note { border-radius: 8px; background: rgba(255,255,255,0.85); border: 1px solid rgba(17,18,20,0.05); padding: 8px 10px; font-size: 0.76rem; color: rgba(17,18,20,0.62); }
|
|
.batch-mass-defaults { border: 1px solid rgba(17,18,20,0.06); border-radius: 12px; background: rgba(255,255,255,0.8); overflow: hidden;
|
|
summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 10px 12px; font-weight: 800; color: rgba(17,18,20,0.78); background: rgba(3,15,170,0.02); small { font-size: 0.72rem; font-weight: 700; color: rgba(17,18,20,0.55); text-align: right; } }
|
|
}
|
|
.batch-mass-defaults-body { padding: 12px; border-top: 1px solid rgba(17,18,20,0.05); }
|
|
.batch-mass-textarea { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.82rem; line-height: 1.35; resize: vertical; min-height: 120px; }
|
|
.batch-mass-actions { display: flex; flex-wrap: wrap; gap: 8px; }
|
|
.batch-mass-preview { border-top: 1px solid rgba(17,18,20,0.06); padding-top: 10px; display: grid; gap: 8px; }
|
|
.batch-mass-preview-pills { display: flex; flex-wrap: wrap; gap: 6px; }
|
|
.batch-mass-preview-errors { border-radius: 10px; border: 1px solid rgba(220,53,69,0.16); background: rgba(220,53,69,0.05); color: #842029; padding: 8px 10px; font-size: 0.78rem; ul { margin: 0; padding-left: 16px; } }
|
|
.batch-mass-preview-table-wrap { overflow: auto; border: 1px solid rgba(17,18,20,0.06); border-radius: 10px; background: #fff; }
|
|
.batch-mass-preview-table { width: 100%; min-width: 780px; border-collapse: separate; border-spacing: 0; th, td { padding: 8px 10px; border-bottom: 1px solid rgba(17,18,20,0.05); font-size: 0.76rem; vertical-align: top; } thead th { background: rgba(248,249,250,0.95); font-weight: 900; text-transform: uppercase; letter-spacing: 0.03em; color: rgba(17,18,20,0.62); white-space: nowrap; } tbody tr:last-child td { border-bottom: 0; } }
|
|
.batch-mass-preview-foot { font-size: 0.74rem; color: rgba(17,18,20,0.58); padding: 8px 10px 0; }
|
|
.batch-actions-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
|
|
.batch-editor-layout { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 12px; align-items: start; }
|
|
.batch-grid-pane { min-width: 0; display: grid; gap: 10px; }
|
|
.batch-drawer-col { min-width: 0; }
|
|
.batch-lines-empty { border: 1px dashed rgba(17,18,20,0.12); background: rgba(255,255,255,0.65); color: rgba(17,18,20,0.6); border-radius: 12px; padding: 14px; text-align: center; font-weight: 600; }
|
|
.batch-lines-table-wrap { overflow: auto; border: 1px solid rgba(17,18,20,0.08); border-radius: 14px; background: #fff; }
|
|
.batch-lines-table { width: 100%; min-width: 1010px; border-collapse: separate; border-spacing: 0; th, td { padding: 10px; border-bottom: 1px solid rgba(17,18,20,0.06); vertical-align: middle; } thead th { position: sticky; top: 0; z-index: 1; background: rgba(248, 249, 250, 0.96); font-size: 0.73rem; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(17,18,20,0.65); font-weight: 900; white-space: nowrap; } thead th:last-child { padding-left: 4px; padding-right: 4px; } tbody tr { transition: background-color 0.15s ease; &.is-selected { background: rgba(3,15,170,0.03); } &.is-invalid-row { background: rgba(220,53,69,0.025); } &:hover { background: rgba(227,61,207,0.03); } } tbody tr:last-child td { border-bottom: 0; } .index-cell { width: 64px; text-align: center; font-weight: 900; color: var(--blue); } .validation-cell { min-width: 160px; } .actions-cell { width: 76px; min-width: 76px; text-align: left; white-space: nowrap; padding-left: 0; padding-right: 2px; display: flex; align-items: center; justify-content: flex-start; gap: 4px; } .form-control { min-width: 140px; } }
|
|
.batch-input-invalid { border-color: rgba(220,53,69,0.45) !important; background: rgba(220,53,69,0.03) !important; box-shadow: inset 0 0 0 1px rgba(220,53,69,0.08); }
|
|
.batch-row-valid { display: inline-flex; align-items: center; gap: 6px; font-size: 0.76rem; font-weight: 900; color: #157347; background: rgba(25,135,84,0.07); border: 1px solid rgba(25,135,84,0.12); border-radius: 999px; padding: 5px 9px; }
|
|
.batch-row-errors { margin: 0; padding-left: 14px; color: #842029; font-size: 0.74rem; line-height: 1.2; li + li { margin-top: 3px; } }
|
|
.batch-row-errors-compact { display: grid; gap: 2px; color: #842029; }
|
|
.batch-row-error-main { font-size: 0.76rem; font-weight: 800; line-height: 1.15; }
|
|
.batch-row-more { font-size: 0.7rem; color: rgba(132,32,41,0.8); font-weight: 700; }
|
|
.batch-detail-attention { border-color: rgba(220,53,69,0.25) !important; color: #842029 !important; background: rgba(220,53,69,0.06) !important; }
|
|
.batch-selected-hint { margin-top: 10px; font-size: 0.8rem; color: rgba(17,18,20,0.6); display: flex; align-items: center; gap: 8px; i { color: var(--blue); } }
|
|
.batch-detail-drawer { background: #fff; border: 1px solid rgba(17,18,20,0.08); border-radius: 16px; box-shadow: 0 14px 28px rgba(17,18,20,0.08); overflow: hidden; display: flex; flex-direction: column; max-height: 72vh; position: sticky; top: 0; }
|
|
.batch-detail-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; padding: 12px; border-bottom: 1px solid rgba(17,18,20,0.06); background: linear-gradient(180deg, rgba(3,15,170,0.03), rgba(255,255,255,0.9)); }
|
|
.batch-detail-title { font-size: 0.95rem; font-weight: 900; color: var(--text); }
|
|
.batch-detail-sub { margin-top: 2px; font-size: 0.76rem; color: rgba(17,18,20,0.6); }
|
|
.batch-detail-body { padding: 12px; overflow: auto; }
|
|
.batch-detail-body .detail-box { border-radius: 12px; }
|
|
.batch-detail-placeholder { border: 1px dashed rgba(17,18,20,0.12); border-radius: 16px; background: rgba(255,255,255,0.72); padding: 18px; color: rgba(17,18,20,0.62); display: grid; gap: 8px; align-content: start; min-height: 180px; i { font-size: 1.4rem; color: var(--blue); } p { margin: 0; font-weight: 700; } small { color: rgba(17,18,20,0.58); } }
|
|
|
|
@media (max-width: 768px) {
|
|
.mode-pill-group { width: 100%; border-radius: 14px; }
|
|
.mode-pill { flex: 1 1 180px; justify-content: center; }
|
|
.batch-actions-row .btn { flex: 1 1 200px; }
|
|
.batch-mass-input-head { flex-direction: column; }
|
|
.batch-mass-controls { min-width: 0; width: 100%; }
|
|
.batch-mass-guide summary { flex-direction: column; align-items: flex-start; }
|
|
.batch-mass-defaults summary { flex-direction: column; align-items: flex-start; }
|
|
.batch-mass-actions .btn { flex: 1 1 180px; }
|
|
.batch-editor-layout { grid-template-columns: 1fr; }
|
|
.batch-detail-drawer { position: static; max-height: none; }
|
|
.batch-detail-header { flex-direction: column; align-items: stretch; }
|
|
.batch-detail-header > .d-flex { flex-wrap: wrap; }
|
|
.batch-summary-strip { gap: 6px; }
|
|
.summary-pill { font-size: 0.72rem; }
|
|
.batch-validation-banner { align-items: flex-start; }
|
|
}
|
|
|
|
.modal-mve-audit {
|
|
width: min(1320px, calc(100vw - 40px));
|
|
max-width: min(1320px, calc(100vw - 40px));
|
|
max-height: calc(100vh - 48px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mve-audit-body {
|
|
display: grid;
|
|
gap: 16px;
|
|
overflow: auto;
|
|
position: relative;
|
|
}
|
|
|
|
.mve-intro-card,
|
|
.mve-upload-card {
|
|
background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,249,252,0.98));
|
|
border: 1px solid rgba(17,18,20,0.08);
|
|
border-radius: 18px;
|
|
padding: 18px;
|
|
box-shadow: 0 16px 32px rgba(17,18,20,0.05);
|
|
}
|
|
|
|
.mve-intro-card {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.mve-intro-title {
|
|
font-size: 1rem;
|
|
font-weight: 900;
|
|
color: var(--text);
|
|
}
|
|
|
|
.mve-intro-text {
|
|
margin-top: 6px;
|
|
color: rgba(17,18,20,0.68);
|
|
max-width: 760px;
|
|
line-height: 1.45;
|
|
}
|
|
|
|
.mve-intro-meta,
|
|
.mve-summary-notes {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
|
|
.meta-pill {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 7px 12px;
|
|
border-radius: 999px;
|
|
background: rgba(3,15,170,0.06);
|
|
color: rgba(17,18,20,0.76);
|
|
font-size: 0.76rem;
|
|
font-weight: 800;
|
|
border: 1px solid rgba(3,15,170,0.08);
|
|
|
|
&.accent {
|
|
background: rgba(12,132,78,0.08);
|
|
border-color: rgba(12,132,78,0.16);
|
|
color: #0c6c43;
|
|
}
|
|
}
|
|
|
|
.mve-section-title {
|
|
font-size: 0.94rem;
|
|
font-weight: 900;
|
|
color: var(--text);
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.mve-upload-zone {
|
|
display: grid;
|
|
gap: 8px;
|
|
justify-items: center;
|
|
text-align: center;
|
|
border: 1.5px dashed rgba(3,15,170,0.22);
|
|
border-radius: 18px;
|
|
padding: 28px 18px;
|
|
background:
|
|
radial-gradient(circle at top right, rgba(3,15,170,0.08), transparent 36%),
|
|
linear-gradient(180deg, rgba(255,255,255,0.96), rgba(243,247,255,0.92));
|
|
cursor: pointer;
|
|
transition: border-color 0.18s ease, transform 0.18s ease;
|
|
|
|
&:hover {
|
|
border-color: rgba(3,15,170,0.38);
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
input {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.upload-icon {
|
|
width: 54px;
|
|
height: 54px;
|
|
border-radius: 16px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: rgba(3,15,170,0.08);
|
|
color: var(--blue);
|
|
font-size: 1.4rem;
|
|
}
|
|
|
|
.upload-title {
|
|
font-size: 0.96rem;
|
|
font-weight: 900;
|
|
color: var(--text);
|
|
}
|
|
|
|
.upload-subtitle,
|
|
.processing-text,
|
|
.mve-upload-meta {
|
|
color: rgba(17,18,20,0.62);
|
|
font-size: 0.82rem;
|
|
}
|
|
|
|
.mve-upload-actions,
|
|
.mve-actions-row,
|
|
.confirm-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
align-items: center;
|
|
}
|
|
|
|
.mve-upload-actions {
|
|
margin-top: 14px;
|
|
}
|
|
|
|
.mve-processing {
|
|
display: grid;
|
|
gap: 10px;
|
|
margin-top: 14px;
|
|
}
|
|
|
|
.progress-track {
|
|
width: 100%;
|
|
height: 8px;
|
|
border-radius: 999px;
|
|
background: rgba(17,18,20,0.08);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.progress-indeterminate {
|
|
display: block;
|
|
width: 34%;
|
|
height: 100%;
|
|
border-radius: inherit;
|
|
background: linear-gradient(90deg, #030faa, #2b55e3);
|
|
animation: mve-progress 1.25s linear infinite;
|
|
}
|
|
|
|
@keyframes mve-progress {
|
|
from { transform: translateX(-120%); }
|
|
to { transform: translateX(320%); }
|
|
}
|
|
|
|
.mve-summary-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(7, minmax(0, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.mve-summary-card {
|
|
background: #fff;
|
|
border: 1px solid rgba(17,18,20,0.07);
|
|
border-radius: 18px;
|
|
padding: 16px 14px;
|
|
display: grid;
|
|
gap: 6px;
|
|
box-shadow: 0 12px 24px rgba(17,18,20,0.05);
|
|
|
|
strong {
|
|
font-size: 1.36rem;
|
|
color: var(--text);
|
|
}
|
|
|
|
&.is-positive strong { color: #198754; }
|
|
&.is-danger strong { color: #b42318; }
|
|
&.is-warning strong { color: #b54708; }
|
|
}
|
|
|
|
.summary-label {
|
|
font-size: 0.76rem;
|
|
letter-spacing: 0.03em;
|
|
text-transform: uppercase;
|
|
color: rgba(17,18,20,0.58);
|
|
font-weight: 900;
|
|
}
|
|
|
|
.mve-result-toolbar {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
gap: 14px;
|
|
align-items: center;
|
|
}
|
|
|
|
.mve-filter-tabs {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
|
|
.mve-toolbar-right {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 12px;
|
|
align-items: center;
|
|
}
|
|
|
|
.mve-search-group {
|
|
min-width: min(420px, 100%);
|
|
}
|
|
|
|
.mve-sync-banner {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
align-items: center;
|
|
padding: 14px 16px;
|
|
border-radius: 16px;
|
|
background: rgba(12,132,78,0.08);
|
|
border: 1px solid rgba(12,132,78,0.16);
|
|
color: #0c6c43;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.mve-empty {
|
|
display: grid;
|
|
place-items: center;
|
|
gap: 8px;
|
|
min-height: 180px;
|
|
border-radius: 18px;
|
|
border: 1px dashed rgba(17,18,20,0.14);
|
|
background: rgba(255,255,255,0.72);
|
|
color: rgba(17,18,20,0.62);
|
|
|
|
i {
|
|
font-size: 1.5rem;
|
|
color: #198754;
|
|
}
|
|
}
|
|
|
|
.mve-table-wrap {
|
|
max-height: min(48vh, 560px);
|
|
border-radius: 18px;
|
|
background: #fff;
|
|
}
|
|
|
|
.mve-table {
|
|
min-width: 980px;
|
|
|
|
thead th {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 1;
|
|
background: rgba(248,249,250,0.97);
|
|
font-size: 0.73rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
color: rgba(17,18,20,0.64);
|
|
font-weight: 900;
|
|
}
|
|
}
|
|
|
|
.mve-status-pair,
|
|
.mve-cell-stack {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
}
|
|
|
|
.mve-status-pair {
|
|
.bi-arrow-right {
|
|
font-size: 0.8rem;
|
|
}
|
|
}
|
|
|
|
.mve-issue-tag,
|
|
.mve-severity {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
align-self: flex-start;
|
|
padding: 6px 10px;
|
|
border-radius: 999px;
|
|
font-size: 0.74rem;
|
|
font-weight: 900;
|
|
border: 1px solid transparent;
|
|
|
|
&.status { background: rgba(180,35,24,0.09); color: #b42318; border-color: rgba(180,35,24,0.16); }
|
|
&.data { background: rgba(181,71,8,0.09); color: #b54708; border-color: rgba(181,71,8,0.16); }
|
|
&.system { background: rgba(3,15,170,0.08); color: var(--blue); border-color: rgba(3,15,170,0.15); }
|
|
&.report { background: rgba(10,91,168,0.08); color: #0a5ba8; border-color: rgba(10,91,168,0.15); }
|
|
&.duplicate { background: rgba(113,46,170,0.08); color: #712eaa; border-color: rgba(113,46,170,0.14); }
|
|
&.warning { background: rgba(245,158,11,0.12); color: #9a6700; border-color: rgba(245,158,11,0.16); }
|
|
&.neutral { background: rgba(17,18,20,0.06); color: rgba(17,18,20,0.72); border-color: rgba(17,18,20,0.1); }
|
|
}
|
|
|
|
.mve-severity {
|
|
&.critical { background: rgba(180,35,24,0.08); color: #b42318; border-color: rgba(180,35,24,0.15); }
|
|
&.medium { background: rgba(181,71,8,0.08); color: #b54708; border-color: rgba(181,71,8,0.14); }
|
|
&.warning { background: rgba(245,158,11,0.12); color: #9a6700; border-color: rgba(245,158,11,0.18); }
|
|
&.neutral { background: rgba(17,18,20,0.06); color: rgba(17,18,20,0.65); border-color: rgba(17,18,20,0.1); }
|
|
}
|
|
|
|
.mve-differences-text {
|
|
color: rgba(17,18,20,0.78);
|
|
line-height: 1.38;
|
|
min-width: 260px;
|
|
}
|
|
|
|
.mve-footer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
align-items: center;
|
|
}
|
|
|
|
.mve-actions-row {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.mve-confirm-overlay {
|
|
position: sticky;
|
|
bottom: 0;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
padding-top: 8px;
|
|
}
|
|
|
|
.mve-confirm-card {
|
|
width: min(420px, 100%);
|
|
background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,248,255,0.98));
|
|
border: 1px solid rgba(3,15,170,0.12);
|
|
border-radius: 18px;
|
|
padding: 18px;
|
|
box-shadow: 0 18px 36px rgba(17,18,20,0.12);
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.confirm-title {
|
|
font-size: 1rem;
|
|
font-weight: 900;
|
|
color: var(--text);
|
|
}
|
|
|
|
.confirm-text,
|
|
.confirm-footnote {
|
|
color: rgba(17,18,20,0.68);
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.confirm-summary {
|
|
display: grid;
|
|
gap: 6px;
|
|
padding: 12px 14px;
|
|
border-radius: 14px;
|
|
background: rgba(3,15,170,0.05);
|
|
border: 1px solid rgba(3,15,170,0.08);
|
|
font-weight: 700;
|
|
}
|
|
|
|
@media (max-width: 1200px) {
|
|
.mve-summary-grid {
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.modal-mve-audit {
|
|
width: calc(100vw - 20px);
|
|
max-width: calc(100vw - 20px);
|
|
max-height: calc(100vh - 20px);
|
|
}
|
|
|
|
.mve-intro-card,
|
|
.mve-result-toolbar,
|
|
.mve-footer,
|
|
.mve-sync-banner {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.mve-summary-grid {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.mve-toolbar-right,
|
|
.mve-actions-row,
|
|
.confirm-actions {
|
|
width: 100%;
|
|
}
|
|
|
|
.mve-toolbar-right > *,
|
|
.mve-actions-row .btn,
|
|
.confirm-actions .btn,
|
|
.mve-upload-actions .btn {
|
|
flex: 1 1 100%;
|
|
}
|
|
|
|
.mve-search-group {
|
|
min-width: 100%;
|
|
}
|
|
}
|