JerLag commited on
Commit
9479c7c
·
verified ·
1 Parent(s): 167fef9

Update verbatim.css

Browse files
Files changed (1) hide show
  1. verbatim.css +22 -0
verbatim.css CHANGED
@@ -181,3 +181,25 @@ html, body, .gradio-container {
181
  box-shadow: 0 10px 26px rgba(2,6,23,.08);
182
  }
183
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
181
  box-shadow: 0 10px 26px rgba(2,6,23,.08);
182
  }
183
 
184
+ /* ---- Retire les rubans/étiquettes noirs en haut-gauche des blocs ---- */
185
+ .gradio-container [data-testid="block-info"],
186
+ .gradio-container [data-testid="block-label"],
187
+ .gradio-container .block .label,
188
+ .gradio-container .wrap > .label,
189
+ .gradio-container .wrap [class*="label"],
190
+ .gradio-container [class*="header-button"], /* boutons d'entêtes de tables */
191
+ .gradio-container .table caption {
192
+ display: none !important;
193
+ background: transparent !important;
194
+ border: 0 !important;
195
+ box-shadow: none !important;
196
+ }
197
+
198
+ /* Sécurité : si un style inline met quand même un fond sombre, on neutralise */
199
+ .gradio-container span[data-testid="block-info"],
200
+ .gradio-container .block .label::before,
201
+ .gradio-container .block .label::after {
202
+ display: none !important;
203
+ background: transparent !important;
204
+ border: 0 !important;
205
+ }