@timus-networks/theme 2.4.83 → 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 = {
|
|
@@ -13970,7 +13970,6 @@ h6,
|
|
|
13970
13970
|
line-height: 20px;
|
|
13971
13971
|
padding: 0 12px;
|
|
13972
13972
|
align-items: center;
|
|
13973
|
-
display: flex;
|
|
13974
13973
|
gap: 2px;
|
|
13975
13974
|
white-space: nowrap;
|
|
13976
13975
|
}
|
|
@@ -14200,6 +14199,9 @@ h6,
|
|
|
14200
14199
|
|
|
14201
14200
|
.el-table__header-wrapper {
|
|
14202
14201
|
overflow: hidden;
|
|
14202
|
+
position: sticky;
|
|
14203
|
+
z-index: 12;
|
|
14204
|
+
top: -20px;
|
|
14203
14205
|
}
|
|
14204
14206
|
.el-table__header-wrapper tbody td.el-table__cell {
|
|
14205
14207
|
background-color: var(--el-table-row-hover-bg-color);
|
|
@@ -468,7 +468,6 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
468
468
|
line-height: 20px;
|
|
469
469
|
padding: 0 12px;
|
|
470
470
|
align-items: center;
|
|
471
|
-
display: flex;
|
|
472
471
|
gap: 2px;
|
|
473
472
|
white-space: nowrap;
|
|
474
473
|
}
|
|
@@ -698,6 +697,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
698
697
|
|
|
699
698
|
.el-table__header-wrapper {
|
|
700
699
|
overflow: hidden;
|
|
700
|
+
position: sticky;
|
|
701
|
+
z-index: 12;
|
|
702
|
+
top: -20px;
|
|
701
703
|
}
|
|
702
704
|
.el-table__header-wrapper tbody td.el-table__cell {
|
|
703
705
|
background-color: var(--el-table-row-hover-bg-color);
|
|
@@ -218,7 +218,7 @@
|
|
|
218
218
|
line-height: 20px;
|
|
219
219
|
padding: 0 12px;
|
|
220
220
|
align-items: center;
|
|
221
|
-
display: flex;
|
|
221
|
+
// display: flex; // bunu eklersem truncate etmiyor
|
|
222
222
|
gap: 2px;
|
|
223
223
|
white-space: nowrap;
|
|
224
224
|
|
|
@@ -458,6 +458,9 @@
|
|
|
458
458
|
|
|
459
459
|
@include e((header-wrapper)) {
|
|
460
460
|
overflow: hidden;
|
|
461
|
+
position: sticky;
|
|
462
|
+
z-index: 12;
|
|
463
|
+
top: -20px;
|
|
461
464
|
|
|
462
465
|
& tbody td.#{$namespace}-table__cell {
|
|
463
466
|
background-color: getCssVar('table-row-hover-bg-color');
|
package/package.json
CHANGED