mtxuilib 0.1.437 → 0.1.438
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/styles/globals.css +5 -97
- package/package.json +1 -1
- package/dist/styles/index.css-- +0 -3
- package/dist/styles/main.css-- +0 -12
package/dist/styles/globals.css
CHANGED
|
@@ -90,16 +90,6 @@
|
|
|
90
90
|
/* novel editor 相关样式结束 */
|
|
91
91
|
}
|
|
92
92
|
}
|
|
93
|
-
|
|
94
|
-
/* @layer base {
|
|
95
|
-
* {
|
|
96
|
-
@apply border-border;
|
|
97
|
-
}
|
|
98
|
-
body {
|
|
99
|
-
@apply bg-background text-foreground;
|
|
100
|
-
}
|
|
101
|
-
} */
|
|
102
|
-
|
|
103
93
|
/*
|
|
104
94
|
细化滚动条。
|
|
105
95
|
参考: https://github.com/mckaywrigley/chatbot-ui/blob/main/styles/globals.css
|
|
@@ -110,16 +100,18 @@
|
|
|
110
100
|
}
|
|
111
101
|
|
|
112
102
|
::-webkit-scrollbar-thumb {
|
|
113
|
-
background-color: #
|
|
103
|
+
background-color: #cfd8ea;
|
|
114
104
|
border-radius: 10px;
|
|
115
105
|
}
|
|
116
106
|
|
|
117
107
|
::-webkit-scrollbar-thumb:hover {
|
|
118
|
-
background-color: #
|
|
108
|
+
background-color: #a6b8df;
|
|
119
109
|
}
|
|
120
110
|
|
|
121
111
|
::-webkit-scrollbar-track:hover {
|
|
122
|
-
background-color:
|
|
112
|
+
background-color: transparent;
|
|
113
|
+
|
|
114
|
+
/* background-color: #eaeaea; */
|
|
123
115
|
}
|
|
124
116
|
|
|
125
117
|
::-webkit-scrollbar-corner {
|
|
@@ -130,87 +122,3 @@
|
|
|
130
122
|
width: 6px;
|
|
131
123
|
height: 6px;
|
|
132
124
|
}
|
|
133
|
-
|
|
134
|
-
/* vamp 样式开始 ***********************************************************************************************/
|
|
135
|
-
|
|
136
|
-
@layer utilities {
|
|
137
|
-
/* .red-glow {
|
|
138
|
-
text-shadow: 0px 0px 8px hsla(352, 98%, 60%, 0.6);
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
.button {
|
|
142
|
-
transition:
|
|
143
|
-
border 120ms ease 0s,
|
|
144
|
-
background-color,
|
|
145
|
-
color,
|
|
146
|
-
box-shadow,
|
|
147
|
-
opacity;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
.primary-button-hover {
|
|
151
|
-
text-shadow: rgb(0 0 0 / 56%) 0px 3px 12px;
|
|
152
|
-
box-shadow: rgba(253, 52, 88, 0.6) 0px 1px 40px;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
.dropdown {
|
|
156
|
-
box-shadow: rgb(0 0 0 / 20%) 0px 4px 24px;
|
|
157
|
-
backdrop-filter: blur(20px) saturate(190%) contrast(70%) brightness(80%);
|
|
158
|
-
background-color: rgba(29, 30, 43, 0.498);
|
|
159
|
-
border: 0.5px solid rgba(82, 82, 111, 0.44);
|
|
160
|
-
} */
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
/* clears the ‘X’ from Internet Explorer */
|
|
164
|
-
input[type="search"]::-ms-clear {
|
|
165
|
-
display: none;
|
|
166
|
-
width: 0;
|
|
167
|
-
height: 0;
|
|
168
|
-
}
|
|
169
|
-
input[type="search"]::-ms-reveal {
|
|
170
|
-
display: none;
|
|
171
|
-
width: 0;
|
|
172
|
-
height: 0;
|
|
173
|
-
}
|
|
174
|
-
/* clears the ‘X’ from Chrome */
|
|
175
|
-
input[type="search"]::-webkit-search-decoration,
|
|
176
|
-
input[type="search"]::-webkit-search-cancel-button,
|
|
177
|
-
input[type="search"]::-webkit-search-results-button,
|
|
178
|
-
input[type="search"]::-webkit-search-results-decoration {
|
|
179
|
-
display: none;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
/* .is-editor-empty {
|
|
183
|
-
@apply text-white;
|
|
184
|
-
} */
|
|
185
|
-
|
|
186
|
-
/* .ProseMirror p.is-editor-empty:first-child::before {
|
|
187
|
-
color: #adb5bd;
|
|
188
|
-
content: attr(data-placeholder);
|
|
189
|
-
float: left;
|
|
190
|
-
height: 0;
|
|
191
|
-
opacity: 0.3;
|
|
192
|
-
pointer-events: none;
|
|
193
|
-
} */
|
|
194
|
-
|
|
195
|
-
::-webkit-scrollbar {
|
|
196
|
-
width: 8px;
|
|
197
|
-
height: 8px;
|
|
198
|
-
background-color: transparent;
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
::-webkit-scrollbar-thumb {
|
|
202
|
-
border-radius: 12px;
|
|
203
|
-
background-color: #616076;
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
::-webkit-scrollbar-track {
|
|
207
|
-
padding: 2px;
|
|
208
|
-
background-color: transparent;
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
/* mux-player {
|
|
212
|
-
--controls: none;
|
|
213
|
-
--media-object-fit: cover;
|
|
214
|
-
height: 100%;
|
|
215
|
-
} */
|
|
216
|
-
/* vamp 结束 ***********************************************************************************************/
|
package/package.json
CHANGED
package/dist/styles/index.css--
DELETED