@timus-networks/theme 2.4.150 → 2.4.151
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 +1 -1
- package/dist/runtime/public/scss/element-plus/index.css +1 -1
- package/dist/runtime/public/scss/element-plus/table.css +1 -1
- package/dist/runtime/public/scss/element-plus/table.scss +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.150";
|
|
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 = {
|
|
@@ -15026,7 +15026,6 @@ heights > $common-component-size
|
|
|
15026
15026
|
overflow: hidden;
|
|
15027
15027
|
text-overflow: ellipsis;
|
|
15028
15028
|
overflow-wrap: break-word;
|
|
15029
|
-
line-height: 20px;
|
|
15030
15029
|
padding: 0 12px;
|
|
15031
15030
|
align-items: center;
|
|
15032
15031
|
line-height: 1;
|
|
@@ -15107,6 +15106,7 @@ heights > $common-component-size
|
|
|
15107
15106
|
}
|
|
15108
15107
|
.el-table th.el-table__cell {
|
|
15109
15108
|
background-color: var(--el-table-header-bg-color);
|
|
15109
|
+
line-height: 20px;
|
|
15110
15110
|
}
|
|
15111
15111
|
.el-table th.el-table__cell > .cell.highlight {
|
|
15112
15112
|
color: var(--el-color-primary);
|
|
@@ -14140,7 +14140,6 @@ h6,
|
|
|
14140
14140
|
overflow: hidden;
|
|
14141
14141
|
text-overflow: ellipsis;
|
|
14142
14142
|
overflow-wrap: break-word;
|
|
14143
|
-
line-height: 20px;
|
|
14144
14143
|
padding: 0 12px;
|
|
14145
14144
|
align-items: center;
|
|
14146
14145
|
line-height: 1;
|
|
@@ -14221,6 +14220,7 @@ h6,
|
|
|
14221
14220
|
}
|
|
14222
14221
|
.el-table th.el-table__cell {
|
|
14223
14222
|
background-color: var(--el-table-header-bg-color);
|
|
14223
|
+
line-height: 20px;
|
|
14224
14224
|
}
|
|
14225
14225
|
.el-table th.el-table__cell > .cell.highlight {
|
|
14226
14226
|
color: var(--el-color-primary);
|
|
@@ -472,7 +472,6 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
472
472
|
overflow: hidden;
|
|
473
473
|
text-overflow: ellipsis;
|
|
474
474
|
overflow-wrap: break-word;
|
|
475
|
-
line-height: 20px;
|
|
476
475
|
padding: 0 12px;
|
|
477
476
|
align-items: center;
|
|
478
477
|
line-height: 1;
|
|
@@ -553,6 +552,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
553
552
|
}
|
|
554
553
|
.el-table th.el-table__cell {
|
|
555
554
|
background-color: var(--el-table-header-bg-color);
|
|
555
|
+
line-height: 20px;
|
|
556
556
|
}
|
|
557
557
|
.el-table th.el-table__cell > .cell.highlight {
|
|
558
558
|
color: var(--el-color-primary);
|
|
@@ -226,11 +226,10 @@
|
|
|
226
226
|
overflow: hidden;
|
|
227
227
|
text-overflow: ellipsis;
|
|
228
228
|
overflow-wrap: break-word;
|
|
229
|
-
line-height: 20px;
|
|
230
229
|
padding: 0 12px;
|
|
231
230
|
align-items: center;
|
|
232
231
|
// display: flex; // bunu eklersem truncate etmiyor o yüzden aşağıdaki line-height: 1 i ekledim çözüldü
|
|
233
|
-
line-height: 1;
|
|
232
|
+
line-height: 1; // 20px;
|
|
234
233
|
gap: 2px;
|
|
235
234
|
white-space: nowrap;
|
|
236
235
|
|
|
@@ -303,6 +302,7 @@
|
|
|
303
302
|
|
|
304
303
|
th.#{$namespace}-table__cell {
|
|
305
304
|
background-color: getCssVar('table-header-bg-color');
|
|
305
|
+
line-height: 20px;
|
|
306
306
|
|
|
307
307
|
> .cell.highlight {
|
|
308
308
|
color: getCssVar('color-primary');
|
package/package.json
CHANGED