mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2025-01-20 11:38:53 +00:00
commit
ab8efb4b0f
1
web/dist/assets/index-86ec2b95.css
vendored
1
web/dist/assets/index-86ec2b95.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
web/dist/assets/index-dc46040e.css
vendored
Normal file
1
web/dist/assets/index-dc46040e.css
vendored
Normal file
File diff suppressed because one or more lines are too long
4
web/dist/index.html
vendored
4
web/dist/index.html
vendored
@ -6,8 +6,8 @@
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>GPT4All - WEBUI</title>
|
||||
<script type="module" crossorigin src="/assets/index-9deab5e4.js"></script>
|
||||
<link rel="stylesheet" href="/assets/index-86ec2b95.css">
|
||||
<script type="module" crossorigin src="/assets/index-98fca796.js"></script>
|
||||
<link rel="stylesheet" href="/assets/index-dc46040e.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
|
@ -15,9 +15,9 @@
|
||||
<div class="grow">
|
||||
<!-- EMPTY SPACE FILLER -->
|
||||
</div>
|
||||
|
||||
<div class="flex-none">
|
||||
<button type="button"
|
||||
<!-- ADVANCED OPTIONS - NOT IMPLEMENTED -->
|
||||
<div v-if="hasAdvancedSettings" class="flex-none">
|
||||
<button type="button" title="Not implemented"
|
||||
class="hover:text-secondary duration-75 active:scale-90 font-medium rounded-lg text-sm p-2 text-center inline-flex items-center " @click.stop="">
|
||||
<i data-feather="sliders" class="w-5 m-1"></i>
|
||||
<span class="sr-only">Icon description</span>
|
||||
@ -82,7 +82,8 @@ export default {
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
isTemplate: false
|
||||
isTemplate: false,
|
||||
hasAdvancedSettings: false,
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
|
@ -11,7 +11,7 @@
|
||||
</div>
|
||||
<p class="drop-shadow-sm py-0 px-2 text-lg text-opacity-95 font-bold ">{{ message.sender }}</p>
|
||||
</div>
|
||||
<div class="-mt-4 ml-10 mr-0 pt-1 px-2 ">
|
||||
<div class="-mt-4 ml-10 mr-0 pt-1 px-2 break-all">
|
||||
<!-- CONTENT/MESSAGE -->
|
||||
<MarkdownRenderer ref="mdRender" v-if="!editMsgMode" :markdown-text="message.content"></MarkdownRenderer>
|
||||
<textarea v-if="editMsgMode" ref="mdTextarea" :rows="4"
|
||||
|
@ -152,13 +152,13 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex relative flex-grow " @dragover.stop.prevent="setDropZoneChat()">
|
||||
<div class="flex relative flex-grow overflow-y-auto scrollbar-thin scrollbar-track-bg-light-tone scrollbar-thumb-bg-light-tone-panel hover:scrollbar-thumb-primary dark:scrollbar-track-bg-dark-tone dark:scrollbar-thumb-bg-dark-tone-panel dark:hover:scrollbar-thumb-primary active:scrollbar-thumb-secondary" @dragover.stop.prevent="setDropZoneChat()">
|
||||
<div class="z-20">
|
||||
<DragDrop ref="dragdropChat" @panelDrop="setFileListChat"></DragDrop>
|
||||
</div>
|
||||
|
||||
<div :class="isDragOverChat ? 'pointer-events-none' : ''"
|
||||
class="flex flex-col flex-grow overflow-y-auto scrollbar-thin scrollbar-track-bg-light-tone scrollbar-thumb-bg-light-tone-panel hover:scrollbar-thumb-primary dark:scrollbar-track-bg-dark-tone dark:scrollbar-thumb-bg-dark-tone-panel dark:hover:scrollbar-thumb-primary active:scrollbar-thumb-secondary"
|
||||
class="container flex flex-col flex-grow "
|
||||
id="messages-list">
|
||||
|
||||
<!-- CHAT AREA -->
|
||||
|
Loading…
Reference in New Issue
Block a user