style: melhora contraste e legibilidade do diagram
This commit is contained in:
parent
4e81ad1575
commit
6502f66de1
1 changed files with 9 additions and 8 deletions
|
|
@ -11,14 +11,15 @@ Este diagrama reflete o estado atual do sistema em ambiente de desenvolvimento (
|
|||
|
||||
```mermaid
|
||||
graph TD
|
||||
%% Estilos
|
||||
classDef working fill:#dcfce7,stroke:#16a34a,stroke-width:2px;
|
||||
classDef partial fill:#fef9c3,stroke:#ca8a04,stroke-width:2px,stroke-dasharray:5 5;
|
||||
classDef broken fill:#fee2e2,stroke:#dc2626,stroke-width:2px,stroke-dasharray:5 5;
|
||||
%% --- ESTILOS DE ALTO CONTRASTE ---
|
||||
%% Adicionei 'color:#000' (Preto) e aumentei a borda para 3px
|
||||
classDef working fill:#dcfce7,stroke:#16a34a,stroke-width:3px,color:#000;
|
||||
classDef partial fill:#fef9c3,stroke:#ca8a04,stroke-width:3px,stroke-dasharray:5 5,color:#000;
|
||||
classDef broken fill:#fee2e2,stroke:#dc2626,stroke-width:3px,stroke-dasharray:5 5,color:#000;
|
||||
classDef critical fill:#991b1b,stroke:#fca5a5,stroke-width:4px,color:#fff;
|
||||
classDef success fill:#dcfce7,stroke:#16a34a,stroke-width:2px;
|
||||
classDef warning fill:#fef9c3,stroke:#ca8a04,stroke-width:2px;
|
||||
classDef error fill:#fee2e2,stroke:#dc2626,stroke-width:2px;
|
||||
classDef success fill:#dcfce7,stroke:#16a34a,stroke-width:3px,color:#000;
|
||||
classDef warning fill:#fef9c3,stroke:#ca8a04,stroke-width:3px,color:#000;
|
||||
classDef error fill:#fee2e2,stroke:#dc2626,stroke-width:3px,color:#000;
|
||||
|
||||
subgraph Frontend["Frontend & App"]
|
||||
FE[Next.js 15]:::working
|
||||
|
|
@ -77,7 +78,7 @@ graph TD
|
|||
Empresa --> LoginE
|
||||
LoginE --> Dash
|
||||
Dash -->|Botão 'Publish' não funciona| NewJob
|
||||
NewJob -->|❌ Salva mas não aparece na lista da empresa| ListJobs
|
||||
NewJob -->|❌ Salva mas não aparece na lista| ListJobs
|
||||
NewJob -.->|❌ Pula Etapa| Payment
|
||||
LoginE -->|⚠️ PERIGO: Permite virar Admin| AdminUser
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue