@timus-networks/theme 2.4.1 → 2.4.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/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -12,7 +12,7 @@ const __filename = __cjs_url__.fileURLToPath(import.meta.url);
|
|
|
12
12
|
const __dirname = __cjs_path__.dirname(__filename);
|
|
13
13
|
const require = __cjs_mod__.createRequire(import.meta.url);
|
|
14
14
|
const name = "@timus-networks/theme";
|
|
15
|
-
const version = "2.4.
|
|
15
|
+
const version = "2.4.3";
|
|
16
16
|
const description = "A comprehensive Nuxt.js module providing a tailored theme experience with integrated TailwindCSS support for applications.";
|
|
17
17
|
const type = "module";
|
|
18
18
|
const exports = {
|
|
@@ -9808,23 +9808,15 @@ heights > $common-component-size
|
|
|
9808
9808
|
font-size: var(--el-link-font-size);
|
|
9809
9809
|
font-weight: var(--el-link-font-weight);
|
|
9810
9810
|
color: var(--el-link-text-color);
|
|
9811
|
+
border-bottom: 1px solid transparent;
|
|
9811
9812
|
}
|
|
9812
9813
|
.el-link:hover {
|
|
9813
9814
|
color: var(--el-link-hover-text-color);
|
|
9815
|
+
border-bottom: 1px solid var(--el-link-hover-text-color);
|
|
9814
9816
|
}
|
|
9815
9817
|
.el-link:active {
|
|
9816
9818
|
color: var(--el-link-active-text-color);
|
|
9817
9819
|
}
|
|
9818
|
-
.el-link.is-underline:hover::after {
|
|
9819
|
-
content: "";
|
|
9820
|
-
width: 100%;
|
|
9821
|
-
position: absolute;
|
|
9822
|
-
bottom: 0;
|
|
9823
|
-
border-bottom-width: 1px;
|
|
9824
|
-
border-color: var(--el-color-primary-light-4);
|
|
9825
|
-
border-style: solid;
|
|
9826
|
-
}
|
|
9827
|
-
|
|
9828
9820
|
.el-link.is-disabled {
|
|
9829
9821
|
color: var(--el-link-disabled-text-color);
|
|
9830
9822
|
cursor: not-allowed;
|
|
@@ -324,23 +324,15 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
324
324
|
font-size: var(--el-link-font-size);
|
|
325
325
|
font-weight: var(--el-link-font-weight);
|
|
326
326
|
color: var(--el-link-text-color);
|
|
327
|
+
border-bottom: 1px solid transparent;
|
|
327
328
|
}
|
|
328
329
|
.el-link:hover {
|
|
329
330
|
color: var(--el-link-hover-text-color);
|
|
331
|
+
border-bottom: 1px solid var(--el-link-hover-text-color);
|
|
330
332
|
}
|
|
331
333
|
.el-link:active {
|
|
332
334
|
color: var(--el-link-active-text-color);
|
|
333
335
|
}
|
|
334
|
-
.el-link.is-underline:hover::after {
|
|
335
|
-
content: "";
|
|
336
|
-
width: 100%;
|
|
337
|
-
position: absolute;
|
|
338
|
-
bottom: 0;
|
|
339
|
-
border-bottom-width: 1px;
|
|
340
|
-
border-color: var(--el-color-primary-light-4);
|
|
341
|
-
border-style: solid;
|
|
342
|
-
}
|
|
343
|
-
|
|
344
336
|
.el-link.is-disabled {
|
|
345
337
|
color: var(--el-link-disabled-text-color);
|
|
346
338
|
cursor: not-allowed;
|
|
@@ -24,9 +24,11 @@
|
|
|
24
24
|
font-size: getCssVar('link', 'font-size');
|
|
25
25
|
font-weight: getCssVar('link', 'font-weight');
|
|
26
26
|
color: getCssVar('link', 'text-color');
|
|
27
|
+
border-bottom: 1px solid transparent;
|
|
27
28
|
|
|
28
29
|
&:hover {
|
|
29
30
|
color: getCssVar('link', 'hover-text-color');
|
|
31
|
+
border-bottom: 1px solid getCssVar('link', 'hover-text-color');
|
|
30
32
|
}
|
|
31
33
|
|
|
32
34
|
&:active {
|
|
@@ -34,15 +36,15 @@
|
|
|
34
36
|
}
|
|
35
37
|
|
|
36
38
|
@include when(underline) {
|
|
37
|
-
&:hover::after {
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
}
|
|
39
|
+
// &:hover::after {
|
|
40
|
+
// content: '';
|
|
41
|
+
// width: 100%;
|
|
42
|
+
// position: absolute;
|
|
43
|
+
// bottom: 0;
|
|
44
|
+
// border-bottom-width: 1px;
|
|
45
|
+
// border-color: getCssVar('color', 'primary', 'light-4');
|
|
46
|
+
// border-style: solid;
|
|
47
|
+
// }
|
|
46
48
|
}
|
|
47
49
|
|
|
48
50
|
@include when(disabled) {
|
package/package.json
CHANGED