CSS
Browse files
app.py
CHANGED
|
@@ -1983,6 +1983,10 @@ css += """
|
|
| 1983 |
color: rgba(255,255,255,0.55) !important;
|
| 1984 |
}
|
| 1985 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1986 |
/* Items + all descendants (fixes spans / inherited theme colors) */
|
| 1987 |
.cd-item,
|
| 1988 |
.cd-item *{
|
|
@@ -2005,7 +2009,6 @@ css += """
|
|
| 2005 |
color: rgba(255,255,255,0.75) !important;
|
| 2006 |
}
|
| 2007 |
|
| 2008 |
-
|
| 2009 |
"""
|
| 2010 |
|
| 2011 |
|
|
@@ -2247,8 +2250,8 @@ with gr.Blocks(title="LTX-2 Video Distilled 🎥🔈") as demo:
|
|
| 2247 |
outputs=[output_video]
|
| 2248 |
)
|
| 2249 |
|
| 2250 |
-
# Add example
|
| 2251 |
gr.Examples(
|
|
|
|
| 2252 |
examples=[
|
| 2253 |
[
|
| 2254 |
"supergirl-2.png",
|
|
|
|
| 1983 |
color: rgba(255,255,255,0.55) !important;
|
| 1984 |
}
|
| 1985 |
|
| 1986 |
+
#default_examples {
|
| 1987 |
+
display:none;
|
| 1988 |
+
}
|
| 1989 |
+
|
| 1990 |
/* Items + all descendants (fixes spans / inherited theme colors) */
|
| 1991 |
.cd-item,
|
| 1992 |
.cd-item *{
|
|
|
|
| 2009 |
color: rgba(255,255,255,0.75) !important;
|
| 2010 |
}
|
| 2011 |
|
|
|
|
| 2012 |
"""
|
| 2013 |
|
| 2014 |
|
|
|
|
| 2250 |
outputs=[output_video]
|
| 2251 |
)
|
| 2252 |
|
|
|
|
| 2253 |
gr.Examples(
|
| 2254 |
+
elem_id="default_examples"
|
| 2255 |
examples=[
|
| 2256 |
[
|
| 2257 |
"supergirl-2.png",
|