@timus-networks/theme 2.4.216 → 2.4.217
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 +8 -12
- package/dist/runtime/public/scss/element-plus/collapse.css +8 -12
- package/dist/runtime/public/scss/element-plus/collapse.scss +10 -12
- package/dist/runtime/public/scss/element-plus/index.css +8 -12
- 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.216";
|
|
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 = {
|
|
@@ -7426,8 +7426,8 @@ heights > $common-component-size
|
|
|
7426
7426
|
border: none;
|
|
7427
7427
|
display: flex;
|
|
7428
7428
|
align-items: center;
|
|
7429
|
-
height:
|
|
7430
|
-
line-height:
|
|
7429
|
+
height: 36px;
|
|
7430
|
+
line-height: 36px;
|
|
7431
7431
|
background-color: var(--el-collapse-header-bg-color);
|
|
7432
7432
|
color: var(--el-collapse-header-text-color);
|
|
7433
7433
|
cursor: pointer;
|
|
@@ -7462,28 +7462,24 @@ heights > $common-component-size
|
|
|
7462
7462
|
}
|
|
7463
7463
|
|
|
7464
7464
|
.el-collapse-item__content {
|
|
7465
|
-
padding-bottom:
|
|
7465
|
+
padding-bottom: 0;
|
|
7466
7466
|
font-size: var(--el-collapse-content-font-size);
|
|
7467
7467
|
color: var(--el-collapse-content-text-color);
|
|
7468
7468
|
line-height: 1.7692307692;
|
|
7469
7469
|
}
|
|
7470
7470
|
|
|
7471
|
+
.el-collapse-item__title {
|
|
7472
|
+
display: flex;
|
|
7473
|
+
flex-grow: 1;
|
|
7474
|
+
}
|
|
7475
|
+
|
|
7471
7476
|
.el-collapse-item:last-child {
|
|
7472
7477
|
margin-bottom: -1px;
|
|
7473
7478
|
}
|
|
7474
7479
|
|
|
7475
|
-
.reverse-collapse .el-collapse-item__header {
|
|
7476
|
-
height: 36px;
|
|
7477
|
-
line-height: 36px;
|
|
7478
|
-
}
|
|
7479
7480
|
.reverse-collapse .el-collapse-item__header .el-collapse-item__title {
|
|
7480
|
-
display: flex;
|
|
7481
|
-
flex-grow: 1;
|
|
7482
7481
|
order: 2;
|
|
7483
7482
|
}
|
|
7484
|
-
.reverse-collapse .el-collapse-item__content {
|
|
7485
|
-
padding-bottom: 0 !important;
|
|
7486
|
-
}
|
|
7487
7483
|
|
|
7488
7484
|
.el-color-predefine {
|
|
7489
7485
|
display: flex;
|
|
@@ -443,8 +443,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
443
443
|
border: none;
|
|
444
444
|
display: flex;
|
|
445
445
|
align-items: center;
|
|
446
|
-
height:
|
|
447
|
-
line-height:
|
|
446
|
+
height: 36px;
|
|
447
|
+
line-height: 36px;
|
|
448
448
|
background-color: var(--el-collapse-header-bg-color);
|
|
449
449
|
color: var(--el-collapse-header-text-color);
|
|
450
450
|
cursor: pointer;
|
|
@@ -479,25 +479,21 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
479
479
|
}
|
|
480
480
|
|
|
481
481
|
.el-collapse-item__content {
|
|
482
|
-
padding-bottom:
|
|
482
|
+
padding-bottom: 0;
|
|
483
483
|
font-size: var(--el-collapse-content-font-size);
|
|
484
484
|
color: var(--el-collapse-content-text-color);
|
|
485
485
|
line-height: 1.7692307692;
|
|
486
486
|
}
|
|
487
487
|
|
|
488
|
+
.el-collapse-item__title {
|
|
489
|
+
display: flex;
|
|
490
|
+
flex-grow: 1;
|
|
491
|
+
}
|
|
492
|
+
|
|
488
493
|
.el-collapse-item:last-child {
|
|
489
494
|
margin-bottom: -1px;
|
|
490
495
|
}
|
|
491
496
|
|
|
492
|
-
.reverse-collapse .el-collapse-item__header {
|
|
493
|
-
height: 36px;
|
|
494
|
-
line-height: 36px;
|
|
495
|
-
}
|
|
496
497
|
.reverse-collapse .el-collapse-item__header .el-collapse-item__title {
|
|
497
|
-
display: flex;
|
|
498
|
-
flex-grow: 1;
|
|
499
498
|
order: 2;
|
|
500
|
-
}
|
|
501
|
-
.reverse-collapse .el-collapse-item__content {
|
|
502
|
-
padding-bottom: 0 !important;
|
|
503
499
|
}
|
|
@@ -23,8 +23,10 @@
|
|
|
23
23
|
border: none;
|
|
24
24
|
display: flex;
|
|
25
25
|
align-items: center;
|
|
26
|
-
height: getCssVar('collapse-header-height');
|
|
27
|
-
line-height: getCssVar('collapse-header-height');
|
|
26
|
+
// height: getCssVar('collapse-header-height');
|
|
27
|
+
// line-height: getCssVar('collapse-header-height');
|
|
28
|
+
height: 36px;
|
|
29
|
+
line-height: 36px;
|
|
28
30
|
background-color: getCssVar('collapse-header-bg-color');
|
|
29
31
|
color: getCssVar('collapse-header-text-color');
|
|
30
32
|
cursor: pointer;
|
|
@@ -58,12 +60,17 @@
|
|
|
58
60
|
}
|
|
59
61
|
|
|
60
62
|
@include e(content) {
|
|
61
|
-
padding-bottom:
|
|
63
|
+
padding-bottom: 0;
|
|
62
64
|
font-size: getCssVar('collapse-content-font-size');
|
|
63
65
|
color: getCssVar('collapse-content-text-color');
|
|
64
66
|
line-height: 1.769230769230769;
|
|
65
67
|
}
|
|
66
68
|
|
|
69
|
+
@include e(title) {
|
|
70
|
+
display: flex;
|
|
71
|
+
flex-grow: 1;
|
|
72
|
+
}
|
|
73
|
+
|
|
67
74
|
&:last-child {
|
|
68
75
|
margin-bottom: -1px;
|
|
69
76
|
}
|
|
@@ -71,17 +78,8 @@
|
|
|
71
78
|
|
|
72
79
|
.reverse-collapse {
|
|
73
80
|
.el-collapse-item__header {
|
|
74
|
-
height: 36px;
|
|
75
|
-
line-height: 36px;
|
|
76
|
-
|
|
77
81
|
.el-collapse-item__title {
|
|
78
|
-
display: flex;
|
|
79
|
-
flex-grow: 1;
|
|
80
82
|
order: 2;
|
|
81
83
|
}
|
|
82
84
|
}
|
|
83
|
-
|
|
84
|
-
.el-collapse-item__content {
|
|
85
|
-
padding-bottom: 0 !important;
|
|
86
|
-
}
|
|
87
85
|
}
|
|
@@ -6423,8 +6423,8 @@ heights > $common-component-size
|
|
|
6423
6423
|
border: none;
|
|
6424
6424
|
display: flex;
|
|
6425
6425
|
align-items: center;
|
|
6426
|
-
height:
|
|
6427
|
-
line-height:
|
|
6426
|
+
height: 36px;
|
|
6427
|
+
line-height: 36px;
|
|
6428
6428
|
background-color: var(--el-collapse-header-bg-color);
|
|
6429
6429
|
color: var(--el-collapse-header-text-color);
|
|
6430
6430
|
cursor: pointer;
|
|
@@ -6459,28 +6459,24 @@ heights > $common-component-size
|
|
|
6459
6459
|
}
|
|
6460
6460
|
|
|
6461
6461
|
.el-collapse-item__content {
|
|
6462
|
-
padding-bottom:
|
|
6462
|
+
padding-bottom: 0;
|
|
6463
6463
|
font-size: var(--el-collapse-content-font-size);
|
|
6464
6464
|
color: var(--el-collapse-content-text-color);
|
|
6465
6465
|
line-height: 1.7692307692;
|
|
6466
6466
|
}
|
|
6467
6467
|
|
|
6468
|
+
.el-collapse-item__title {
|
|
6469
|
+
display: flex;
|
|
6470
|
+
flex-grow: 1;
|
|
6471
|
+
}
|
|
6472
|
+
|
|
6468
6473
|
.el-collapse-item:last-child {
|
|
6469
6474
|
margin-bottom: -1px;
|
|
6470
6475
|
}
|
|
6471
6476
|
|
|
6472
|
-
.reverse-collapse .el-collapse-item__header {
|
|
6473
|
-
height: 36px;
|
|
6474
|
-
line-height: 36px;
|
|
6475
|
-
}
|
|
6476
6477
|
.reverse-collapse .el-collapse-item__header .el-collapse-item__title {
|
|
6477
|
-
display: flex;
|
|
6478
|
-
flex-grow: 1;
|
|
6479
6478
|
order: 2;
|
|
6480
6479
|
}
|
|
6481
|
-
.reverse-collapse .el-collapse-item__content {
|
|
6482
|
-
padding-bottom: 0 !important;
|
|
6483
|
-
}
|
|
6484
6480
|
|
|
6485
6481
|
.el-color-predefine {
|
|
6486
6482
|
display: flex;
|
package/package.json
CHANGED