@timus-networks/theme 2.4.88 → 2.4.89
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/public/scss/element-plus/card.css +6 -4
- package/dist/runtime/public/scss/element-plus/card.scss +3 -1
- package/dist/runtime/public/scss/element-plus/common/var.scss +3 -3
- package/dist/runtime/public/scss/element-plus/index.css +13 -7
- package/dist/runtime/public/scss/element-plus/menu.css +7 -3
- package/dist/runtime/public/scss/element-plus/menu.scss +16 -11
- 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.89";
|
|
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 = {
|
|
@@ -301,9 +301,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
301
301
|
}
|
|
302
302
|
**/
|
|
303
303
|
.el-card {
|
|
304
|
-
--el-card-border-color: var(--el-
|
|
305
|
-
--el-card-border-radius:
|
|
306
|
-
--el-card-padding:
|
|
304
|
+
--el-card-border-color: var(--el-color-primary-light-1);
|
|
305
|
+
--el-card-border-radius: 4px;
|
|
306
|
+
--el-card-padding: 16px;
|
|
307
307
|
--el-card-bg-color: var(--el-fill-color-blank);
|
|
308
308
|
}
|
|
309
309
|
|
|
@@ -314,6 +314,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
314
314
|
overflow: hidden;
|
|
315
315
|
color: var(--el-text-color-primary);
|
|
316
316
|
transition: var(--el-transition-duration);
|
|
317
|
+
flex-direction: column;
|
|
318
|
+
gap: 8px;
|
|
317
319
|
}
|
|
318
320
|
.el-card.is-always-shadow {
|
|
319
321
|
box-shadow: var(--el-box-shadow-light);
|
|
@@ -332,10 +334,10 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
332
334
|
}
|
|
333
335
|
|
|
334
336
|
.el-card__body {
|
|
335
|
-
padding: var(--el-card-padding);
|
|
336
337
|
font-size: 14px;
|
|
337
338
|
line-height: 24px;
|
|
338
339
|
color: var(--el-color-neutral-light-8);
|
|
340
|
+
padding: 0 var(--el-card-padding) var(--el-card-padding) var(--el-card-padding);
|
|
339
341
|
}
|
|
340
342
|
|
|
341
343
|
.el-card__footer {
|
|
@@ -15,6 +15,8 @@
|
|
|
15
15
|
overflow: hidden;
|
|
16
16
|
color: getCssVar('text-color', 'primary');
|
|
17
17
|
transition: getCssVar('transition-duration');
|
|
18
|
+
flex-direction: column;
|
|
19
|
+
gap: 8px;
|
|
18
20
|
|
|
19
21
|
@include when(always-shadow) {
|
|
20
22
|
box-shadow: getCssVar('box-shadow', 'light');
|
|
@@ -37,10 +39,10 @@
|
|
|
37
39
|
}
|
|
38
40
|
|
|
39
41
|
@include e(body) {
|
|
40
|
-
padding: $padding;
|
|
41
42
|
font-size: 14px;
|
|
42
43
|
line-height: 24px;
|
|
43
44
|
color: getCssVar('color-neutral-light-8');
|
|
45
|
+
padding: 0 $padding $padding $padding;
|
|
44
46
|
}
|
|
45
47
|
|
|
46
48
|
@include e(footer) {
|
|
@@ -1200,9 +1200,9 @@ $badge: map.merge(
|
|
|
1200
1200
|
$card: () !default;
|
|
1201
1201
|
$card: map.merge(
|
|
1202
1202
|
(
|
|
1203
|
-
'border-color': getCssVar('
|
|
1204
|
-
'border-radius':
|
|
1205
|
-
'padding':
|
|
1203
|
+
'border-color': getCssVar('color-primary-light-1'),
|
|
1204
|
+
'border-radius': 4px,
|
|
1205
|
+
'padding': 16px,
|
|
1206
1206
|
'bg-color': getCssVar('fill-color', 'blank'),
|
|
1207
1207
|
),
|
|
1208
1208
|
$card
|
|
@@ -2222,9 +2222,9 @@ heights > $common-component-size
|
|
|
2222
2222
|
}
|
|
2223
2223
|
|
|
2224
2224
|
.el-card {
|
|
2225
|
-
--el-card-border-color: var(--el-
|
|
2226
|
-
--el-card-border-radius:
|
|
2227
|
-
--el-card-padding:
|
|
2225
|
+
--el-card-border-color: var(--el-color-primary-light-1);
|
|
2226
|
+
--el-card-border-radius: 4px;
|
|
2227
|
+
--el-card-padding: 16px;
|
|
2228
2228
|
--el-card-bg-color: var(--el-fill-color-blank);
|
|
2229
2229
|
}
|
|
2230
2230
|
|
|
@@ -2235,6 +2235,8 @@ heights > $common-component-size
|
|
|
2235
2235
|
overflow: hidden;
|
|
2236
2236
|
color: var(--el-text-color-primary);
|
|
2237
2237
|
transition: var(--el-transition-duration);
|
|
2238
|
+
flex-direction: column;
|
|
2239
|
+
gap: 8px;
|
|
2238
2240
|
}
|
|
2239
2241
|
.el-card.is-always-shadow {
|
|
2240
2242
|
box-shadow: var(--el-box-shadow-light);
|
|
@@ -2253,10 +2255,10 @@ heights > $common-component-size
|
|
|
2253
2255
|
}
|
|
2254
2256
|
|
|
2255
2257
|
.el-card__body {
|
|
2256
|
-
padding: var(--el-card-padding);
|
|
2257
2258
|
font-size: 14px;
|
|
2258
2259
|
line-height: 24px;
|
|
2259
2260
|
color: var(--el-color-neutral-light-8);
|
|
2261
|
+
padding: 0 var(--el-card-padding) var(--el-card-padding) var(--el-card-padding);
|
|
2260
2262
|
}
|
|
2261
2263
|
|
|
2262
2264
|
.el-card__footer {
|
|
@@ -10210,7 +10212,7 @@ h6,
|
|
|
10210
10212
|
background-color: var(--el-menu-bg-color);
|
|
10211
10213
|
box-sizing: border-box;
|
|
10212
10214
|
}
|
|
10213
|
-
.el-menu--vertical
|
|
10215
|
+
.el-menu--vertical .el-menu-item, .el-menu--vertical .el-sub-menu__title, .el-menu--vertical .el-menu-item-group__title {
|
|
10214
10216
|
display: flex;
|
|
10215
10217
|
gap: var(--el-menu-items-gap);
|
|
10216
10218
|
border-radius: var(--el-menu-border-radius);
|
|
@@ -10332,6 +10334,10 @@ h6,
|
|
|
10332
10334
|
border-radius: var(--el-border-radius-small);
|
|
10333
10335
|
box-shadow: var(--el-box-shadow-light);
|
|
10334
10336
|
}
|
|
10337
|
+
.el-menu--popup .el-menu-item {
|
|
10338
|
+
padding: 0 var(--el-menu-base-level-padding);
|
|
10339
|
+
height: var(--el-menu-horizontal-sub-item-height);
|
|
10340
|
+
}
|
|
10335
10341
|
|
|
10336
10342
|
.el-menu .el-icon {
|
|
10337
10343
|
flex-shrink: 0;
|
|
@@ -10344,7 +10350,7 @@ h6,
|
|
|
10344
10350
|
line-height: var(--el-menu-item-height);
|
|
10345
10351
|
font-size: var(--el-menu-item-font-size);
|
|
10346
10352
|
color: var(--el-menu-text-color);
|
|
10347
|
-
padding:
|
|
10353
|
+
padding: var(--el-menu-base-level-padding);
|
|
10348
10354
|
list-style: none;
|
|
10349
10355
|
cursor: pointer;
|
|
10350
10356
|
position: relative;
|
|
@@ -10409,7 +10415,7 @@ h6,
|
|
|
10409
10415
|
line-height: var(--el-menu-item-height);
|
|
10410
10416
|
font-size: var(--el-menu-item-font-size);
|
|
10411
10417
|
color: var(--el-menu-text-color);
|
|
10412
|
-
padding:
|
|
10418
|
+
padding: var(--el-menu-base-level-padding);
|
|
10413
10419
|
list-style: none;
|
|
10414
10420
|
cursor: pointer;
|
|
10415
10421
|
position: relative;
|
|
@@ -448,7 +448,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
448
448
|
background-color: var(--el-menu-bg-color);
|
|
449
449
|
box-sizing: border-box;
|
|
450
450
|
}
|
|
451
|
-
.el-menu--vertical
|
|
451
|
+
.el-menu--vertical .el-menu-item, .el-menu--vertical .el-sub-menu__title, .el-menu--vertical .el-menu-item-group__title {
|
|
452
452
|
display: flex;
|
|
453
453
|
gap: var(--el-menu-items-gap);
|
|
454
454
|
border-radius: var(--el-menu-border-radius);
|
|
@@ -570,6 +570,10 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
570
570
|
border-radius: var(--el-border-radius-small);
|
|
571
571
|
box-shadow: var(--el-box-shadow-light);
|
|
572
572
|
}
|
|
573
|
+
.el-menu--popup .el-menu-item {
|
|
574
|
+
padding: 0 var(--el-menu-base-level-padding);
|
|
575
|
+
height: var(--el-menu-horizontal-sub-item-height);
|
|
576
|
+
}
|
|
573
577
|
|
|
574
578
|
.el-menu .el-icon {
|
|
575
579
|
flex-shrink: 0;
|
|
@@ -582,7 +586,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
582
586
|
line-height: var(--el-menu-item-height);
|
|
583
587
|
font-size: var(--el-menu-item-font-size);
|
|
584
588
|
color: var(--el-menu-text-color);
|
|
585
|
-
padding:
|
|
589
|
+
padding: var(--el-menu-base-level-padding);
|
|
586
590
|
list-style: none;
|
|
587
591
|
cursor: pointer;
|
|
588
592
|
position: relative;
|
|
@@ -647,7 +651,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
647
651
|
line-height: var(--el-menu-item-height);
|
|
648
652
|
font-size: var(--el-menu-item-font-size);
|
|
649
653
|
color: var(--el-menu-text-color);
|
|
650
|
-
padding:
|
|
654
|
+
padding: var(--el-menu-base-level-padding);
|
|
651
655
|
list-style: none;
|
|
652
656
|
cursor: pointer;
|
|
653
657
|
position: relative;
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
line-height: getCssVar('menu-item-height');
|
|
12
12
|
font-size: getCssVar('menu-item-font-size');
|
|
13
13
|
color: getCssVar('menu-text-color');
|
|
14
|
-
padding:
|
|
14
|
+
padding: getCssVar('menu-base-level-padding');
|
|
15
15
|
list-style: none;
|
|
16
16
|
cursor: pointer;
|
|
17
17
|
position: relative;
|
|
@@ -62,17 +62,17 @@
|
|
|
62
62
|
box-sizing: border-box;
|
|
63
63
|
|
|
64
64
|
@include m(vertical) {
|
|
65
|
-
&:not(.#{$namespace}-menu--collapse):not(.#{$namespace}-menu--popup-container) {
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
}
|
|
65
|
+
// &:not(.#{$namespace}-menu--collapse):not(.#{$namespace}-menu--popup-container) {
|
|
66
|
+
& .#{$namespace}-menu-item,
|
|
67
|
+
& .#{$namespace}-sub-menu__title,
|
|
68
|
+
& .#{$namespace}-menu-item-group__title {
|
|
69
|
+
display: flex;
|
|
70
|
+
gap: getCssVar('menu-items-gap');
|
|
71
|
+
border-radius: getCssVar('menu-border-radius');
|
|
72
|
+
white-space: nowrap;
|
|
73
|
+
padding-left: calc(#{getCssVar('menu-base-level-padding')} + #{getCssVar('menu-level')} * #{getCssVar('menu-level-padding')});
|
|
75
74
|
}
|
|
75
|
+
// }
|
|
76
76
|
}
|
|
77
77
|
|
|
78
78
|
&:not(.#{$namespace}-menu--collapse) .#{$namespace}-sub-menu__title {
|
|
@@ -217,6 +217,11 @@
|
|
|
217
217
|
padding: 5px 0;
|
|
218
218
|
border-radius: getCssVar('border-radius-small');
|
|
219
219
|
box-shadow: getCssVar('box-shadow-light');
|
|
220
|
+
|
|
221
|
+
.#{$namespace}-menu-item {
|
|
222
|
+
padding: 0 getCssVar('menu-base-level-padding');
|
|
223
|
+
height: getCssVar('menu-horizontal-sub-item-height');
|
|
224
|
+
}
|
|
220
225
|
}
|
|
221
226
|
|
|
222
227
|
.#{$namespace}-icon {
|
package/package.json
CHANGED