Commit
·
47a077a
1
Parent(s):
d6e3146
remove border and change background color
Browse files
app.py
CHANGED
@@ -350,6 +350,7 @@ def create_chat_interface():
|
|
350 |
).set(
|
351 |
background_fill_secondary="#181818",
|
352 |
background_fill_secondary_dark="#181818",
|
|
|
353 |
),
|
354 |
) as demo:
|
355 |
chatbot = gr.Chatbot(
|
|
|
350 |
).set(
|
351 |
background_fill_secondary="#181818",
|
352 |
background_fill_secondary_dark="#181818",
|
353 |
+
block_background_fill="#181818",
|
354 |
),
|
355 |
) as demo:
|
356 |
chatbot = gr.Chatbot(
|
utils.py
CHANGED
@@ -170,6 +170,9 @@ a {
|
|
170 |
width: 100% !important;
|
171 |
max-width: 100% !important;
|
172 |
}
|
|
|
|
|
|
|
173 |
.flex-wrap {
|
174 |
border-style: none !important;
|
175 |
}
|
@@ -182,6 +185,9 @@ ol {
|
|
182 |
list-style-position: outside;
|
183 |
margin-left: 20px;
|
184 |
}
|
|
|
|
|
|
|
185 |
|
186 |
body.waiting * {
|
187 |
cursor: progress;
|
|
|
170 |
width: 100% !important;
|
171 |
max-width: 100% !important;
|
172 |
}
|
173 |
+
.message-row.message {
|
174 |
+
border: none !important;
|
175 |
+
}
|
176 |
.flex-wrap {
|
177 |
border-style: none !important;
|
178 |
}
|
|
|
185 |
list-style-position: outside;
|
186 |
margin-left: 20px;
|
187 |
}
|
188 |
+
#chatbot_textbox{
|
189 |
+
background-color: #27272a !important;
|
190 |
+
}
|
191 |
|
192 |
body.waiting * {
|
193 |
cursor: progress;
|