forked from RiseUP/riseup-squad23
158 lines
3.4 KiB
CSS
158 lines
3.4 KiB
CSS
/* Default (light mode) styles */
|
|
html {
|
|
background-color: #f8f9fa;
|
|
color: #212529;
|
|
}
|
|
|
|
.calendario {
|
|
background-color: #fff;
|
|
border: 1px solid #dee2e6;
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
|
|
}
|
|
|
|
.busca-atendimento input {
|
|
background-color: #fff;
|
|
color: #212529;
|
|
border: 1px solid #ced4da;
|
|
}
|
|
|
|
.busca-atendimento select {
|
|
background-color: #5980fd;
|
|
color: #fff;
|
|
}
|
|
|
|
.btn-selecionar-tabeladia,
|
|
.btn-selecionar-tabelasemana,
|
|
.btn-selecionar-tabelames {
|
|
background-color: #fff;
|
|
color: #212529;
|
|
}
|
|
|
|
.btn-selecionar-tabeladia.ativo,
|
|
.btn-selecionar-tabelasemana.ativo,
|
|
.btn-selecionar-tabelames.ativo {
|
|
background-color: #5980fd;
|
|
color: #fff;
|
|
border-color: #3a5ccc;
|
|
}
|
|
|
|
.btn-fila-espera,
|
|
.btn-agenda {
|
|
background-color: #fff;
|
|
color: #212529;
|
|
border-bottom: 3px solid transparent;
|
|
}
|
|
|
|
.opc-filaespera-ativo,
|
|
.opc-agenda-ativo {
|
|
background-color: #5980fd;
|
|
color: #fff;
|
|
}
|
|
|
|
#status-card-consulta-realizado,
|
|
.legenda-item-realizado {
|
|
background-color: #e6f9e6;
|
|
border: 3px solid #b7ffbd;
|
|
color: #2e4d2e;
|
|
}
|
|
|
|
#status-card-consulta-cancelado,
|
|
.legenda-item-cancelado {
|
|
background-color: #ffe6ee;
|
|
border: 3px solid #ffb7cc;
|
|
color: #4d2e36;
|
|
}
|
|
|
|
#status-card-consulta-confirmado,
|
|
.legenda-item-confirmado {
|
|
background-color: #e6f0fa;
|
|
border: 3px solid #eef8fb;
|
|
color: #2e3a4d;
|
|
}
|
|
|
|
#status-card-consulta-agendado,
|
|
.legenda-item-agendado {
|
|
background-color: #f7f7c4;
|
|
border: 3px solid #f7f7c4;
|
|
color: #4d4d2e;
|
|
}
|
|
|
|
/* Dark mode styles */
|
|
html[data-bs-theme="dark"] {
|
|
background-color: #181a1b;
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
html[data-bs-theme="dark"] .calendario {
|
|
background-color: #23272a;
|
|
border: 1px solid #333;
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.25);
|
|
}
|
|
|
|
html[data-bs-theme="dark"] .busca-atendimento input {
|
|
background-color: #23272a;
|
|
color: #e0e0e0;
|
|
border: 1px solid #444;
|
|
}
|
|
|
|
html[data-bs-theme="dark"] .busca-atendimento select {
|
|
background-color: #5980fd;
|
|
color: #fff;
|
|
}
|
|
|
|
html[data-bs-theme="dark"] .btn-selecionar-tabeladia,
|
|
html[data-bs-theme="dark"] .btn-selecionar-tabelasemana,
|
|
html[data-bs-theme="dark"] .btn-selecionar-tabelames {
|
|
background-color: #23272a;
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
html[data-bs-theme="dark"] .btn-selecionar-tabeladia.ativo,
|
|
html[data-bs-theme="dark"] .btn-selecionar-tabelasemana.ativo,
|
|
html[data-bs-theme="dark"] .btn-selecionar-tabelames.ativo {
|
|
background-color: #5980fd;
|
|
color: #fff;
|
|
border-color: #3a5ccc;
|
|
}
|
|
|
|
html[data-bs-theme="dark"] .btn-fila-espera,
|
|
html[data-bs-theme="dark"] .btn-agenda {
|
|
background-color: #23272a;
|
|
color: #e0e0e0;
|
|
border-bottom: 3px solid transparent;
|
|
}
|
|
|
|
html[data-bs-theme="dark"] .opc-filaespera-ativo,
|
|
html[data-bs-theme="dark"] .opc-agenda-ativo {
|
|
background-color: #5980fd;
|
|
color: #fff;
|
|
}
|
|
|
|
html[data-bs-theme="dark"] #status-card-consulta-realizado,
|
|
html[data-bs-theme="dark"] .legenda-item-realizado {
|
|
background-color: #1e2e1e;
|
|
border: 3px solid #2e4d2e;
|
|
color: #b7ffbd;
|
|
}
|
|
|
|
html[data-bs-theme="dark"] #status-card-consulta-cancelado,
|
|
html[data-bs-theme="dark"] .legenda-item-cancelado {
|
|
background-color: #2e1e23;
|
|
border: 3px solid #4d2e36;
|
|
color: #ffb7cc;
|
|
}
|
|
|
|
html[data-bs-theme="dark"] #status-card-consulta-confirmado,
|
|
html[data-bs-theme="dark"] .legenda-item-confirmado {
|
|
background-color: #1e2327;
|
|
border: 3px solid #2e3a4d;
|
|
color: #eef8fb;
|
|
}
|
|
|
|
html[data-bs-theme="dark"] #status-card-consulta-agendado,
|
|
html[data-bs-theme="dark"] .legenda-item-agendado {
|
|
background-color: #2e2e1e;
|
|
border: 3px solid #4d4d2e;
|
|
color: #f7f7c4;
|
|
}
|