Spaces:
Running
Running
Merge branch 'main' of https://huggingface.co/spaces/AhmadRollHF/ChatWithTranscript
Browse files
app.py
CHANGED
@@ -582,6 +582,7 @@ def create_chat_interface():
|
|
582 |
}
|
583 |
#chatbot_box{
|
584 |
flex-grow: 1 !important;
|
|
|
585 |
}
|
586 |
|
587 |
#link-frame {
|
@@ -592,6 +593,37 @@ def create_chat_interface():
|
|
592 |
bottom: -100px !important;
|
593 |
display: none !important;
|
594 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
595 |
"""
|
596 |
js = """
|
597 |
function createIframeHandler() {
|
|
|
582 |
}
|
583 |
#chatbot_box{
|
584 |
flex-grow: 1 !important;
|
585 |
+
border-width: 0px !important;
|
586 |
}
|
587 |
|
588 |
#link-frame {
|
|
|
593 |
bottom: -100px !important;
|
594 |
display: none !important;
|
595 |
}
|
596 |
+
.html-container {
|
597 |
+
display: none !important;
|
598 |
+
}
|
599 |
+
a {
|
600 |
+
text-decoration: none !important;
|
601 |
+
}
|
602 |
+
#topic {
|
603 |
+
color: #aaa !important;
|
604 |
+
}
|
605 |
+
.bubble-wrap {
|
606 |
+
padding-top: 0px !important;
|
607 |
+
}
|
608 |
+
.message-content {
|
609 |
+
border: 0px !important;
|
610 |
+
margin: 5px !important;
|
611 |
+
}
|
612 |
+
.message-row {
|
613 |
+
border-style: none !important;
|
614 |
+
margin: 0px !important;
|
615 |
+
width: 100% !important;
|
616 |
+
max-width: 100% !important;
|
617 |
+
}
|
618 |
+
.flex-wrap {
|
619 |
+
border-style: none !important;
|
620 |
+
}
|
621 |
+
|
622 |
+
.panel-full-width {
|
623 |
+
border-style: none !important;
|
624 |
+
border-width: 0px !important;
|
625 |
+
}
|
626 |
+
|
627 |
"""
|
628 |
js = """
|
629 |
function createIframeHandler() {
|