koishi-plugin-media-luna 1.3.0 → 1.3.2
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.
|
@@ -1288,9 +1288,8 @@ onMounted(fetchData)
|
|
|
1288
1288
|
.tag-more {
|
|
1289
1289
|
font-size: 10px;
|
|
1290
1290
|
padding: 2px 6px;
|
|
1291
|
-
background: var(--ml-
|
|
1292
|
-
color: var(--ml-text
|
|
1293
|
-
border: 1px solid var(--ml-border-color);
|
|
1291
|
+
background: var(--ml-primary);
|
|
1292
|
+
color: var(--ml-text);
|
|
1294
1293
|
border-radius: 6px;
|
|
1295
1294
|
font-weight: 700;
|
|
1296
1295
|
}
|
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)
|
|
@@ -361,4 +361,13 @@
|
|
|
361
361
|
.theme-material .middleware-tag.enabled {
|
|
362
362
|
background-color: #f5f5f5 !important;
|
|
363
363
|
border-color: #e0e0e0 !important;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
/* Fix for tag-more, gallery-count, preset-ref - ensure readable in material theme */
|
|
367
|
+
.theme-material .tag-more,
|
|
368
|
+
.theme-material .gallery-count,
|
|
369
|
+
.theme-material .preset-ref {
|
|
370
|
+
background-color: #f5f5f5 !important;
|
|
371
|
+
color: #616161 !important;
|
|
372
|
+
border: 1px solid #bdbdbd !important;
|
|
364
373
|
}
|
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
|
* 简洁、无特效阴影、直线框
|