JerLag commited on
Commit
167fef9
·
verified ·
1 Parent(s): 16a44bd

Update verbatim.css

Browse files
Files changed (1) hide show
  1. verbatim.css +16 -0
verbatim.css CHANGED
@@ -165,3 +165,19 @@ html, body, .gradio-container {
165
  padding: 14px 22px !important; /* keeps the nice size */
166
  }
167
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
165
  padding: 14px 22px !important; /* keeps the nice size */
166
  }
167
 
168
+ /* Couleur de fond des blocs "empty … unpadded_box" = dégradé du logo */
169
+ :root{
170
+ /* (optionnel) variable de confort pour réutiliser ailleurs */
171
+ --vb-secondary-bg: linear-gradient(180deg, rgba(124,58,237,.14), rgba(6,182,212,.14));
172
+ }
173
+
174
+ /* Cible robuste (la classe svelte hashée peut changer) */
175
+ .gradio-container .empty[class*="unpadded_box"],
176
+ .gradio-container [aria-label="Empty value"]{
177
+ --background-fill-secondary: var(--vb-secondary-bg) !important;
178
+ background: var(--background-fill-secondary) !important;
179
+ border-color: transparent !important;
180
+ color:#0F172A !important; /* texte bien noir */
181
+ box-shadow: 0 10px 26px rgba(2,6,23,.08);
182
+ }
183
+