-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
109 lines (95 loc) · 2.79 KB
/
Copy pathstylesheet.css
File metadata and controls
109 lines (95 loc) · 2.79 KB
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
/* ── Panel ───────────────────────────────────────── */
.mei-panel-button {
background-color: transparent;
border: none;
padding: 0 6px;
margin: 0 4px;
border-radius: 8px;
}
.mei-panel-button:hover {
background-color: rgba(128, 128, 128, 0.15);
cursor: pointer;
}
.mei-panel-button.glow:hover {
background-color: transparent !important;
cursor: default;
}
/* ── Stop Button Text (on Hover) ─────────────────── */
.mei-stop-hover-text {
font-family: sans-serif;
font-size: 14px;
color: black;
background-color: rgba(255, 255, 255, 0.95);
border-radius: 6px;
width: 34px;
text-align: center;
}
.mei-panel-label {
font-family: 'Lobster', cursive;
font-size: 16px;
font-weight: normal;
width: 34px;
text-align: center;
}
/* ── Popup ───────────────────────────────────────── */
.mei-popup {
margin-top: 4px;
}
/* ── Container ───────────────────────────────────── */
.mei-container {
padding: 10px;
spacing: 6px;
border-radius: 12px;
}
/* ── Bubbles ─────────────────────────────────────── */
.mei-bubble-user {
background-color: rgba(128, 128, 128, 0.12);
border-radius: 14px 14px 4px 14px;
padding: 10px 14px;
font-size: 13px;
max-width: 290px;
}
.mei-bubble-ai {
padding: 8px 2px;
font-size: 13px;
max-width: 310px;
}
/* ── Scroll area ─────────────────────────────────── */
.mei-scroll {
max-height: 400px;
margin-bottom: 6px;
}
.mei-scroll StScrollBar StBin#vhandle {
width: 4px;
background-color: rgba(128, 128, 128, 0.5);
border-radius: 2px;
}
.mei-scroll StScrollBar StBin#trough {
background-color: transparent;
}
/* ── Input ───────────────────────────────────────── */
.mei-input {
background-color: transparent;
border: none;
border-width: 0;
padding: 0;
font-size: 13px;
min-height: 22px;
}
.mei-input:focus {
border: none;
border-width: 0;
}
/* ── Ask button ──────────────────────────────────── */
.mei-ask-btn {
border-radius: 8px;
padding: 4px 0;
font-size: 11px;
min-height: 12px;
border: none;
}
.mei-ask-btn:hover {
background-color: white !important;
color: black !important;
cursor: pointer;
}