remove horizontal scrollbar, fix css issues on start/end frame thumbnails
This commit is contained in:
parent
dac6796e87
commit
3b066849de
|
|
@ -2805,7 +2805,7 @@ def generate_video_tab(image2video=False):
|
||||||
queue_df = gr.DataFrame(
|
queue_df = gr.DataFrame(
|
||||||
headers=["Qty","Prompt", "Length","Steps","", "", "", "", ""],
|
headers=["Qty","Prompt", "Length","Steps","", "", "", "", ""],
|
||||||
datatype=[ "str","markdown","str", "markdown", "markdown", "markdown", "str", "str", "str"],
|
datatype=[ "str","markdown","str", "markdown", "markdown", "markdown", "str", "str", "str"],
|
||||||
column_widths= ["50","", "65","55", "60", "60", "30", "30", "35"],
|
column_widths= ["5%", None, "7%", "7%", "10%", "10%", "3%", "3%", "3%"],
|
||||||
interactive=False,
|
interactive=False,
|
||||||
col_count=(9, "fixed"),
|
col_count=(9, "fixed"),
|
||||||
wrap=True,
|
wrap=True,
|
||||||
|
|
@ -3375,16 +3375,13 @@ def create_demo():
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
font-size:11px;
|
font-size:11px;
|
||||||
}
|
}
|
||||||
#xqueue_df table {
|
#queue_df table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow: hidden !important;
|
overflow: hidden !important;
|
||||||
}
|
}
|
||||||
#xqueue_df::-webkit-scrollbar {
|
#queue_df {
|
||||||
display: none !important;
|
overflow-x: hidden !important;
|
||||||
}
|
overflow-y: auto;
|
||||||
#xqueue_df {
|
|
||||||
scrollbar-width: none !important;
|
|
||||||
-ms-overflow-style: none !important;
|
|
||||||
}
|
}
|
||||||
.selection-button {
|
.selection-button {
|
||||||
display: none;
|
display: none;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue