@timus-networks/theme 2.4.255 → 2.4.258
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 +5 -1
- package/dist/runtime/public/scss/element-plus/common/var.scss +1 -1
- package/dist/runtime/public/scss/element-plus/descriptions.css +5 -1
- package/dist/runtime/public/scss/element-plus/descriptions.scss +3 -1
- package/dist/runtime/public/scss/element-plus/index.css +5 -1
- 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.257";
|
|
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 = {
|
|
@@ -8969,7 +8969,7 @@ heights > $common-component-size
|
|
|
8969
8969
|
}
|
|
8970
8970
|
|
|
8971
8971
|
.el-descriptions {
|
|
8972
|
-
--el-descriptions-table-border-color: var(--el-
|
|
8972
|
+
--el-descriptions-table-border-color: var(--el-color-neutral-light-2);
|
|
8973
8973
|
--el-descriptions-item-bordered-label-background: var(--el-fill-color-light);
|
|
8974
8974
|
box-sizing: border-box;
|
|
8975
8975
|
font-size: var(--el-font-size-base);
|
|
@@ -8994,6 +8994,7 @@ heights > $common-component-size
|
|
|
8994
8994
|
.el-descriptions__body .el-descriptions__table {
|
|
8995
8995
|
border-collapse: collapse;
|
|
8996
8996
|
width: 100%;
|
|
8997
|
+
table-layout: fixed;
|
|
8997
8998
|
}
|
|
8998
8999
|
.el-descriptions__body .el-descriptions__table .el-descriptions__cell {
|
|
8999
9000
|
box-sizing: border-box;
|
|
@@ -9020,6 +9021,9 @@ heights > $common-component-size
|
|
|
9020
9021
|
.el-descriptions__body .el-descriptions__table.is-bordered .el-descriptions__cell.el-descriptions__label:not(:first-of-type) {
|
|
9021
9022
|
border-left: 22px solid white;
|
|
9022
9023
|
}
|
|
9024
|
+
.el-descriptions__body .el-descriptions__table.is-bordered tr:last-child .el-descriptions__cell {
|
|
9025
|
+
border-bottom: none;
|
|
9026
|
+
}
|
|
9023
9027
|
.el-descriptions--large {
|
|
9024
9028
|
font-size: 14px;
|
|
9025
9029
|
}
|
|
@@ -1552,7 +1552,7 @@ $empty: map.merge(
|
|
|
1552
1552
|
$descriptions: () !default;
|
|
1553
1553
|
$descriptions: map.merge(
|
|
1554
1554
|
(
|
|
1555
|
-
'table-border-color': getCssVar('
|
|
1555
|
+
'table-border-color': getCssVar('color-neutral-light-2'),
|
|
1556
1556
|
'item-bordered-label-background': getCssVar('fill-color', 'light'),
|
|
1557
1557
|
),
|
|
1558
1558
|
$descriptions
|
|
@@ -301,7 +301,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
301
301
|
}
|
|
302
302
|
**/
|
|
303
303
|
.el-descriptions {
|
|
304
|
-
--el-descriptions-table-border-color: var(--el-
|
|
304
|
+
--el-descriptions-table-border-color: var(--el-color-neutral-light-2);
|
|
305
305
|
--el-descriptions-item-bordered-label-background: var(--el-fill-color-light);
|
|
306
306
|
box-sizing: border-box;
|
|
307
307
|
font-size: var(--el-font-size-base);
|
|
@@ -326,6 +326,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
326
326
|
.el-descriptions__body .el-descriptions__table {
|
|
327
327
|
border-collapse: collapse;
|
|
328
328
|
width: 100%;
|
|
329
|
+
table-layout: fixed;
|
|
329
330
|
}
|
|
330
331
|
.el-descriptions__body .el-descriptions__table .el-descriptions__cell {
|
|
331
332
|
box-sizing: border-box;
|
|
@@ -352,6 +353,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
352
353
|
.el-descriptions__body .el-descriptions__table.is-bordered .el-descriptions__cell.el-descriptions__label:not(:first-of-type) {
|
|
353
354
|
border-left: 22px solid white;
|
|
354
355
|
}
|
|
356
|
+
.el-descriptions__body .el-descriptions__table.is-bordered tr:last-child .el-descriptions__cell {
|
|
357
|
+
border-bottom: none;
|
|
358
|
+
}
|
|
355
359
|
.el-descriptions--large {
|
|
356
360
|
font-size: 14px;
|
|
357
361
|
}
|
|
@@ -94,6 +94,7 @@ $descriptions-cell-font-size: map.merge(
|
|
|
94
94
|
.#{$namespace}-descriptions__table {
|
|
95
95
|
border-collapse: collapse;
|
|
96
96
|
width: 100%;
|
|
97
|
+
table-layout: fixed;
|
|
97
98
|
|
|
98
99
|
.#{$namespace}-descriptions__cell {
|
|
99
100
|
box-sizing: border-box;
|
|
@@ -118,6 +119,7 @@ $descriptions-cell-font-size: map.merge(
|
|
|
118
119
|
&.is-bordered {
|
|
119
120
|
.#{$namespace}-descriptions__cell {
|
|
120
121
|
border-bottom: 1px solid getCssVar('descriptions-table-border-color');
|
|
122
|
+
|
|
121
123
|
// padding: map.get($descriptions-bordered-cell-padding, 'default');
|
|
122
124
|
|
|
123
125
|
&.el-descriptions__label:not(:first-of-type) {
|
|
@@ -127,7 +129,7 @@ $descriptions-cell-font-size: map.merge(
|
|
|
127
129
|
|
|
128
130
|
tr:last-child {
|
|
129
131
|
.#{$namespace}-descriptions__cell {
|
|
130
|
-
|
|
132
|
+
border-bottom: none;
|
|
131
133
|
}
|
|
132
134
|
}
|
|
133
135
|
}
|
|
@@ -7966,7 +7966,7 @@ heights > $common-component-size
|
|
|
7966
7966
|
}
|
|
7967
7967
|
|
|
7968
7968
|
.el-descriptions {
|
|
7969
|
-
--el-descriptions-table-border-color: var(--el-
|
|
7969
|
+
--el-descriptions-table-border-color: var(--el-color-neutral-light-2);
|
|
7970
7970
|
--el-descriptions-item-bordered-label-background: var(--el-fill-color-light);
|
|
7971
7971
|
box-sizing: border-box;
|
|
7972
7972
|
font-size: var(--el-font-size-base);
|
|
@@ -7991,6 +7991,7 @@ heights > $common-component-size
|
|
|
7991
7991
|
.el-descriptions__body .el-descriptions__table {
|
|
7992
7992
|
border-collapse: collapse;
|
|
7993
7993
|
width: 100%;
|
|
7994
|
+
table-layout: fixed;
|
|
7994
7995
|
}
|
|
7995
7996
|
.el-descriptions__body .el-descriptions__table .el-descriptions__cell {
|
|
7996
7997
|
box-sizing: border-box;
|
|
@@ -8017,6 +8018,9 @@ heights > $common-component-size
|
|
|
8017
8018
|
.el-descriptions__body .el-descriptions__table.is-bordered .el-descriptions__cell.el-descriptions__label:not(:first-of-type) {
|
|
8018
8019
|
border-left: 22px solid white;
|
|
8019
8020
|
}
|
|
8021
|
+
.el-descriptions__body .el-descriptions__table.is-bordered tr:last-child .el-descriptions__cell {
|
|
8022
|
+
border-bottom: none;
|
|
8023
|
+
}
|
|
8020
8024
|
.el-descriptions--large {
|
|
8021
8025
|
font-size: 14px;
|
|
8022
8026
|
}
|
package/package.json
CHANGED