153 lines
2.5 KiB
SCSS
153 lines
2.5 KiB
SCSS
.admin-contents .ai-persona-list-editor {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.ai-persona-list-editor {
|
|
&__header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin: 0 0 1em 0;
|
|
|
|
h3 {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
&__current {
|
|
padding-left: 20px;
|
|
}
|
|
|
|
li.disabled {
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
|
|
.ai-persona-command-option-editor {
|
|
&__instructions {
|
|
color: var(--primary-medium);
|
|
font-size: var(--font-down-1);
|
|
line-height: var(--line-height-large);
|
|
}
|
|
}
|
|
|
|
.ai-personas__container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 10px;
|
|
width: 100%;
|
|
}
|
|
|
|
.ai-persona-editor {
|
|
.fk-d-tooltip__icon {
|
|
padding-left: 0.25em;
|
|
color: var(--primary-medium);
|
|
}
|
|
label {
|
|
display: block;
|
|
}
|
|
&__command-options {
|
|
padding: 5px 10px 5px;
|
|
border: 1px solid var(--primary-low-mid);
|
|
width: 480px;
|
|
}
|
|
&__command-options-name {
|
|
margin-bottom: 10px;
|
|
font-size: var(--font-down-1);
|
|
}
|
|
&__description {
|
|
width: 500px;
|
|
}
|
|
&__system_prompt {
|
|
width: 500px;
|
|
height: 400px;
|
|
}
|
|
&__priority {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
&__mentionable {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
&__vision_enabled {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.persona-rag-uploader {
|
|
width: 500px;
|
|
|
|
&__search-input {
|
|
display: flex;
|
|
align-items: center;
|
|
border: 1px solid var(--primary-400);
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
height: 35px;
|
|
padding: 0 0.5rem;
|
|
|
|
&:focus,
|
|
&:focus-within {
|
|
@include default-focus();
|
|
}
|
|
|
|
&-container {
|
|
display: flex;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
&__search-icon {
|
|
background: none !important;
|
|
color: var(--primary-medium);
|
|
}
|
|
|
|
&__input {
|
|
width: 100% !important;
|
|
}
|
|
|
|
&__input,
|
|
&__input:focus {
|
|
margin: 0 !important;
|
|
border: 0 !important;
|
|
appearance: none !important;
|
|
outline: none !important;
|
|
background: none !important;
|
|
}
|
|
}
|
|
|
|
&__uploads-list {
|
|
margin-bottom: 20px;
|
|
|
|
tbody {
|
|
border-top: none;
|
|
}
|
|
}
|
|
|
|
&__upload-status {
|
|
text-align: right;
|
|
padding-right: 0;
|
|
|
|
.indexed {
|
|
color: var(--success);
|
|
}
|
|
|
|
.uploaded,
|
|
.indexing {
|
|
color: var(--primary-low-mid);
|
|
}
|
|
}
|
|
|
|
&__remove-file {
|
|
text-align: right;
|
|
padding-left: 0;
|
|
}
|
|
|
|
&__rag-file-icon {
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
}
|