-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathllm-dialog.component.scss
118 lines (103 loc) · 1.9 KB
/
llm-dialog.component.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
.result {
display: flex;
flex-direction: column;
overflow-y: auto;
height: 100%;
padding: 8px 16px;
}
.dialog {
position: absolute;
background-color: var(--menu-color);
color: lightgray;
border-radius: 6px;
border: 0.1px solid rgb(63, 66, 65);
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
padding: 12px;
width: 800px;
text-align: center;
top: 120px;
}
.open {
display: flex;
}
.tab {
overflow: hidden;
border: 1px solid gray;
border-bottom: none;
background-color: black;
}
.tab button {
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 12px 14px;
transition: 0.3s;
font-size: 18px;
color: lightgray;
border-radius: 4px 0px 0px 0px !important;
}
.tab button:hover {
background-color: var(--menu-color);
}
.tab button.active {
background-color: var(--menu-color);
}
.tabcontent {
display: none;
padding: 6px 6px;
border: 1px solid gray;
border-top: none;
border-radius: 0px 0px 4px 4px;
flex-direction: column;
height: 480px;
overflow-x: hidden;
}
.input-container {
display: inline-flex;
align-items: stretch;
border-radius: 5px;
overflow: hidden;
border: 2px solid var(--focus-color);
background-color: black;
}
.input-container textarea {
flex: 1;
padding: 8px;
border: none;
outline: none;
color: white;
resize: none;
line-height: 1.5;
height: 32px;
background-color: inherit;
overflow: hidden;
}
.input-container button {
padding: 8px 12px;
color: white;
border: none;
cursor: pointer;
background-color: var(--menu-color);
}
.chat-message {
border-radius: 8px;
border: 1px solid #545454;
padding: 8px;
margin-bottom: 6px;
text-align: left;
}
.user-message {
float: right;
}
.bot-message {
float: left;
}
.search-item:hover {
background-color: var(--dark-theme-background-color);
cursor: pointer;
}
.search-item-title {
text-decoration: underline;
font-weight: bold;
}