Spaces:
Running
Running
Update ui/ui_generators.py
Browse files- ui/ui_generators.py +50 -0
ui/ui_generators.py
CHANGED
@@ -986,6 +986,56 @@ def create_enhanced_report_tab(agentic_modules_loaded_status: bool):
|
|
986 |
.loading-indicator {
|
987 |
display: none !important; /* Hide the entire loading indicator block */
|
988 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
989 |
</style>
|
990 |
"""
|
991 |
|
|
|
986 |
.loading-indicator {
|
987 |
display: none !important; /* Hide the entire loading indicator block */
|
988 |
}
|
989 |
+
|
990 |
+
/* Dark Mode Styles for Report Tab */
|
991 |
+
@media (prefers-color-scheme: dark) {
|
992 |
+
.report-container {
|
993 |
+
background: #1a202c;
|
994 |
+
color: #e2e8f0;
|
995 |
+
}
|
996 |
+
.report-header {
|
997 |
+
border-bottom-color: #4a5568;
|
998 |
+
}
|
999 |
+
.report-title, .report-body-content h1, .report-body-content h2, .report-body-content h3 {
|
1000 |
+
color: #f7fafc;
|
1001 |
+
}
|
1002 |
+
.report-subtitle, .selection-description, .report-body-content p, .report-body-content li, .report-body-content em {
|
1003 |
+
color: #a0aec0;
|
1004 |
+
}
|
1005 |
+
.report-selection {
|
1006 |
+
background: #2d3748;
|
1007 |
+
border-color: #4a5568;
|
1008 |
+
}
|
1009 |
+
.selection-title {
|
1010 |
+
color: #f7fafc;
|
1011 |
+
}
|
1012 |
+
.report-content {
|
1013 |
+
background: #2d3748;
|
1014 |
+
border-color: #4a5568;
|
1015 |
+
box-shadow: 0 2px 12px rgba(0,0,0,0.3);
|
1016 |
+
}
|
1017 |
+
.report-body-content h2 {
|
1018 |
+
border-bottom-color: #4a5568;
|
1019 |
+
}
|
1020 |
+
.report-body-content strong {
|
1021 |
+
color: #f7fafc;
|
1022 |
+
}
|
1023 |
+
.report-body-content blockquote {
|
1024 |
+
background: #1a202c;
|
1025 |
+
border-left-color: #764ba2;
|
1026 |
+
color: #a0aec0;
|
1027 |
+
}
|
1028 |
+
.report-body-content code {
|
1029 |
+
background: #4a5568;
|
1030 |
+
color: #f7fafc;
|
1031 |
+
}
|
1032 |
+
.empty-state {
|
1033 |
+
color: #a0aec0;
|
1034 |
+
}
|
1035 |
+
.empty-state-title {
|
1036 |
+
color: #f7fafc;
|
1037 |
+
}
|
1038 |
+
}
|
1039 |
</style>
|
1040 |
"""
|
1041 |
|