koishi-plugin-media-luna 1.3.1 → 1.3.3
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/client/pages/index.vue +1 -2
- package/client/styles/material.css +14 -0
- package/client/styles/theme.scss +0 -31
- package/dist/index.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/client/pages/index.vue
CHANGED
|
@@ -132,8 +132,7 @@ const themes = [
|
|
|
132
132
|
{ id: 'material', icon: '⚪', label: '简约' },
|
|
133
133
|
{ id: 'nailong', icon: '☀️', label: '奶龙' },
|
|
134
134
|
{ id: 'sakura', icon: '🌸', label: '樱花' },
|
|
135
|
-
{ id: 'matcha', icon: '🍵', label: '抹茶' }
|
|
136
|
-
{ id: 'manga', icon: '✒️', label: '水墨' }
|
|
135
|
+
{ id: 'matcha', icon: '🍵', label: '抹茶' }
|
|
137
136
|
]
|
|
138
137
|
|
|
139
138
|
const currentThemeIndex = ref(0)
|
|
@@ -266,6 +266,20 @@
|
|
|
266
266
|
box-sizing: border-box !important;
|
|
267
267
|
}
|
|
268
268
|
|
|
269
|
+
/* Fix for CONNECTOR CARDS (Right Panel) */
|
|
270
|
+
/* User requested: Blue Border and Remove Black Dot */
|
|
271
|
+
.theme-material .connector-card.selected {
|
|
272
|
+
background-color: #ffffff !important;
|
|
273
|
+
border: 2px solid #2196F3 !important;
|
|
274
|
+
box-shadow: none !important;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.theme-material .selected-check {
|
|
278
|
+
background-color: #2196F3 !important;
|
|
279
|
+
border: none !important;
|
|
280
|
+
color: #ffffff !important;
|
|
281
|
+
}
|
|
282
|
+
|
|
269
283
|
/* Fix for plugin card text within active state */
|
|
270
284
|
.theme-material .plugin-card.active .plugin-name,
|
|
271
285
|
.theme-material .plugin-card.active .plugin-description,
|
package/client/styles/theme.scss
CHANGED
|
@@ -129,37 +129,6 @@
|
|
|
129
129
|
/* Keep standard border width/shadows of Pop theme */
|
|
130
130
|
}
|
|
131
131
|
|
|
132
|
-
/*
|
|
133
|
-
* [Theme - Manga/Ink (Black & White)]
|
|
134
|
-
* High Contrast, Comic Book Style
|
|
135
|
-
*/
|
|
136
|
-
.theme-manga {
|
|
137
|
-
/* Primary Button: White background with Black border (Outline style) */
|
|
138
|
-
--ml-primary: #ffffff;
|
|
139
|
-
--ml-primary-dark: #000000;
|
|
140
|
-
/* Hover/Active turns Black */
|
|
141
|
-
--ml-primary-light: #e5e5e5;
|
|
142
|
-
|
|
143
|
-
--ml-bg: #ffffff;
|
|
144
|
-
--ml-bg-alt: #f4f4f5;
|
|
145
|
-
--ml-surface: #ffffff;
|
|
146
|
-
|
|
147
|
-
--ml-text: #000000;
|
|
148
|
-
--ml-text-secondary: #404040;
|
|
149
|
-
--ml-text-muted: #737373;
|
|
150
|
-
|
|
151
|
-
--ml-header-bg: rgba(255, 255, 255, 0.9);
|
|
152
|
-
|
|
153
|
-
--ml-border-color: #000000;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
/* Manga Theme Button Override: Invert on Hover */
|
|
157
|
-
.theme-manga .pop-btn.primary:hover {
|
|
158
|
-
background: var(--ml-primary-dark);
|
|
159
|
-
/* Black */
|
|
160
|
-
color: #ffffff;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
132
|
/*
|
|
164
133
|
* [Theme - Plain (朴素模式)]
|
|
165
134
|
* 简洁、无特效阴影、直线框
|