@timus-networks/theme 2.4.63 → 2.4.64
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/public/scss/_variables.scss +2 -2
- package/dist/runtime/public/scss/element-plus/button.css +1 -1
- package/dist/runtime/public/scss/element-plus/button.scss +1 -1
- package/dist/runtime/public/scss/element-plus/index.css +1 -1
- package/dist/runtime/public/scss/theme.css +2 -2
- 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.64";
|
|
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 = {
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
--border-width: 1px;
|
|
5
5
|
--border-style: solid;
|
|
6
6
|
--border-radius: 4px;
|
|
7
|
-
--border-color: var(--secondary-
|
|
8
|
-
--body-color: var(--secondary-
|
|
7
|
+
--border-color: var(--el-color-secondary-light-1);
|
|
8
|
+
--body-color: var(--el-color-secondary-light-5);
|
|
9
9
|
--text-opacity: 1;
|
|
10
10
|
--button-font-color: white;
|
|
11
11
|
--button-font-family: var(--font-family);
|
|
@@ -441,7 +441,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
441
441
|
.el-button.is-text {
|
|
442
442
|
color: var(--el-button-text-color);
|
|
443
443
|
border: 0 solid transparent;
|
|
444
|
-
background-color:
|
|
444
|
+
background-color: transparent;
|
|
445
445
|
--el-button-text-color: var(--el-color-primary);
|
|
446
446
|
--el-button-bg-color: var(--el-color-white);
|
|
447
447
|
--el-button-border-color: var(--el-color-white);
|
|
@@ -169,7 +169,7 @@ $button-icon-span-gap: map.merge(
|
|
|
169
169
|
@include when(text) {
|
|
170
170
|
color: getCssVar('button', 'text-color');
|
|
171
171
|
border: 0 solid transparent;
|
|
172
|
-
background-color:
|
|
172
|
+
background-color: transparent;
|
|
173
173
|
|
|
174
174
|
@include css-var-from-global(('button-text-color'), ('color-primary'));
|
|
175
175
|
@include css-var-from-global(('button-bg-color'), ('color-white'));
|
|
@@ -1502,7 +1502,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
1502
1502
|
.el-button.is-text {
|
|
1503
1503
|
color: var(--el-button-text-color);
|
|
1504
1504
|
border: 0 solid transparent;
|
|
1505
|
-
background-color:
|
|
1505
|
+
background-color: transparent;
|
|
1506
1506
|
--el-button-text-color: var(--el-color-primary);
|
|
1507
1507
|
--el-button-bg-color: var(--el-color-white);
|
|
1508
1508
|
--el-button-border-color: var(--el-color-white);
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
--border-width: 1px;
|
|
4
4
|
--border-style: solid;
|
|
5
5
|
--border-radius: 4px;
|
|
6
|
-
--border-color: var(--secondary-
|
|
7
|
-
--body-color: var(--secondary-
|
|
6
|
+
--border-color: var(--el-color-secondary-light-1);
|
|
7
|
+
--body-color: var(--el-color-secondary-light-5);
|
|
8
8
|
--text-opacity: 1;
|
|
9
9
|
--button-font-color: white;
|
|
10
10
|
--button-font-family: var(--font-family);
|
package/package.json
CHANGED