@timus-networks/theme 2.4.85 → 2.4.86
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
|
@@ -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.86";
|
|
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 = {
|
|
@@ -14120,9 +14120,6 @@ h6,
|
|
|
14120
14120
|
|
|
14121
14121
|
.el-table__header-wrapper, .el-table__body-wrapper, .el-table__footer-wrapper {
|
|
14122
14122
|
width: 100%;
|
|
14123
|
-
position: sticky;
|
|
14124
|
-
z-index: 12;
|
|
14125
|
-
top: -20px;
|
|
14126
14123
|
}
|
|
14127
14124
|
.el-table__header-wrapper tr td.el-table-fixed-column--left, .el-table__header-wrapper tr td.el-table-fixed-column--right,
|
|
14128
14125
|
.el-table__header-wrapper tr th.el-table-fixed-column--left,
|
|
@@ -14202,6 +14199,9 @@ h6,
|
|
|
14202
14199
|
|
|
14203
14200
|
.el-table__header-wrapper {
|
|
14204
14201
|
overflow: hidden;
|
|
14202
|
+
position: sticky;
|
|
14203
|
+
z-index: 12;
|
|
14204
|
+
top: -20px;
|
|
14205
14205
|
}
|
|
14206
14206
|
.el-table__header-wrapper tbody td.el-table__cell {
|
|
14207
14207
|
background-color: var(--el-table-row-hover-bg-color);
|
|
@@ -618,9 +618,6 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
618
618
|
|
|
619
619
|
.el-table__header-wrapper, .el-table__body-wrapper, .el-table__footer-wrapper {
|
|
620
620
|
width: 100%;
|
|
621
|
-
position: sticky;
|
|
622
|
-
z-index: 12;
|
|
623
|
-
top: -20px;
|
|
624
621
|
}
|
|
625
622
|
.el-table__header-wrapper tr td.el-table-fixed-column--left, .el-table__header-wrapper tr td.el-table-fixed-column--right,
|
|
626
623
|
.el-table__header-wrapper tr th.el-table-fixed-column--left,
|
|
@@ -700,6 +697,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
700
697
|
|
|
701
698
|
.el-table__header-wrapper {
|
|
702
699
|
overflow: hidden;
|
|
700
|
+
position: sticky;
|
|
701
|
+
z-index: 12;
|
|
702
|
+
top: -20px;
|
|
703
703
|
}
|
|
704
704
|
.el-table__header-wrapper tbody td.el-table__cell {
|
|
705
705
|
background-color: var(--el-table-row-hover-bg-color);
|
|
@@ -388,9 +388,6 @@
|
|
|
388
388
|
|
|
389
389
|
@include e((header-wrapper, body-wrapper, footer-wrapper)) {
|
|
390
390
|
width: 100%;
|
|
391
|
-
position: sticky;
|
|
392
|
-
z-index: 12;
|
|
393
|
-
top: -20px;
|
|
394
391
|
|
|
395
392
|
tr {
|
|
396
393
|
td,
|
|
@@ -461,6 +458,9 @@
|
|
|
461
458
|
|
|
462
459
|
@include e((header-wrapper)) {
|
|
463
460
|
overflow: hidden;
|
|
461
|
+
position: sticky;
|
|
462
|
+
z-index: 12;
|
|
463
|
+
top: -20px;
|
|
464
464
|
|
|
465
465
|
& tbody td.#{$namespace}-table__cell {
|
|
466
466
|
background-color: getCssVar('table-row-hover-bg-color');
|
package/package.json
CHANGED