@timus-networks/theme 2.4.64 → 2.4.66
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/components/development/example.button.vue +4 -0
- package/dist/runtime/public/scss/element-plus/base.css +1 -1
- package/dist/runtime/public/scss/element-plus/button.css +9 -2
- package/dist/runtime/public/scss/element-plus/button.scss +5 -0
- package/dist/runtime/public/scss/element-plus/cascader.css +1 -1
- package/dist/runtime/public/scss/element-plus/checkbox-button.css +1 -1
- package/dist/runtime/public/scss/element-plus/checkbox.css +1 -1
- package/dist/runtime/public/scss/element-plus/color-picker.css +5 -5
- package/dist/runtime/public/scss/element-plus/common/var.scss +1 -1
- package/dist/runtime/public/scss/element-plus/date-picker/picker.css +3 -3
- package/dist/runtime/public/scss/element-plus/date-picker.css +3 -3
- package/dist/runtime/public/scss/element-plus/dropdown.css +1 -1
- package/dist/runtime/public/scss/element-plus/form.css +3 -3
- package/dist/runtime/public/scss/element-plus/index.css +36 -29
- package/dist/runtime/public/scss/element-plus/input-number.css +4 -4
- package/dist/runtime/public/scss/element-plus/input.css +1 -1
- package/dist/runtime/public/scss/element-plus/radio-button.css +1 -1
- package/dist/runtime/public/scss/element-plus/radio.css +1 -1
- package/dist/runtime/public/scss/element-plus/segmented.css +1 -1
- package/dist/runtime/public/scss/element-plus/select-v2.css +2 -2
- package/dist/runtime/public/scss/element-plus/select.css +2 -2
- package/dist/runtime/public/scss/element-plus/switch.css +1 -1
- package/dist/runtime/public/scss/element-plus/time-picker.css +3 -3
- package/dist/runtime/public/scss/element-plus/time-select.css +3 -3
- package/dist/runtime/public/scss/element-plus/var.css +1 -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.66";
|
|
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 = {
|
|
@@ -137,6 +137,10 @@
|
|
|
137
137
|
<el-button round plain :icon="ElIconShare" />
|
|
138
138
|
<el-button :icon="ElIconDelete" size="small" type="danger" />
|
|
139
139
|
<el-button :icon="ElIconDelete" size="mini" type="danger" />
|
|
140
|
+
<el-button class="isax-add" size="mini" type="danger" />
|
|
141
|
+
<el-button class="isax-add" size="small" type="danger" />
|
|
142
|
+
<el-button class="isax-add" size="medium" type="danger" />
|
|
143
|
+
<el-button class="isax-add" size="large" type="danger" />
|
|
140
144
|
<el-button :icon="ElIconSearch">Search</el-button>
|
|
141
145
|
<el-button>
|
|
142
146
|
Upload<el-icon class="el-icon--right"><ElIconUpload /></el-icon>
|
|
@@ -342,7 +342,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
342
342
|
--el-component-size: 40px;
|
|
343
343
|
--el-component-size-large: 40px;
|
|
344
344
|
--el-component-size-medium: 36px;
|
|
345
|
-
--el-component-size-small:
|
|
345
|
+
--el-component-size-small: 32px;
|
|
346
346
|
--el-component-size-mini: 28px;
|
|
347
347
|
}
|
|
348
348
|
|
|
@@ -342,6 +342,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
342
342
|
border: var(--el-border);
|
|
343
343
|
border-color: var(--el-button-border-color);
|
|
344
344
|
}
|
|
345
|
+
.el-button:empty {
|
|
346
|
+
padding: 0;
|
|
347
|
+
}
|
|
345
348
|
.el-button:hover {
|
|
346
349
|
color: var(--el-button-hover-text-color);
|
|
347
350
|
border-color: var(--el-button-hover-border-color);
|
|
@@ -989,6 +992,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
989
992
|
.el-button--large {
|
|
990
993
|
--el-button-size: 40px;
|
|
991
994
|
height: var(--el-button-size);
|
|
995
|
+
min-width: var(--el-button-size);
|
|
992
996
|
}
|
|
993
997
|
.el-button--large [class*=el-icon] + span {
|
|
994
998
|
margin-left: 8px;
|
|
@@ -1013,6 +1017,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
1013
1017
|
.el-button--medium {
|
|
1014
1018
|
--el-button-size: 36px;
|
|
1015
1019
|
height: var(--el-button-size);
|
|
1020
|
+
min-width: var(--el-button-size);
|
|
1016
1021
|
}
|
|
1017
1022
|
.el-button--medium {
|
|
1018
1023
|
padding: 8px 15px;
|
|
@@ -1032,8 +1037,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
1032
1037
|
}
|
|
1033
1038
|
|
|
1034
1039
|
.el-button--small {
|
|
1035
|
-
--el-button-size:
|
|
1040
|
+
--el-button-size: 32px;
|
|
1036
1041
|
height: var(--el-button-size);
|
|
1042
|
+
min-width: var(--el-button-size);
|
|
1037
1043
|
}
|
|
1038
1044
|
.el-button--small [class*=el-icon] + span {
|
|
1039
1045
|
margin-left: 4px;
|
|
@@ -1047,7 +1053,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
1047
1053
|
padding: 5px 15px;
|
|
1048
1054
|
}
|
|
1049
1055
|
.el-button--small:has(> i):not(:has(span)) {
|
|
1050
|
-
width:
|
|
1056
|
+
width: 32px;
|
|
1051
1057
|
padding: 0;
|
|
1052
1058
|
}
|
|
1053
1059
|
.el-button--small.is-circle {
|
|
@@ -1058,6 +1064,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
1058
1064
|
.el-button--mini {
|
|
1059
1065
|
--el-button-size: 28px;
|
|
1060
1066
|
height: var(--el-button-size);
|
|
1067
|
+
min-width: var(--el-button-size);
|
|
1061
1068
|
}
|
|
1062
1069
|
.el-button--mini {
|
|
1063
1070
|
padding: 5px 15px;
|
|
@@ -44,6 +44,10 @@ $button-icon-span-gap: map.merge(
|
|
|
44
44
|
border: getCssVar('border');
|
|
45
45
|
border-color: getCssVar('button', 'border-color');
|
|
46
46
|
|
|
47
|
+
&:empty {
|
|
48
|
+
padding: 0;
|
|
49
|
+
}
|
|
50
|
+
|
|
47
51
|
&:hover {
|
|
48
52
|
color: getCssVar('button', 'hover', 'text-color');
|
|
49
53
|
border-color: getCssVar('button', 'hover', 'border-color');
|
|
@@ -315,6 +319,7 @@ $button-icon-span-gap: map.merge(
|
|
|
315
319
|
@include set-css-var-value(('button', 'size'), map.get($common-component-size, $size));
|
|
316
320
|
|
|
317
321
|
height: getCssVar('button', 'size');
|
|
322
|
+
min-width: getCssVar('button', 'size');
|
|
318
323
|
|
|
319
324
|
& [class*='#{$namespace}-icon'] {
|
|
320
325
|
& + span {
|
|
@@ -424,7 +424,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
424
424
|
}
|
|
425
425
|
|
|
426
426
|
.el-checkbox-button--small .el-checkbox-button__inner {
|
|
427
|
-
--el-button-size:
|
|
427
|
+
--el-button-size: 32px;
|
|
428
428
|
height: var(--el-button-size);
|
|
429
429
|
padding: 5px 15px;
|
|
430
430
|
font-size: 12px;
|
|
@@ -535,15 +535,15 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
535
535
|
}
|
|
536
536
|
|
|
537
537
|
.el-color-picker--small {
|
|
538
|
-
height:
|
|
538
|
+
height: 32px;
|
|
539
539
|
}
|
|
540
540
|
.el-color-picker--small .el-color-picker__trigger {
|
|
541
|
-
height:
|
|
542
|
-
width:
|
|
541
|
+
height: 32px;
|
|
542
|
+
width: 32px;
|
|
543
543
|
}
|
|
544
544
|
.el-color-picker--small .el-color-picker__mask {
|
|
545
|
-
height:
|
|
546
|
-
width:
|
|
545
|
+
height: 30px;
|
|
546
|
+
width: 30px;
|
|
547
547
|
}
|
|
548
548
|
|
|
549
549
|
.el-color-picker--mini {
|
|
@@ -615,12 +615,12 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
615
615
|
height: var(--el-component-size-small);
|
|
616
616
|
}
|
|
617
617
|
.el-range-editor--small .el-range-separator {
|
|
618
|
-
line-height:
|
|
618
|
+
line-height: 32px;
|
|
619
619
|
font-size: 12px;
|
|
620
620
|
}
|
|
621
621
|
.el-range-editor--small .el-range-input {
|
|
622
|
-
height:
|
|
623
|
-
line-height:
|
|
622
|
+
height: 30px;
|
|
623
|
+
line-height: 30px;
|
|
624
624
|
font-size: 12px;
|
|
625
625
|
}
|
|
626
626
|
|
|
@@ -998,12 +998,12 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
998
998
|
height: var(--el-component-size-small);
|
|
999
999
|
}
|
|
1000
1000
|
.el-range-editor--small .el-range-separator {
|
|
1001
|
-
line-height:
|
|
1001
|
+
line-height: 32px;
|
|
1002
1002
|
font-size: 12px;
|
|
1003
1003
|
}
|
|
1004
1004
|
.el-range-editor--small .el-range-input {
|
|
1005
|
-
height:
|
|
1006
|
-
line-height:
|
|
1005
|
+
height: 30px;
|
|
1006
|
+
line-height: 30px;
|
|
1007
1007
|
font-size: 12px;
|
|
1008
1008
|
}
|
|
1009
1009
|
|
|
@@ -378,12 +378,12 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
378
378
|
margin-bottom: 16px;
|
|
379
379
|
}
|
|
380
380
|
.el-form-item--small .el-form-item__label {
|
|
381
|
-
height:
|
|
382
|
-
line-height:
|
|
381
|
+
height: 32px;
|
|
382
|
+
line-height: 32px;
|
|
383
383
|
}
|
|
384
384
|
|
|
385
385
|
.el-form-item--small .el-form-item__content {
|
|
386
|
-
line-height:
|
|
386
|
+
line-height: 32px;
|
|
387
387
|
}
|
|
388
388
|
|
|
389
389
|
.el-form-item--small .el-form-item__error {
|
|
@@ -342,7 +342,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
342
342
|
--el-component-size: 40px;
|
|
343
343
|
--el-component-size-large: 40px;
|
|
344
344
|
--el-component-size-medium: 36px;
|
|
345
|
-
--el-component-size-small:
|
|
345
|
+
--el-component-size-small: 32px;
|
|
346
346
|
--el-component-size-mini: 28px;
|
|
347
347
|
}
|
|
348
348
|
|
|
@@ -1403,6 +1403,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
1403
1403
|
border: var(--el-border);
|
|
1404
1404
|
border-color: var(--el-button-border-color);
|
|
1405
1405
|
}
|
|
1406
|
+
.el-button:empty {
|
|
1407
|
+
padding: 0;
|
|
1408
|
+
}
|
|
1406
1409
|
.el-button:hover {
|
|
1407
1410
|
color: var(--el-button-hover-text-color);
|
|
1408
1411
|
border-color: var(--el-button-hover-border-color);
|
|
@@ -2050,6 +2053,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
2050
2053
|
.el-button--large {
|
|
2051
2054
|
--el-button-size: 40px;
|
|
2052
2055
|
height: var(--el-button-size);
|
|
2056
|
+
min-width: var(--el-button-size);
|
|
2053
2057
|
}
|
|
2054
2058
|
.el-button--large [class*=el-icon] + span {
|
|
2055
2059
|
margin-left: 8px;
|
|
@@ -2074,6 +2078,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
2074
2078
|
.el-button--medium {
|
|
2075
2079
|
--el-button-size: 36px;
|
|
2076
2080
|
height: var(--el-button-size);
|
|
2081
|
+
min-width: var(--el-button-size);
|
|
2077
2082
|
}
|
|
2078
2083
|
.el-button--medium {
|
|
2079
2084
|
padding: 8px 15px;
|
|
@@ -2093,8 +2098,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
2093
2098
|
}
|
|
2094
2099
|
|
|
2095
2100
|
.el-button--small {
|
|
2096
|
-
--el-button-size:
|
|
2101
|
+
--el-button-size: 32px;
|
|
2097
2102
|
height: var(--el-button-size);
|
|
2103
|
+
min-width: var(--el-button-size);
|
|
2098
2104
|
}
|
|
2099
2105
|
.el-button--small [class*=el-icon] + span {
|
|
2100
2106
|
margin-left: 4px;
|
|
@@ -2108,7 +2114,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
2108
2114
|
padding: 5px 15px;
|
|
2109
2115
|
}
|
|
2110
2116
|
.el-button--small:has(> i):not(:has(span)) {
|
|
2111
|
-
width:
|
|
2117
|
+
width: 32px;
|
|
2112
2118
|
padding: 0;
|
|
2113
2119
|
}
|
|
2114
2120
|
.el-button--small.is-circle {
|
|
@@ -2119,6 +2125,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
2119
2125
|
.el-button--mini {
|
|
2120
2126
|
--el-button-size: 28px;
|
|
2121
2127
|
height: var(--el-button-size);
|
|
2128
|
+
min-width: var(--el-button-size);
|
|
2122
2129
|
}
|
|
2123
2130
|
.el-button--mini {
|
|
2124
2131
|
padding: 5px 15px;
|
|
@@ -2672,7 +2679,7 @@ heights > $common-component-size
|
|
|
2672
2679
|
|
|
2673
2680
|
.el-cascader--small {
|
|
2674
2681
|
font-size: 12px;
|
|
2675
|
-
line-height:
|
|
2682
|
+
line-height: 32px;
|
|
2676
2683
|
}
|
|
2677
2684
|
|
|
2678
2685
|
.el-cascader--mini {
|
|
@@ -3076,7 +3083,7 @@ heights > $common-component-size
|
|
|
3076
3083
|
}
|
|
3077
3084
|
|
|
3078
3085
|
.el-checkbox-button--small .el-checkbox-button__inner {
|
|
3079
|
-
--el-button-size:
|
|
3086
|
+
--el-button-size: 32px;
|
|
3080
3087
|
height: var(--el-button-size);
|
|
3081
3088
|
padding: 5px 15px;
|
|
3082
3089
|
font-size: 12px;
|
|
@@ -3351,7 +3358,7 @@ heights > $common-component-size
|
|
|
3351
3358
|
}
|
|
3352
3359
|
|
|
3353
3360
|
.el-checkbox.el-checkbox--small {
|
|
3354
|
-
height:
|
|
3361
|
+
height: 32px;
|
|
3355
3362
|
}
|
|
3356
3363
|
.el-checkbox.el-checkbox--small .el-checkbox__label {
|
|
3357
3364
|
font-size: 12px;
|
|
@@ -6667,15 +6674,15 @@ heights > $common-component-size
|
|
|
6667
6674
|
}
|
|
6668
6675
|
|
|
6669
6676
|
.el-color-picker--small {
|
|
6670
|
-
height:
|
|
6677
|
+
height: 32px;
|
|
6671
6678
|
}
|
|
6672
6679
|
.el-color-picker--small .el-color-picker__trigger {
|
|
6673
|
-
height:
|
|
6674
|
-
width:
|
|
6680
|
+
height: 32px;
|
|
6681
|
+
width: 32px;
|
|
6675
6682
|
}
|
|
6676
6683
|
.el-color-picker--small .el-color-picker__mask {
|
|
6677
|
-
height:
|
|
6678
|
-
width:
|
|
6684
|
+
height: 30px;
|
|
6685
|
+
width: 30px;
|
|
6679
6686
|
}
|
|
6680
6687
|
|
|
6681
6688
|
.el-color-picker--mini {
|
|
@@ -7372,12 +7379,12 @@ heights > $common-component-size
|
|
|
7372
7379
|
height: var(--el-component-size-small);
|
|
7373
7380
|
}
|
|
7374
7381
|
.el-range-editor--small .el-range-separator {
|
|
7375
|
-
line-height:
|
|
7382
|
+
line-height: 32px;
|
|
7376
7383
|
font-size: 12px;
|
|
7377
7384
|
}
|
|
7378
7385
|
.el-range-editor--small .el-range-input {
|
|
7379
|
-
height:
|
|
7380
|
-
line-height:
|
|
7386
|
+
height: 30px;
|
|
7387
|
+
line-height: 30px;
|
|
7381
7388
|
font-size: 12px;
|
|
7382
7389
|
}
|
|
7383
7390
|
|
|
@@ -8564,7 +8571,7 @@ heights > $common-component-size
|
|
|
8564
8571
|
}
|
|
8565
8572
|
|
|
8566
8573
|
.el-dropdown--small .el-dropdown__caret-button {
|
|
8567
|
-
width:
|
|
8574
|
+
width: 32px;
|
|
8568
8575
|
}
|
|
8569
8576
|
|
|
8570
8577
|
.el-dropdown--mini .el-dropdown__caret-button {
|
|
@@ -8790,12 +8797,12 @@ heights > $common-component-size
|
|
|
8790
8797
|
margin-bottom: 16px;
|
|
8791
8798
|
}
|
|
8792
8799
|
.el-form-item--small .el-form-item__label {
|
|
8793
|
-
height:
|
|
8794
|
-
line-height:
|
|
8800
|
+
height: 32px;
|
|
8801
|
+
line-height: 32px;
|
|
8795
8802
|
}
|
|
8796
8803
|
|
|
8797
8804
|
.el-form-item--small .el-form-item__content {
|
|
8798
|
-
line-height:
|
|
8805
|
+
line-height: 32px;
|
|
8799
8806
|
}
|
|
8800
8807
|
|
|
8801
8808
|
.el-form-item--small .el-form-item__error {
|
|
@@ -9465,7 +9472,7 @@ heights > $common-component-size
|
|
|
9465
9472
|
}
|
|
9466
9473
|
|
|
9467
9474
|
.el-input--small .el-input__inner {
|
|
9468
|
-
--el-input-inner-height: calc(var(--el-input-height,
|
|
9475
|
+
--el-input-inner-height: calc(var(--el-input-height, 32px) - 2px);
|
|
9469
9476
|
}
|
|
9470
9477
|
|
|
9471
9478
|
.el-input--mini {
|
|
@@ -9716,7 +9723,7 @@ heights > $common-component-size
|
|
|
9716
9723
|
|
|
9717
9724
|
.el-input-number--small {
|
|
9718
9725
|
width: 120px;
|
|
9719
|
-
line-height:
|
|
9726
|
+
line-height: 30px;
|
|
9720
9727
|
}
|
|
9721
9728
|
.el-input-number--small .el-input-number__increase, .el-input-number--small .el-input-number__decrease {
|
|
9722
9729
|
width: 22px;
|
|
@@ -9724,8 +9731,8 @@ heights > $common-component-size
|
|
|
9724
9731
|
}
|
|
9725
9732
|
|
|
9726
9733
|
.el-input-number--small .el-input--small .el-input__wrapper {
|
|
9727
|
-
padding-left:
|
|
9728
|
-
padding-right:
|
|
9734
|
+
padding-left: 39px;
|
|
9735
|
+
padding-right: 39px;
|
|
9729
9736
|
}
|
|
9730
9737
|
|
|
9731
9738
|
.el-input-number--mini {
|
|
@@ -9797,7 +9804,7 @@ heights > $common-component-size
|
|
|
9797
9804
|
}
|
|
9798
9805
|
.el-input-number.is-controls-right[class*=small] [class*=increase],
|
|
9799
9806
|
.el-input-number.is-controls-right[class*=small] [class*=decrease] {
|
|
9800
|
-
--el-input-number-controls-height:
|
|
9807
|
+
--el-input-number-controls-height: 15px;
|
|
9801
9808
|
}
|
|
9802
9809
|
.el-input-number.is-controls-right[class*=mini] [class*=increase],
|
|
9803
9810
|
.el-input-number.is-controls-right[class*=mini] [class*=decrease] {
|
|
@@ -11621,7 +11628,7 @@ heights > $common-component-size
|
|
|
11621
11628
|
padding: 5px 15px;
|
|
11622
11629
|
font-size: 12px;
|
|
11623
11630
|
border-radius: 0;
|
|
11624
|
-
height:
|
|
11631
|
+
height: 32px;
|
|
11625
11632
|
}
|
|
11626
11633
|
.el-radio-button--small .el-radio-button__inner.is-round {
|
|
11627
11634
|
padding: 5px 15px;
|
|
@@ -11681,7 +11688,7 @@ heights > $common-component-size
|
|
|
11681
11688
|
height: 36px;
|
|
11682
11689
|
}
|
|
11683
11690
|
.el-radio.el-radio--small {
|
|
11684
|
-
height:
|
|
11691
|
+
height: 32px;
|
|
11685
11692
|
}
|
|
11686
11693
|
.el-radio.el-radio--mini {
|
|
11687
11694
|
height: 28px;
|
|
@@ -12600,8 +12607,8 @@ heights > $common-component-size
|
|
|
12600
12607
|
.el-select--small .el-select__wrapper {
|
|
12601
12608
|
gap: 4px;
|
|
12602
12609
|
padding: 6px 12px;
|
|
12603
|
-
min-height:
|
|
12604
|
-
height:
|
|
12610
|
+
min-height: 32px;
|
|
12611
|
+
height: 32px;
|
|
12605
12612
|
line-height: 20px;
|
|
12606
12613
|
font-size: 12px;
|
|
12607
12614
|
}
|
|
@@ -13519,7 +13526,7 @@ heights > $common-component-size
|
|
|
13519
13526
|
.el-switch--small {
|
|
13520
13527
|
font-size: 12px;
|
|
13521
13528
|
line-height: 16px;
|
|
13522
|
-
height:
|
|
13529
|
+
height: 32px;
|
|
13523
13530
|
}
|
|
13524
13531
|
.el-switch--small .el-switch__label {
|
|
13525
13532
|
height: 16px;
|
|
@@ -17253,7 +17260,7 @@ mark.el-text {
|
|
|
17253
17260
|
}
|
|
17254
17261
|
|
|
17255
17262
|
.el-segmented--small {
|
|
17256
|
-
min-height:
|
|
17263
|
+
min-height: 32px;
|
|
17257
17264
|
border-radius: 4px;
|
|
17258
17265
|
font-size: 14px;
|
|
17259
17266
|
}
|
|
@@ -406,7 +406,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
406
406
|
|
|
407
407
|
.el-input-number--small {
|
|
408
408
|
width: 120px;
|
|
409
|
-
line-height:
|
|
409
|
+
line-height: 30px;
|
|
410
410
|
}
|
|
411
411
|
.el-input-number--small .el-input-number__increase, .el-input-number--small .el-input-number__decrease {
|
|
412
412
|
width: 22px;
|
|
@@ -414,8 +414,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
414
414
|
}
|
|
415
415
|
|
|
416
416
|
.el-input-number--small .el-input--small .el-input__wrapper {
|
|
417
|
-
padding-left:
|
|
418
|
-
padding-right:
|
|
417
|
+
padding-left: 39px;
|
|
418
|
+
padding-right: 39px;
|
|
419
419
|
}
|
|
420
420
|
|
|
421
421
|
.el-input-number--mini {
|
|
@@ -487,7 +487,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
487
487
|
}
|
|
488
488
|
.el-input-number.is-controls-right[class*=small] [class*=increase],
|
|
489
489
|
.el-input-number.is-controls-right[class*=small] [class*=decrease] {
|
|
490
|
-
--el-input-number-controls-height:
|
|
490
|
+
--el-input-number-controls-height: 15px;
|
|
491
491
|
}
|
|
492
492
|
.el-input-number.is-controls-right[class*=mini] [class*=increase],
|
|
493
493
|
.el-input-number.is-controls-right[class*=mini] [class*=decrease] {
|
|
@@ -624,7 +624,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
624
624
|
}
|
|
625
625
|
|
|
626
626
|
.el-input--small .el-input__inner {
|
|
627
|
-
--el-input-inner-height: calc(var(--el-input-height,
|
|
627
|
+
--el-input-inner-height: calc(var(--el-input-height, 32px) - 2px);
|
|
628
628
|
}
|
|
629
629
|
|
|
630
630
|
.el-input--mini {
|
|
@@ -720,8 +720,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
720
720
|
.el-select--small .el-select__wrapper {
|
|
721
721
|
gap: 4px;
|
|
722
722
|
padding: 6px 12px;
|
|
723
|
-
min-height:
|
|
724
|
-
height:
|
|
723
|
+
min-height: 32px;
|
|
724
|
+
height: 32px;
|
|
725
725
|
line-height: 20px;
|
|
726
726
|
font-size: 12px;
|
|
727
727
|
}
|
|
@@ -720,8 +720,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
720
720
|
.el-select--small .el-select__wrapper {
|
|
721
721
|
gap: 4px;
|
|
722
722
|
padding: 6px 12px;
|
|
723
|
-
min-height:
|
|
724
|
-
height:
|
|
723
|
+
min-height: 32px;
|
|
724
|
+
height: 32px;
|
|
725
725
|
line-height: 20px;
|
|
726
726
|
font-size: 12px;
|
|
727
727
|
}
|
|
@@ -615,12 +615,12 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
615
615
|
height: var(--el-component-size-small);
|
|
616
616
|
}
|
|
617
617
|
.el-range-editor--small .el-range-separator {
|
|
618
|
-
line-height:
|
|
618
|
+
line-height: 32px;
|
|
619
619
|
font-size: 12px;
|
|
620
620
|
}
|
|
621
621
|
.el-range-editor--small .el-range-input {
|
|
622
|
-
height:
|
|
623
|
-
line-height:
|
|
622
|
+
height: 30px;
|
|
623
|
+
line-height: 30px;
|
|
624
624
|
font-size: 12px;
|
|
625
625
|
}
|
|
626
626
|
|
|
@@ -615,12 +615,12 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
615
615
|
height: var(--el-component-size-small);
|
|
616
616
|
}
|
|
617
617
|
.el-range-editor--small .el-range-separator {
|
|
618
|
-
line-height:
|
|
618
|
+
line-height: 32px;
|
|
619
619
|
font-size: 12px;
|
|
620
620
|
}
|
|
621
621
|
.el-range-editor--small .el-range-input {
|
|
622
|
-
height:
|
|
623
|
-
line-height:
|
|
622
|
+
height: 30px;
|
|
623
|
+
line-height: 30px;
|
|
624
624
|
font-size: 12px;
|
|
625
625
|
}
|
|
626
626
|
|
|
@@ -342,7 +342,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
342
342
|
--el-component-size: 40px;
|
|
343
343
|
--el-component-size-large: 40px;
|
|
344
344
|
--el-component-size-medium: 36px;
|
|
345
|
-
--el-component-size-small:
|
|
345
|
+
--el-component-size-small: 32px;
|
|
346
346
|
--el-component-size-mini: 28px;
|
|
347
347
|
}
|
|
348
348
|
|
package/package.json
CHANGED