@timus-networks/theme 2.4.227 → 2.4.230
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/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/assets/scss/main.css +2 -1
- package/dist/runtime/public/scss/element-plus/cascader-panel.css +2 -1
- package/dist/runtime/public/scss/element-plus/cascader-panel.scss +2 -1
- package/dist/runtime/public/scss/element-plus/index.css +2 -1
- package/package.json +1 -1
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -11,7 +11,7 @@ const __filename = __cjs_url__.fileURLToPath(import.meta.url);
|
|
|
11
11
|
const __dirname = __cjs_path__.dirname(__filename);
|
|
12
12
|
const require = __cjs_mod__.createRequire(import.meta.url);
|
|
13
13
|
const name = "@timus-networks/theme";
|
|
14
|
-
const version = "2.4.
|
|
14
|
+
const version = "2.4.229";
|
|
15
15
|
const description = "A comprehensive Nuxt.js module providing a tailored theme experience with integrated TailwindCSS support for applications.";
|
|
16
16
|
const type = "module";
|
|
17
17
|
const exports = {
|
|
@@ -3610,8 +3610,9 @@ heights > $common-component-size
|
|
|
3610
3610
|
color: var(--el-cascader-menu-text-color);
|
|
3611
3611
|
}
|
|
3612
3612
|
.el-cascader-node.in-active-path, .el-cascader-node.is-selectable.in-checked-path, .el-cascader-node.is-active {
|
|
3613
|
-
color: var(--el-cascader-menu-selected-text-color);
|
|
3614
3613
|
font-weight: 500;
|
|
3614
|
+
color: var(--el-color-neutral-light-9);
|
|
3615
|
+
background-color: var(--el-color-neutral-light-2);
|
|
3615
3616
|
}
|
|
3616
3617
|
.el-cascader-node:not(.is-disabled) {
|
|
3617
3618
|
cursor: pointer;
|
|
@@ -389,8 +389,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
389
389
|
color: var(--el-cascader-menu-text-color);
|
|
390
390
|
}
|
|
391
391
|
.el-cascader-node.in-active-path, .el-cascader-node.is-selectable.in-checked-path, .el-cascader-node.is-active {
|
|
392
|
-
color: var(--el-cascader-menu-selected-text-color);
|
|
393
392
|
font-weight: 500;
|
|
393
|
+
color: var(--el-color-neutral-light-9);
|
|
394
|
+
background-color: var(--el-color-neutral-light-2);
|
|
394
395
|
}
|
|
395
396
|
.el-cascader-node:not(.is-disabled) {
|
|
396
397
|
cursor: pointer;
|
|
@@ -92,8 +92,9 @@
|
|
|
92
92
|
&.in-active-path,
|
|
93
93
|
&.is-selectable.in-checked-path,
|
|
94
94
|
&.is-active {
|
|
95
|
-
color: getCssVar('cascader-menu', 'selected-text-color');
|
|
96
95
|
font-weight: 500;
|
|
96
|
+
color: getCssVar('color', 'neutral', 'light-9');
|
|
97
|
+
background-color: getCssVar('color', 'neutral', 'light-2');
|
|
97
98
|
}
|
|
98
99
|
|
|
99
100
|
&:not(.is-disabled) {
|
|
@@ -2607,8 +2607,9 @@ heights > $common-component-size
|
|
|
2607
2607
|
color: var(--el-cascader-menu-text-color);
|
|
2608
2608
|
}
|
|
2609
2609
|
.el-cascader-node.in-active-path, .el-cascader-node.is-selectable.in-checked-path, .el-cascader-node.is-active {
|
|
2610
|
-
color: var(--el-cascader-menu-selected-text-color);
|
|
2611
2610
|
font-weight: 500;
|
|
2611
|
+
color: var(--el-color-neutral-light-9);
|
|
2612
|
+
background-color: var(--el-color-neutral-light-2);
|
|
2612
2613
|
}
|
|
2613
2614
|
.el-cascader-node:not(.is-disabled) {
|
|
2614
2615
|
cursor: pointer;
|
package/package.json
CHANGED