box color
Browse files
app.py
CHANGED
@@ -114,16 +114,46 @@ def create_ui():
|
|
114 |
}
|
115 |
/* Style for the progress status container and text - fixed height and italics */
|
116 |
.progress-container {
|
117 |
-
min-height:
|
118 |
padding: 12px;
|
119 |
display: flex;
|
120 |
align-items: center;
|
121 |
margin-bottom: 10px;
|
|
|
122 |
}
|
123 |
.progress-status {
|
124 |
font-style: italic;
|
125 |
width: 100%;
|
126 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
.arrow-indicator {
|
128 |
margin-left: 10px;
|
129 |
font-size: 16px;
|
|
|
114 |
}
|
115 |
/* Style for the progress status container and text - fixed height and italics */
|
116 |
.progress-container {
|
117 |
+
min-height: 65px; /* Increased height to prevent scrolling */
|
118 |
padding: 12px;
|
119 |
display: flex;
|
120 |
align-items: center;
|
121 |
margin-bottom: 10px;
|
122 |
+
background-color: transparent !important; /* Force transparency */
|
123 |
}
|
124 |
.progress-status {
|
125 |
font-style: italic;
|
126 |
width: 100%;
|
127 |
}
|
128 |
+
/* Fix for any other elements that might have backgrounds */
|
129 |
+
.gradio-container .prose,
|
130 |
+
.gradio-container [class*="message"],
|
131 |
+
.gradio-container [class*="container"],
|
132 |
+
.gradio-container [class*="wrap"],
|
133 |
+
.gradio-container [class*="panel"],
|
134 |
+
.gradio-container [class*="box"] {
|
135 |
+
background-color: transparent !important;
|
136 |
+
}
|
137 |
+
/* Ensure the validation results have the same background as the page */
|
138 |
+
.validation-results {
|
139 |
+
background-color: transparent !important;
|
140 |
+
}
|
141 |
+
/* Fix for tab container backgrounds */
|
142 |
+
.tabs > .tab-nav {
|
143 |
+
background-color: transparent !important;
|
144 |
+
}
|
145 |
+
.tabs > .tabitem {
|
146 |
+
background-color: transparent !important;
|
147 |
+
}
|
148 |
+
/* Ensure HTML components don't get unwanted backgrounds */
|
149 |
+
.gradio-html {
|
150 |
+
background-color: transparent !important;
|
151 |
+
}
|
152 |
+
/* Add slight border for visual separation instead of background color */
|
153 |
+
.progress-container {
|
154 |
+
border: 1px solid var(--border-color-primary, rgba(128, 128, 128, 0.1));
|
155 |
+
border-radius: 8px;
|
156 |
+
}
|
157 |
.arrow-indicator {
|
158 |
margin-left: 10px;
|
159 |
font-size: 16px;
|