Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -169,7 +169,7 @@ label {
|
|
169 |
margin-right: 10px;
|
170 |
}
|
171 |
|
172 |
-
|
173 |
background-color: #E68369;
|
174 |
color: white;
|
175 |
border: none;
|
@@ -179,7 +179,7 @@ label {
|
|
179 |
cursor: pointer;
|
180 |
}
|
181 |
|
182 |
-
|
183 |
background-color: white;
|
184 |
color: #E6B9A6;
|
185 |
}
|
@@ -285,7 +285,7 @@ with gr.Blocks(css=custom_css) as demo:
|
|
285 |
audio_output = gr.Audio(label="🔊", visible=False)
|
286 |
|
287 |
with gr.Row():
|
288 |
-
submit_button_chat = gr.Button("إرسال", interactive=True, visible=False)
|
289 |
with gr.Row():
|
290 |
clear_btn = gr.Button("مسح", interactive=True, visible=False)
|
291 |
|
|
|
169 |
margin-right: 10px;
|
170 |
}
|
171 |
|
172 |
+
.custom-submit-button {
|
173 |
background-color: #E68369;
|
174 |
color: white;
|
175 |
border: none;
|
|
|
179 |
cursor: pointer;
|
180 |
}
|
181 |
|
182 |
+
.custom-submit-button:hover {
|
183 |
background-color: white;
|
184 |
color: #E6B9A6;
|
185 |
}
|
|
|
285 |
audio_output = gr.Audio(label="🔊", visible=False)
|
286 |
|
287 |
with gr.Row():
|
288 |
+
submit_button_chat = gr.Button("إرسال", interactive=True, visible=False, elem_id="submit_button_chat", classes="custom-submit-button")
|
289 |
with gr.Row():
|
290 |
clear_btn = gr.Button("مسح", interactive=True, visible=False)
|
291 |
|