35 lines
936 B
SCSS
35 lines
936 B
SCSS
@import "variables";
|
|
|
|
[data-color-scheme="dark"] .o_fusion_reports {
|
|
background: #1f2937;
|
|
color: #f9fafb;
|
|
|
|
&_header, &_table, &_filters, .o_fusion_commentary_panel {
|
|
background: #111827;
|
|
border-color: #374151;
|
|
color: #f9fafb;
|
|
}
|
|
|
|
&_table {
|
|
th { background: #1f2937; color: #d1d5db; }
|
|
td { border-color: #374151; }
|
|
tr.subtotal { background: #1f2937; }
|
|
tr.drillable:hover { background: #1e3a8a; }
|
|
}
|
|
|
|
.btn_report {
|
|
background: #374151;
|
|
border-color: #4b5563;
|
|
color: #f9fafb;
|
|
|
|
&:hover { background: #4b5563; }
|
|
&.primary { background: #3b82f6; }
|
|
}
|
|
|
|
.o_fusion_anomaly_strip {
|
|
&[data-severity="high"] { background: rgba(239, 68, 68, 0.15); }
|
|
&[data-severity="medium"] { background: rgba(245, 158, 11, 0.15); }
|
|
&[data-severity="low"] { background: rgba(16, 185, 129, 0.15); }
|
|
}
|
|
}
|