@timus-networks/theme 2.4.87 → 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 +13 -10
- package/dist/runtime/public/scss/element-plus/index.css +30 -14
- package/dist/runtime/public/scss/element-plus/input-number.css +2 -0
- package/dist/runtime/public/scss/element-plus/menu.css +7 -3
- package/dist/runtime/public/scss/element-plus/menu.scss +16 -11
- package/dist/runtime/public/scss/element-plus/select-v2.css +11 -3
- package/dist/runtime/public/scss/element-plus/select.css +11 -3
- package/dist/runtime/public/scss/element-plus/select.scss +8 -3
- package/dist/runtime/public/scss/element-plus/tag.css +4 -4
- 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) {
|
|
@@ -489,8 +489,8 @@ $select-dropdown: map.merge(
|
|
|
489
489
|
$select-wrapper-padding: () !default;
|
|
490
490
|
$select-wrapper-padding: map.merge(
|
|
491
491
|
(
|
|
492
|
+
'default': 8px 12px,
|
|
492
493
|
'large': 10px 12px,
|
|
493
|
-
'default': 10px 12px,
|
|
494
494
|
'medium': 8px 12px,
|
|
495
495
|
'small': 6px 12px,
|
|
496
496
|
'mini': 5px 12px,
|
|
@@ -501,7 +501,7 @@ $select-wrapper-padding: map.merge(
|
|
|
501
501
|
$select-near-margin-left: () !default;
|
|
502
502
|
$select-near-margin-left: map.merge(
|
|
503
503
|
(
|
|
504
|
-
'default': 0,
|
|
504
|
+
'default': 0 -3px,
|
|
505
505
|
'large': 0,
|
|
506
506
|
'medium': 0 -3px,
|
|
507
507
|
'small': 0 -6px,
|
|
@@ -528,6 +528,7 @@ $select-item-height: map.merge(
|
|
|
528
528
|
(
|
|
529
529
|
'large': 20px,
|
|
530
530
|
'default': 20px,
|
|
531
|
+
'medium': 20px,
|
|
531
532
|
'small': 20px,
|
|
532
533
|
),
|
|
533
534
|
$select-item-height
|
|
@@ -670,7 +671,9 @@ $input-number-width: map.merge(
|
|
|
670
671
|
(
|
|
671
672
|
'large': 180px,
|
|
672
673
|
'default': 150px,
|
|
674
|
+
'medium': 150px,
|
|
673
675
|
'small': 120px,
|
|
676
|
+
'mini': 120px,
|
|
674
677
|
),
|
|
675
678
|
$input-number-width
|
|
676
679
|
);
|
|
@@ -1112,11 +1115,11 @@ $tag-padding: map.merge(
|
|
|
1112
1115
|
$tag-icon-size: () !default;
|
|
1113
1116
|
$tag-icon-size: map.merge(
|
|
1114
1117
|
(
|
|
1115
|
-
'default':
|
|
1116
|
-
'large':
|
|
1117
|
-
'medium':
|
|
1118
|
-
'small':
|
|
1119
|
-
'mini':
|
|
1118
|
+
'default': 10px,
|
|
1119
|
+
'large': 10px,
|
|
1120
|
+
'medium': 10px,
|
|
1121
|
+
'small': 10px,
|
|
1122
|
+
'mini': 10px,
|
|
1120
1123
|
),
|
|
1121
1124
|
$tag-icon-size
|
|
1122
1125
|
);
|
|
@@ -1197,9 +1200,9 @@ $badge: map.merge(
|
|
|
1197
1200
|
$card: () !default;
|
|
1198
1201
|
$card: map.merge(
|
|
1199
1202
|
(
|
|
1200
|
-
'border-color': getCssVar('
|
|
1201
|
-
'border-radius':
|
|
1202
|
-
'padding':
|
|
1203
|
+
'border-color': getCssVar('color-primary-light-1'),
|
|
1204
|
+
'border-radius': 4px,
|
|
1205
|
+
'padding': 16px,
|
|
1203
1206
|
'bg-color': getCssVar('fill-color', 'blank'),
|
|
1204
1207
|
),
|
|
1205
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 {
|
|
@@ -9714,6 +9716,7 @@ heights > $common-component-size
|
|
|
9714
9716
|
}
|
|
9715
9717
|
|
|
9716
9718
|
.el-input-number--medium {
|
|
9719
|
+
width: 150px;
|
|
9717
9720
|
line-height: 34px;
|
|
9718
9721
|
}
|
|
9719
9722
|
.el-input-number--medium .el-input-number__increase, .el-input-number--medium .el-input-number__decrease {
|
|
@@ -9741,6 +9744,7 @@ heights > $common-component-size
|
|
|
9741
9744
|
}
|
|
9742
9745
|
|
|
9743
9746
|
.el-input-number--mini {
|
|
9747
|
+
width: 120px;
|
|
9744
9748
|
line-height: 26px;
|
|
9745
9749
|
}
|
|
9746
9750
|
.el-input-number--mini .el-input-number__increase, .el-input-number--mini .el-input-number__decrease {
|
|
@@ -10208,7 +10212,7 @@ h6,
|
|
|
10208
10212
|
background-color: var(--el-menu-bg-color);
|
|
10209
10213
|
box-sizing: border-box;
|
|
10210
10214
|
}
|
|
10211
|
-
.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 {
|
|
10212
10216
|
display: flex;
|
|
10213
10217
|
gap: var(--el-menu-items-gap);
|
|
10214
10218
|
border-radius: var(--el-menu-border-radius);
|
|
@@ -10330,6 +10334,10 @@ h6,
|
|
|
10330
10334
|
border-radius: var(--el-border-radius-small);
|
|
10331
10335
|
box-shadow: var(--el-box-shadow-light);
|
|
10332
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
|
+
}
|
|
10333
10341
|
|
|
10334
10342
|
.el-menu .el-icon {
|
|
10335
10343
|
flex-shrink: 0;
|
|
@@ -10342,7 +10350,7 @@ h6,
|
|
|
10342
10350
|
line-height: var(--el-menu-item-height);
|
|
10343
10351
|
font-size: var(--el-menu-item-font-size);
|
|
10344
10352
|
color: var(--el-menu-text-color);
|
|
10345
|
-
padding:
|
|
10353
|
+
padding: var(--el-menu-base-level-padding);
|
|
10346
10354
|
list-style: none;
|
|
10347
10355
|
cursor: pointer;
|
|
10348
10356
|
position: relative;
|
|
@@ -10407,7 +10415,7 @@ h6,
|
|
|
10407
10415
|
line-height: var(--el-menu-item-height);
|
|
10408
10416
|
font-size: var(--el-menu-item-font-size);
|
|
10409
10417
|
color: var(--el-menu-text-color);
|
|
10410
|
-
padding:
|
|
10418
|
+
padding: var(--el-menu-base-level-padding);
|
|
10411
10419
|
list-style: none;
|
|
10412
10420
|
cursor: pointer;
|
|
10413
10421
|
position: relative;
|
|
@@ -12478,9 +12486,8 @@ h6,
|
|
|
12478
12486
|
cursor: pointer;
|
|
12479
12487
|
text-align: left;
|
|
12480
12488
|
font-size: 14px;
|
|
12481
|
-
padding:
|
|
12489
|
+
padding: 8px 12px;
|
|
12482
12490
|
gap: 8px;
|
|
12483
|
-
height: 36px;
|
|
12484
12491
|
min-height: 36px;
|
|
12485
12492
|
line-height: 20px;
|
|
12486
12493
|
border-radius: var(--el-border-radius-small);
|
|
@@ -12569,7 +12576,7 @@ h6,
|
|
|
12569
12576
|
.el-select__selection {
|
|
12570
12577
|
position: relative;
|
|
12571
12578
|
display: flex;
|
|
12572
|
-
flex-wrap:
|
|
12579
|
+
flex-wrap: wrap;
|
|
12573
12580
|
align-items: center;
|
|
12574
12581
|
flex: 1;
|
|
12575
12582
|
min-width: 0;
|
|
@@ -12652,6 +12659,10 @@ h6,
|
|
|
12652
12659
|
.el-select__input-wrapper {
|
|
12653
12660
|
max-width: 100%;
|
|
12654
12661
|
}
|
|
12662
|
+
.el-select__input-wrapper input {
|
|
12663
|
+
max-width: 2px !important;
|
|
12664
|
+
min-width: 2px !important;
|
|
12665
|
+
}
|
|
12655
12666
|
.el-select__input-wrapper.is-hidden {
|
|
12656
12667
|
position: absolute;
|
|
12657
12668
|
opacity: 0;
|
|
@@ -12716,6 +12727,7 @@ h6,
|
|
|
12716
12727
|
padding: 8px 12px;
|
|
12717
12728
|
min-height: 36px;
|
|
12718
12729
|
height: 36px;
|
|
12730
|
+
line-height: 20px;
|
|
12719
12731
|
font-size: 14px;
|
|
12720
12732
|
}
|
|
12721
12733
|
|
|
@@ -12734,6 +12746,10 @@ h6,
|
|
|
12734
12746
|
gap: 8px;
|
|
12735
12747
|
}
|
|
12736
12748
|
|
|
12749
|
+
.el-select--medium .el-select__input {
|
|
12750
|
+
height: 20px;
|
|
12751
|
+
}
|
|
12752
|
+
|
|
12737
12753
|
.el-select--small .el-select__wrapper {
|
|
12738
12754
|
gap: 4px;
|
|
12739
12755
|
padding: 6px 12px;
|
|
@@ -15517,7 +15533,7 @@ h6,
|
|
|
15517
15533
|
.el-tag--large {
|
|
15518
15534
|
padding: 0 7px;
|
|
15519
15535
|
height: 32px;
|
|
15520
|
-
--el-icon-size:
|
|
15536
|
+
--el-icon-size: 10px;
|
|
15521
15537
|
}
|
|
15522
15538
|
.el-tag--large .el-tag__close {
|
|
15523
15539
|
margin-left: 8px;
|
|
@@ -15529,7 +15545,7 @@ h6,
|
|
|
15529
15545
|
.el-tag--medium {
|
|
15530
15546
|
padding: 0 7px;
|
|
15531
15547
|
height: 28px;
|
|
15532
|
-
--el-icon-size:
|
|
15548
|
+
--el-icon-size: 10px;
|
|
15533
15549
|
}
|
|
15534
15550
|
.el-tag--medium .el-tag__close {
|
|
15535
15551
|
margin-left: 4px;
|
|
@@ -15541,7 +15557,7 @@ h6,
|
|
|
15541
15557
|
.el-tag--small {
|
|
15542
15558
|
padding: 0 7px;
|
|
15543
15559
|
height: 24px;
|
|
15544
|
-
--el-icon-size:
|
|
15560
|
+
--el-icon-size: 10px;
|
|
15545
15561
|
}
|
|
15546
15562
|
.el-tag--small .el-tag__close {
|
|
15547
15563
|
margin-left: 4px;
|
|
@@ -15553,7 +15569,7 @@ h6,
|
|
|
15553
15569
|
.el-tag--mini {
|
|
15554
15570
|
padding: 0 7px;
|
|
15555
15571
|
height: 18px;
|
|
15556
|
-
--el-icon-size:
|
|
15572
|
+
--el-icon-size: 10px;
|
|
15557
15573
|
}
|
|
15558
15574
|
.el-tag--mini .el-tag__close {
|
|
15559
15575
|
margin-left: 4px;
|
|
@@ -392,6 +392,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
392
392
|
}
|
|
393
393
|
|
|
394
394
|
.el-input-number--medium {
|
|
395
|
+
width: 150px;
|
|
395
396
|
line-height: 34px;
|
|
396
397
|
}
|
|
397
398
|
.el-input-number--medium .el-input-number__increase, .el-input-number--medium .el-input-number__decrease {
|
|
@@ -419,6 +420,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
419
420
|
}
|
|
420
421
|
|
|
421
422
|
.el-input-number--mini {
|
|
423
|
+
width: 120px;
|
|
422
424
|
line-height: 26px;
|
|
423
425
|
}
|
|
424
426
|
.el-input-number--mini .el-input-number__increase, .el-input-number--mini .el-input-number__decrease {
|
|
@@ -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 {
|
|
@@ -462,9 +462,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
462
462
|
cursor: pointer;
|
|
463
463
|
text-align: left;
|
|
464
464
|
font-size: 14px;
|
|
465
|
-
padding:
|
|
465
|
+
padding: 8px 12px;
|
|
466
466
|
gap: 8px;
|
|
467
|
-
height: 36px;
|
|
468
467
|
min-height: 36px;
|
|
469
468
|
line-height: 20px;
|
|
470
469
|
border-radius: var(--el-border-radius-small);
|
|
@@ -553,7 +552,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
553
552
|
.el-select__selection {
|
|
554
553
|
position: relative;
|
|
555
554
|
display: flex;
|
|
556
|
-
flex-wrap:
|
|
555
|
+
flex-wrap: wrap;
|
|
557
556
|
align-items: center;
|
|
558
557
|
flex: 1;
|
|
559
558
|
min-width: 0;
|
|
@@ -636,6 +635,10 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
636
635
|
.el-select__input-wrapper {
|
|
637
636
|
max-width: 100%;
|
|
638
637
|
}
|
|
638
|
+
.el-select__input-wrapper input {
|
|
639
|
+
max-width: 2px !important;
|
|
640
|
+
min-width: 2px !important;
|
|
641
|
+
}
|
|
639
642
|
.el-select__input-wrapper.is-hidden {
|
|
640
643
|
position: absolute;
|
|
641
644
|
opacity: 0;
|
|
@@ -700,6 +703,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
700
703
|
padding: 8px 12px;
|
|
701
704
|
min-height: 36px;
|
|
702
705
|
height: 36px;
|
|
706
|
+
line-height: 20px;
|
|
703
707
|
font-size: 14px;
|
|
704
708
|
}
|
|
705
709
|
|
|
@@ -718,6 +722,10 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
718
722
|
gap: 8px;
|
|
719
723
|
}
|
|
720
724
|
|
|
725
|
+
.el-select--medium .el-select__input {
|
|
726
|
+
height: 20px;
|
|
727
|
+
}
|
|
728
|
+
|
|
721
729
|
.el-select--small .el-select__wrapper {
|
|
722
730
|
gap: 4px;
|
|
723
731
|
padding: 6px 12px;
|
|
@@ -462,9 +462,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
462
462
|
cursor: pointer;
|
|
463
463
|
text-align: left;
|
|
464
464
|
font-size: 14px;
|
|
465
|
-
padding:
|
|
465
|
+
padding: 8px 12px;
|
|
466
466
|
gap: 8px;
|
|
467
|
-
height: 36px;
|
|
468
467
|
min-height: 36px;
|
|
469
468
|
line-height: 20px;
|
|
470
469
|
border-radius: var(--el-border-radius-small);
|
|
@@ -553,7 +552,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
553
552
|
.el-select__selection {
|
|
554
553
|
position: relative;
|
|
555
554
|
display: flex;
|
|
556
|
-
flex-wrap:
|
|
555
|
+
flex-wrap: wrap;
|
|
557
556
|
align-items: center;
|
|
558
557
|
flex: 1;
|
|
559
558
|
min-width: 0;
|
|
@@ -636,6 +635,10 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
636
635
|
.el-select__input-wrapper {
|
|
637
636
|
max-width: 100%;
|
|
638
637
|
}
|
|
638
|
+
.el-select__input-wrapper input {
|
|
639
|
+
max-width: 2px !important;
|
|
640
|
+
min-width: 2px !important;
|
|
641
|
+
}
|
|
639
642
|
.el-select__input-wrapper.is-hidden {
|
|
640
643
|
position: absolute;
|
|
641
644
|
opacity: 0;
|
|
@@ -700,6 +703,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
700
703
|
padding: 8px 12px;
|
|
701
704
|
min-height: 36px;
|
|
702
705
|
height: 36px;
|
|
706
|
+
line-height: 20px;
|
|
703
707
|
font-size: 14px;
|
|
704
708
|
}
|
|
705
709
|
|
|
@@ -718,6 +722,10 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
718
722
|
gap: 8px;
|
|
719
723
|
}
|
|
720
724
|
|
|
725
|
+
.el-select--medium .el-select__input {
|
|
726
|
+
height: 20px;
|
|
727
|
+
}
|
|
728
|
+
|
|
721
729
|
.el-select--small .el-select__wrapper {
|
|
722
730
|
gap: 4px;
|
|
723
731
|
padding: 6px 12px;
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
font-size: map.get($input-font-size, 'default');
|
|
40
40
|
padding: map.get($select-wrapper-padding, 'default');
|
|
41
41
|
gap: map.get($select-item-gap, 'default');
|
|
42
|
-
height: map.get($common-component-size, 'default');
|
|
42
|
+
// height: map.get($common-component-size, 'default');
|
|
43
43
|
min-height: map.get($input-height, 'default');
|
|
44
44
|
line-height: map.get($select-item-height, 'default');
|
|
45
45
|
border-radius: getCssVar('border-radius-small');
|
|
@@ -139,8 +139,8 @@
|
|
|
139
139
|
@include e(selection) {
|
|
140
140
|
position: relative;
|
|
141
141
|
display: flex;
|
|
142
|
-
|
|
143
|
-
flex-wrap: nowrap;
|
|
142
|
+
flex-wrap: wrap;
|
|
143
|
+
// flex-wrap: nowrap;
|
|
144
144
|
align-items: center;
|
|
145
145
|
flex: 1;
|
|
146
146
|
min-width: 0;
|
|
@@ -211,6 +211,11 @@
|
|
|
211
211
|
@include e(input-wrapper) {
|
|
212
212
|
max-width: 100%;
|
|
213
213
|
|
|
214
|
+
input {
|
|
215
|
+
max-width: 2px !important;
|
|
216
|
+
min-width: 2px !important;
|
|
217
|
+
}
|
|
218
|
+
|
|
214
219
|
@include when(hidden) {
|
|
215
220
|
// Out of the document flow
|
|
216
221
|
position: absolute;
|
|
@@ -543,7 +543,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
543
543
|
.el-tag--large {
|
|
544
544
|
padding: 0 7px;
|
|
545
545
|
height: 32px;
|
|
546
|
-
--el-icon-size:
|
|
546
|
+
--el-icon-size: 10px;
|
|
547
547
|
}
|
|
548
548
|
.el-tag--large .el-tag__close {
|
|
549
549
|
margin-left: 8px;
|
|
@@ -555,7 +555,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
555
555
|
.el-tag--medium {
|
|
556
556
|
padding: 0 7px;
|
|
557
557
|
height: 28px;
|
|
558
|
-
--el-icon-size:
|
|
558
|
+
--el-icon-size: 10px;
|
|
559
559
|
}
|
|
560
560
|
.el-tag--medium .el-tag__close {
|
|
561
561
|
margin-left: 4px;
|
|
@@ -567,7 +567,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
567
567
|
.el-tag--small {
|
|
568
568
|
padding: 0 7px;
|
|
569
569
|
height: 24px;
|
|
570
|
-
--el-icon-size:
|
|
570
|
+
--el-icon-size: 10px;
|
|
571
571
|
}
|
|
572
572
|
.el-tag--small .el-tag__close {
|
|
573
573
|
margin-left: 4px;
|
|
@@ -579,7 +579,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
579
579
|
.el-tag--mini {
|
|
580
580
|
padding: 0 7px;
|
|
581
581
|
height: 18px;
|
|
582
|
-
--el-icon-size:
|
|
582
|
+
--el-icon-size: 10px;
|
|
583
583
|
}
|
|
584
584
|
.el-tag--mini .el-tag__close {
|
|
585
585
|
margin-left: 4px;
|
package/package.json
CHANGED