2023-03-15 11:33:26 -04:00
|
|
|
.h-\[40vh\], .wrap.svelte-byatnx.svelte-byatnx.svelte-byatnx {
|
|
|
|
height: 66.67vh
|
|
|
|
}
|
2023-03-15 12:24:54 -04:00
|
|
|
|
2023-03-15 11:33:26 -04:00
|
|
|
.gradio-container {
|
|
|
|
margin-left: auto !important;
|
|
|
|
margin-right: auto !important;
|
|
|
|
}
|
2023-03-15 12:24:54 -04:00
|
|
|
|
2023-03-15 11:33:26 -04:00
|
|
|
.w-screen {
|
|
|
|
width: unset
|
|
|
|
}
|
2023-03-15 12:24:54 -04:00
|
|
|
|
2023-03-15 11:33:26 -04:00
|
|
|
div.svelte-362y77>*, div.svelte-362y77>.form>* {
|
|
|
|
flex-wrap: nowrap
|
|
|
|
}
|
2023-03-15 12:24:54 -04:00
|
|
|
|
2023-03-15 11:33:26 -04:00
|
|
|
/* fixes the API documentation in chat mode */
|
|
|
|
.api-docs.svelte-1iguv9h.svelte-1iguv9h.svelte-1iguv9h {
|
|
|
|
display: grid;
|
|
|
|
}
|
2023-03-15 12:24:54 -04:00
|
|
|
|
2023-03-15 11:33:26 -04:00
|
|
|
.pending.svelte-1ed2p3z {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2023-03-26 21:20:30 -04:00
|
|
|
|
|
|
|
#extensions {
|
2023-05-25 12:12:34 -04:00
|
|
|
padding: 0;
|
|
|
|
padding: 0;
|
2023-03-26 21:20:30 -04:00
|
|
|
}
|
|
|
|
|
2023-03-29 23:43:49 -04:00
|
|
|
#gradio-chatbot {
|
2023-05-25 12:12:34 -04:00
|
|
|
height: 66.67vh;
|
2023-03-29 23:43:49 -04:00
|
|
|
}
|
2023-03-30 00:02:11 -04:00
|
|
|
|
|
|
|
.wrap.svelte-6roggh.svelte-6roggh {
|
2023-05-25 12:12:34 -04:00
|
|
|
max-height: 92.5%;
|
2023-03-30 00:02:11 -04:00
|
|
|
}
|
2023-04-07 14:57:29 -04:00
|
|
|
|
|
|
|
/* This is for the microphone button in the whisper extension */
|
|
|
|
.sm.svelte-1ipelgc {
|
2023-05-25 12:12:34 -04:00
|
|
|
width: 100%;
|
2023-04-07 14:57:29 -04:00
|
|
|
}
|
2023-05-29 23:30:15 -04:00
|
|
|
|
|
|
|
#main button {
|
|
|
|
min-width: 0 !important;
|
|
|
|
}
|
2023-06-18 00:56:43 -04:00
|
|
|
|
2023-08-02 11:45:14 -04:00
|
|
|
@media screen and (max-width: 688px) {
|
|
|
|
#main {
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat {
|
|
|
|
height: calc(100vh - 274px) !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-18 00:56:43 -04:00
|
|
|
/*****************************************************/
|
|
|
|
/*************** Chat box declarations ***************/
|
|
|
|
/*****************************************************/
|
|
|
|
|
|
|
|
.chat {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
max-width: 800px;
|
2023-08-01 12:41:57 -04:00
|
|
|
height: calc(100vh - 286px);
|
2023-06-18 00:56:43 -04:00
|
|
|
overflow-y: auto;
|
|
|
|
padding-right: 20px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
word-break: break-word;
|
|
|
|
overflow-wrap: anywhere;
|
|
|
|
padding-top: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-body li {
|
2023-07-18 16:23:29 -04:00
|
|
|
margin-top: 0.5em !important;
|
|
|
|
margin-bottom: 0.5em !important;
|
2023-06-18 00:56:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.message-body li > p {
|
|
|
|
display: inline !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-body ul, .message-body ol {
|
|
|
|
font-size: 15px !important;
|
|
|
|
}
|
|
|
|
|
2023-06-18 14:48:16 -04:00
|
|
|
.message-body ul {
|
|
|
|
list-style-type: disc !important;
|
|
|
|
}
|
|
|
|
|
2023-06-18 00:56:43 -04:00
|
|
|
.message-body pre {
|
|
|
|
margin-bottom: 1.25em !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-body code {
|
2023-06-18 14:48:16 -04:00
|
|
|
white-space: pre-wrap !important;
|
|
|
|
word-wrap: break-word !important;
|
2023-06-18 00:56:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.message-body :not(pre) > code {
|
|
|
|
white-space: normal !important;
|
|
|
|
}
|
2023-06-21 09:39:58 -04:00
|
|
|
|
|
|
|
@media print {
|
|
|
|
body {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat {
|
|
|
|
visibility: visible;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
max-width: none;
|
|
|
|
max-height: none;
|
|
|
|
width: 100%;
|
|
|
|
height: fit-content;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
}
|
2023-06-22 15:06:49 -04:00
|
|
|
|
|
|
|
.message {
|
|
|
|
break-inside: avoid;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradio-container {
|
|
|
|
overflow: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab-nav {
|
|
|
|
display: none !important;
|
|
|
|
}
|
2023-06-21 09:39:58 -04:00
|
|
|
}
|