@timus-networks/theme 2.4.166 → 2.4.168
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 +76 -58
- package/dist/runtime/public/scss/element-plus/alert.css +18 -11
- package/dist/runtime/public/scss/element-plus/alert.scss +9 -7
- package/dist/runtime/public/scss/element-plus/button.css +3 -3
- package/dist/runtime/public/scss/element-plus/button.scss +1 -1
- package/dist/runtime/public/scss/element-plus/checkbox-button.css +2 -2
- package/dist/runtime/public/scss/element-plus/common/var.scss +6 -6
- package/dist/runtime/public/scss/element-plus/date-picker/time-picker.css +1 -1
- package/dist/runtime/public/scss/element-plus/date-picker/time-picker.scss +1 -1
- package/dist/runtime/public/scss/element-plus/date-picker.css +1 -1
- package/dist/runtime/public/scss/element-plus/descriptions-item.css +2 -2
- package/dist/runtime/public/scss/element-plus/descriptions-item.scss +2 -2
- package/dist/runtime/public/scss/element-plus/dialog.css +5 -5
- package/dist/runtime/public/scss/element-plus/dialog.scss +4 -4
- package/dist/runtime/public/scss/element-plus/dropdown.css +5 -2
- package/dist/runtime/public/scss/element-plus/dropdown.scss +5 -2
- package/dist/runtime/public/scss/element-plus/index.css +76 -58
- package/dist/runtime/public/scss/element-plus/link.scss +0 -1
- package/dist/runtime/public/scss/element-plus/pagination.css +11 -6
- package/dist/runtime/public/scss/element-plus/pagination.scss +10 -3
- package/dist/runtime/public/scss/element-plus/popper.css +8 -9
- package/dist/runtime/public/scss/element-plus/popper.scss +1 -2
- package/dist/runtime/public/scss/element-plus/radio-button.css +2 -2
- package/dist/runtime/public/scss/element-plus/switch.css +12 -12
- package/dist/runtime/public/scss/element-plus/switch.scss +14 -1
- package/dist/runtime/public/scss/element-plus/tabs.css +2 -2
- package/dist/runtime/public/scss/element-plus/tabs.scss +1 -1
- package/dist/runtime/public/scss/element-plus/tag.css +4 -0
- package/dist/runtime/public/scss/element-plus/tag.scss +4 -0
- package/dist/runtime/public/scss/element-plus/time-picker.css +1 -1
- package/dist/runtime/public/scss/element-plus/tooltip.css +1 -1
- package/dist/runtime/public/scss/element-plus/tooltip.scss +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.167";
|
|
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 = {
|
|
@@ -1567,8 +1567,8 @@ body {
|
|
|
1567
1567
|
--el-alert-title-font-size: 12px;
|
|
1568
1568
|
--el-alert-title-with-description-font-size: 12px;
|
|
1569
1569
|
--el-alert-description-font-size: 10px;
|
|
1570
|
-
--el-alert-close-font-size:
|
|
1571
|
-
--el-alert-close-customed-font-size:
|
|
1570
|
+
--el-alert-close-font-size: 12px;
|
|
1571
|
+
--el-alert-close-customed-font-size: 12px;
|
|
1572
1572
|
--el-alert-icon-size: 12px;
|
|
1573
1573
|
--el-alert-icon-large-size: 32px;
|
|
1574
1574
|
position: relative;
|
|
@@ -1612,6 +1612,8 @@ body {
|
|
|
1612
1612
|
}
|
|
1613
1613
|
.el-alert--primary.is-light .el-alert__description {
|
|
1614
1614
|
color: var(--el-color-primary-light-6);
|
|
1615
|
+
line-height: 14px;
|
|
1616
|
+
margin-left: -16px;
|
|
1615
1617
|
}
|
|
1616
1618
|
.el-alert--primary.is-dark {
|
|
1617
1619
|
background-color: var(--el-color-primary);
|
|
@@ -1631,6 +1633,8 @@ body {
|
|
|
1631
1633
|
}
|
|
1632
1634
|
.el-alert--success.is-light .el-alert__description {
|
|
1633
1635
|
color: var(--el-color-success-light-6);
|
|
1636
|
+
line-height: 14px;
|
|
1637
|
+
margin-left: -16px;
|
|
1634
1638
|
}
|
|
1635
1639
|
.el-alert--success.is-dark {
|
|
1636
1640
|
background-color: var(--el-color-success);
|
|
@@ -1650,6 +1654,8 @@ body {
|
|
|
1650
1654
|
}
|
|
1651
1655
|
.el-alert--info.is-light .el-alert__description {
|
|
1652
1656
|
color: var(--el-color-neutral-light-6);
|
|
1657
|
+
line-height: 14px;
|
|
1658
|
+
margin-left: -16px;
|
|
1653
1659
|
}
|
|
1654
1660
|
.el-alert--info.is-dark {
|
|
1655
1661
|
background-color: var(--el-color-neutral);
|
|
@@ -1669,6 +1675,8 @@ body {
|
|
|
1669
1675
|
}
|
|
1670
1676
|
.el-alert--warning.is-light .el-alert__description {
|
|
1671
1677
|
color: var(--el-color-warning-light-6);
|
|
1678
|
+
line-height: 14px;
|
|
1679
|
+
margin-left: -16px;
|
|
1672
1680
|
}
|
|
1673
1681
|
.el-alert--warning.is-dark {
|
|
1674
1682
|
background-color: var(--el-color-warning);
|
|
@@ -1688,6 +1696,8 @@ body {
|
|
|
1688
1696
|
}
|
|
1689
1697
|
.el-alert--error.is-light .el-alert__description {
|
|
1690
1698
|
color: var(--el-color-error-light-6);
|
|
1699
|
+
line-height: 14px;
|
|
1700
|
+
margin-left: -16px;
|
|
1691
1701
|
}
|
|
1692
1702
|
.el-alert--error.is-dark {
|
|
1693
1703
|
background-color: var(--el-color-error);
|
|
@@ -1707,18 +1717,15 @@ body {
|
|
|
1707
1717
|
speak: never;
|
|
1708
1718
|
text-transform: none;
|
|
1709
1719
|
font-size: var(--el-alert-icon-size);
|
|
1710
|
-
line-height: 1;
|
|
1711
1720
|
margin-right: 5px;
|
|
1712
1721
|
content: "info";
|
|
1713
|
-
position: absolute;
|
|
1714
1722
|
font-weight: 500;
|
|
1715
1723
|
width: 12px;
|
|
1716
|
-
height:
|
|
1724
|
+
height: 18px;
|
|
1717
1725
|
font-size: 12px;
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
padding-left: 17px;
|
|
1726
|
+
display: flex;
|
|
1727
|
+
align-items: center;
|
|
1728
|
+
justify-content: center;
|
|
1722
1729
|
}
|
|
1723
1730
|
.el-alert .el-alert__icon {
|
|
1724
1731
|
display: none;
|
|
@@ -1748,7 +1755,7 @@ body {
|
|
|
1748
1755
|
.el-alert__title.with-description {
|
|
1749
1756
|
font-size: var(--el-alert-title-with-description-font-size);
|
|
1750
1757
|
line-height: 14px;
|
|
1751
|
-
margin-top:
|
|
1758
|
+
margin-top: 2px;
|
|
1752
1759
|
}
|
|
1753
1760
|
|
|
1754
1761
|
.el-alert .el-alert__description {
|
|
@@ -1759,7 +1766,7 @@ body {
|
|
|
1759
1766
|
font-size: var(--el-alert-close-font-size);
|
|
1760
1767
|
opacity: 1;
|
|
1761
1768
|
position: absolute;
|
|
1762
|
-
top:
|
|
1769
|
+
top: 11px;
|
|
1763
1770
|
right: 16px;
|
|
1764
1771
|
cursor: pointer;
|
|
1765
1772
|
}
|
|
@@ -2390,7 +2397,7 @@ body {
|
|
|
2390
2397
|
|
|
2391
2398
|
.el-button {
|
|
2392
2399
|
display: inline-flex;
|
|
2393
|
-
gap:
|
|
2400
|
+
gap: 4px;
|
|
2394
2401
|
justify-content: center;
|
|
2395
2402
|
align-items: center;
|
|
2396
2403
|
line-height: 1;
|
|
@@ -3141,12 +3148,12 @@ body {
|
|
|
3141
3148
|
padding: 0 7px;
|
|
3142
3149
|
}
|
|
3143
3150
|
.el-button--mini {
|
|
3144
|
-
padding: 5px
|
|
3151
|
+
padding: 5px 11px;
|
|
3145
3152
|
font-size: 12px;
|
|
3146
3153
|
border-radius: 4px;
|
|
3147
3154
|
}
|
|
3148
3155
|
.el-button--mini.is-round {
|
|
3149
|
-
padding: 5px
|
|
3156
|
+
padding: 5px 11px;
|
|
3150
3157
|
}
|
|
3151
3158
|
.el-button--mini:has(> i):not(:has(span)) {
|
|
3152
3159
|
width: 28px;
|
|
@@ -4112,12 +4119,12 @@ heights > $common-component-size
|
|
|
4112
4119
|
.el-checkbox-button--mini .el-checkbox-button__inner {
|
|
4113
4120
|
--el-button-size: 28px;
|
|
4114
4121
|
height: var(--el-button-size);
|
|
4115
|
-
padding: 5px
|
|
4122
|
+
padding: 5px 11px;
|
|
4116
4123
|
font-size: 12px;
|
|
4117
4124
|
border-radius: 0;
|
|
4118
4125
|
}
|
|
4119
4126
|
.el-checkbox-button--mini .el-checkbox-button__inner.is-round {
|
|
4120
|
-
padding: 5px
|
|
4127
|
+
padding: 5px 11px;
|
|
4121
4128
|
}
|
|
4122
4129
|
|
|
4123
4130
|
.el-checkbox-group {
|
|
@@ -8846,7 +8853,7 @@ heights > $common-component-size
|
|
|
8846
8853
|
.el-time-panel {
|
|
8847
8854
|
border-radius: 2px;
|
|
8848
8855
|
position: relative;
|
|
8849
|
-
width:
|
|
8856
|
+
min-width: 200px;
|
|
8850
8857
|
left: 0;
|
|
8851
8858
|
z-index: var(--el-index-top);
|
|
8852
8859
|
user-select: none;
|
|
@@ -9044,7 +9051,7 @@ heights > $common-component-size
|
|
|
9044
9051
|
color: var(--el-color-neutral-light-6);
|
|
9045
9052
|
}
|
|
9046
9053
|
.el-descriptions__label:not(.is-bordered-label) {
|
|
9047
|
-
color: var(--el-color-neutral-light-
|
|
9054
|
+
color: var(--el-color-neutral-light-9);
|
|
9048
9055
|
margin-right: 6px;
|
|
9049
9056
|
}
|
|
9050
9057
|
.el-descriptions__label.el-descriptions__cell:not(.is-bordered-label).is-vertical-label {
|
|
@@ -9055,7 +9062,7 @@ heights > $common-component-size
|
|
|
9055
9062
|
color: var(--el-text-color-primary);
|
|
9056
9063
|
}
|
|
9057
9064
|
.el-descriptions__content:not(.is-bordered-label) {
|
|
9058
|
-
color: var(--el-
|
|
9065
|
+
color: var(--el-color-neutral-light-6);
|
|
9059
9066
|
}
|
|
9060
9067
|
|
|
9061
9068
|
.el-descriptions--large .el-descriptions__label:not(.is-bordered-label) {
|
|
@@ -9130,7 +9137,7 @@ heights > $common-component-size
|
|
|
9130
9137
|
--el-dialog-box-shadow: var(--el-box-shadow);
|
|
9131
9138
|
--el-dialog-title-font-size: 18px;
|
|
9132
9139
|
--el-dialog-title-line-height: 22px;
|
|
9133
|
-
--el-dialog-content-font-size:
|
|
9140
|
+
--el-dialog-content-font-size: 12px;
|
|
9134
9141
|
--el-dialog-content-line-height: 22px;
|
|
9135
9142
|
--el-dialog-padding-primary: 24px;
|
|
9136
9143
|
--el-dialog-border-radius: 8px;
|
|
@@ -9195,11 +9202,11 @@ heights > $common-component-size
|
|
|
9195
9202
|
font-size: var(--el-message-close-size, 12px);
|
|
9196
9203
|
}
|
|
9197
9204
|
.el-dialog__headerbtn .el-dialog__close {
|
|
9198
|
-
color: var(--el-color-
|
|
9205
|
+
color: var(--el-color-neutral-light-9);
|
|
9199
9206
|
font-size: inherit;
|
|
9200
9207
|
}
|
|
9201
9208
|
.el-dialog__headerbtn:focus .el-dialog__close, .el-dialog__headerbtn:hover .el-dialog__close {
|
|
9202
|
-
color: var(--el-color-
|
|
9209
|
+
color: var(--el-color-neutral-light-9);
|
|
9203
9210
|
}
|
|
9204
9211
|
|
|
9205
9212
|
.el-dialog__title {
|
|
@@ -9210,7 +9217,7 @@ heights > $common-component-size
|
|
|
9210
9217
|
}
|
|
9211
9218
|
|
|
9212
9219
|
.el-dialog__body {
|
|
9213
|
-
color: var(--el-color-neutral-light-
|
|
9220
|
+
color: var(--el-color-neutral-light-6);
|
|
9214
9221
|
font-size: var(--el-dialog-content-font-size);
|
|
9215
9222
|
line-height: var(--el-dialog-content-line-height);
|
|
9216
9223
|
}
|
|
@@ -9218,7 +9225,7 @@ heights > $common-component-size
|
|
|
9218
9225
|
.el-dialog__footer {
|
|
9219
9226
|
display: flex;
|
|
9220
9227
|
gap: 30px;
|
|
9221
|
-
padding-top:
|
|
9228
|
+
padding-top: 16px;
|
|
9222
9229
|
text-align: right;
|
|
9223
9230
|
box-sizing: border-box;
|
|
9224
9231
|
}
|
|
@@ -9617,6 +9624,9 @@ heights > $common-component-size
|
|
|
9617
9624
|
border: none;
|
|
9618
9625
|
border-radius: var(--el-border-radius-small);
|
|
9619
9626
|
box-shadow: var(--el-box-shadow-light);
|
|
9627
|
+
gap: 2px;
|
|
9628
|
+
display: flex;
|
|
9629
|
+
flex-direction: column;
|
|
9620
9630
|
list-style: none;
|
|
9621
9631
|
}
|
|
9622
9632
|
.el-dropdown-menu__item {
|
|
@@ -9624,8 +9634,8 @@ heights > $common-component-size
|
|
|
9624
9634
|
align-items: center;
|
|
9625
9635
|
white-space: nowrap;
|
|
9626
9636
|
list-style: none;
|
|
9627
|
-
line-height:
|
|
9628
|
-
padding: 5px
|
|
9637
|
+
line-height: 18px;
|
|
9638
|
+
padding: 5px 8px;
|
|
9629
9639
|
margin: 0;
|
|
9630
9640
|
font-size: var(--el-font-size-small);
|
|
9631
9641
|
font-weight: 500;
|
|
@@ -12121,7 +12131,7 @@ heights > $common-component-size
|
|
|
12121
12131
|
--el-pagination-border-radius: 2px;
|
|
12122
12132
|
--el-pagination-button-color: var(--el-color-neutral-light-6);
|
|
12123
12133
|
--el-pagination-button-width: 24px;
|
|
12124
|
-
--el-pagination-button-height:
|
|
12134
|
+
--el-pagination-button-height: 24px;
|
|
12125
12135
|
--el-pagination-select-height: 20px;
|
|
12126
12136
|
--el-pagination-button-disabled-color: var(--el-text-color-placeholder);
|
|
12127
12137
|
--el-pagination-button-disabled-bg-color: var(--el-fill-color-blank);
|
|
@@ -12140,7 +12150,7 @@ heights > $common-component-size
|
|
|
12140
12150
|
--el-pagination-border-radius: 2px;
|
|
12141
12151
|
--el-pagination-button-color: var(--el-color-neutral-light-6);
|
|
12142
12152
|
--el-pagination-button-width: 24px;
|
|
12143
|
-
--el-pagination-button-height:
|
|
12153
|
+
--el-pagination-button-height: 24px;
|
|
12144
12154
|
--el-pagination-select-height: 20px;
|
|
12145
12155
|
--el-pagination-button-disabled-color: var(--el-text-color-placeholder);
|
|
12146
12156
|
--el-pagination-button-disabled-bg-color: var(--el-fill-color-blank);
|
|
@@ -12160,6 +12170,7 @@ heights > $common-component-size
|
|
|
12160
12170
|
display: flex;
|
|
12161
12171
|
align-items: center;
|
|
12162
12172
|
width: var(--el-pagination-width);
|
|
12173
|
+
margin-top: -16px;
|
|
12163
12174
|
}
|
|
12164
12175
|
.el-pagination .el-input__inner {
|
|
12165
12176
|
text-align: center;
|
|
@@ -12169,10 +12180,11 @@ heights > $common-component-size
|
|
|
12169
12180
|
}
|
|
12170
12181
|
.el-pagination .el-select {
|
|
12171
12182
|
width: 128px;
|
|
12183
|
+
height: 24px;
|
|
12172
12184
|
}
|
|
12173
12185
|
.el-pagination .el-select .el-select__wrapper {
|
|
12174
|
-
height:
|
|
12175
|
-
min-height:
|
|
12186
|
+
height: 24px;
|
|
12187
|
+
min-height: 24px;
|
|
12176
12188
|
font-size: 12px;
|
|
12177
12189
|
}
|
|
12178
12190
|
.el-pagination button {
|
|
@@ -12191,7 +12203,6 @@ heights > $common-component-size
|
|
|
12191
12203
|
cursor: pointer;
|
|
12192
12204
|
text-align: center;
|
|
12193
12205
|
box-sizing: border-box;
|
|
12194
|
-
margin-top: -16px;
|
|
12195
12206
|
}
|
|
12196
12207
|
.el-pagination button * {
|
|
12197
12208
|
pointer-events: none;
|
|
@@ -12272,6 +12283,11 @@ heights > $common-component-size
|
|
|
12272
12283
|
}
|
|
12273
12284
|
.el-pagination__editor.el-input {
|
|
12274
12285
|
width: 56px;
|
|
12286
|
+
height: 24px;
|
|
12287
|
+
}
|
|
12288
|
+
.el-pagination__editor.el-input .el-input__wrapper {
|
|
12289
|
+
height: 24px;
|
|
12290
|
+
min-height: 24px;
|
|
12275
12291
|
}
|
|
12276
12292
|
.el-pagination__editor .el-input__inner::-webkit-inner-spin-button,
|
|
12277
12293
|
.el-pagination__editor .el-input__inner::-webkit-outer-spin-button {
|
|
@@ -12374,7 +12390,6 @@ heights > $common-component-size
|
|
|
12374
12390
|
cursor: pointer;
|
|
12375
12391
|
text-align: center;
|
|
12376
12392
|
box-sizing: border-box;
|
|
12377
|
-
margin-top: -16px;
|
|
12378
12393
|
}
|
|
12379
12394
|
.el-pager li * {
|
|
12380
12395
|
pointer-events: none;
|
|
@@ -12796,13 +12811,13 @@ heights > $common-component-size
|
|
|
12796
12811
|
}
|
|
12797
12812
|
|
|
12798
12813
|
.el-radio-button--mini .el-radio-button__inner {
|
|
12799
|
-
padding: 5px
|
|
12814
|
+
padding: 5px 11px;
|
|
12800
12815
|
font-size: 12px;
|
|
12801
12816
|
border-radius: 0;
|
|
12802
12817
|
height: 28px;
|
|
12803
12818
|
}
|
|
12804
12819
|
.el-radio-button--mini .el-radio-button__inner.is-round {
|
|
12805
|
-
padding: 5px
|
|
12820
|
+
padding: 5px 11px;
|
|
12806
12821
|
}
|
|
12807
12822
|
|
|
12808
12823
|
.el-radio-group {
|
|
@@ -14494,7 +14509,7 @@ heights > $common-component-size
|
|
|
14494
14509
|
display: inline-flex;
|
|
14495
14510
|
align-items: center;
|
|
14496
14511
|
position: relative;
|
|
14497
|
-
font-size:
|
|
14512
|
+
font-size: 12px;
|
|
14498
14513
|
line-height: 20px;
|
|
14499
14514
|
height: 36px;
|
|
14500
14515
|
vertical-align: middle;
|
|
@@ -14528,7 +14543,7 @@ heights > $common-component-size
|
|
|
14528
14543
|
transition: var(--el-transition-duration-fast);
|
|
14529
14544
|
height: 20px;
|
|
14530
14545
|
display: inline-block;
|
|
14531
|
-
font-size:
|
|
14546
|
+
font-size: 12px;
|
|
14532
14547
|
font-weight: 500;
|
|
14533
14548
|
cursor: pointer;
|
|
14534
14549
|
vertical-align: middle;
|
|
@@ -14548,7 +14563,7 @@ heights > $common-component-size
|
|
|
14548
14563
|
|
|
14549
14564
|
.el-switch__label * {
|
|
14550
14565
|
line-height: 1;
|
|
14551
|
-
font-size:
|
|
14566
|
+
font-size: 12px;
|
|
14552
14567
|
display: inline-block;
|
|
14553
14568
|
}
|
|
14554
14569
|
.el-switch__label .el-icon {
|
|
@@ -14640,16 +14655,16 @@ heights > $common-component-size
|
|
|
14640
14655
|
opacity: 0;
|
|
14641
14656
|
}
|
|
14642
14657
|
.el-switch--large {
|
|
14643
|
-
font-size:
|
|
14658
|
+
font-size: 16px;
|
|
14644
14659
|
line-height: 24px;
|
|
14645
14660
|
height: 40px;
|
|
14646
14661
|
}
|
|
14647
14662
|
.el-switch--large .el-switch__label {
|
|
14648
14663
|
height: 24px;
|
|
14649
|
-
font-size:
|
|
14664
|
+
font-size: 16px;
|
|
14650
14665
|
}
|
|
14651
14666
|
.el-switch--large .el-switch__label * {
|
|
14652
|
-
font-size:
|
|
14667
|
+
font-size: 16px;
|
|
14653
14668
|
}
|
|
14654
14669
|
|
|
14655
14670
|
.el-switch--large .el-switch__core {
|
|
@@ -14674,16 +14689,16 @@ heights > $common-component-size
|
|
|
14674
14689
|
}
|
|
14675
14690
|
|
|
14676
14691
|
.el-switch--medium {
|
|
14677
|
-
font-size:
|
|
14692
|
+
font-size: 12px;
|
|
14678
14693
|
line-height: 20px;
|
|
14679
14694
|
height: 36px;
|
|
14680
14695
|
}
|
|
14681
14696
|
.el-switch--medium .el-switch__label {
|
|
14682
14697
|
height: 20px;
|
|
14683
|
-
font-size:
|
|
14698
|
+
font-size: 12px;
|
|
14684
14699
|
}
|
|
14685
14700
|
.el-switch--medium .el-switch__label * {
|
|
14686
|
-
font-size:
|
|
14701
|
+
font-size: 12px;
|
|
14687
14702
|
}
|
|
14688
14703
|
|
|
14689
14704
|
.el-switch--medium .el-switch__core {
|
|
@@ -14742,16 +14757,16 @@ heights > $common-component-size
|
|
|
14742
14757
|
}
|
|
14743
14758
|
|
|
14744
14759
|
.el-switch--mini {
|
|
14745
|
-
font-size:
|
|
14760
|
+
font-size: 10px;
|
|
14746
14761
|
line-height: 12px;
|
|
14747
14762
|
height: 28px;
|
|
14748
14763
|
}
|
|
14749
14764
|
.el-switch--mini .el-switch__label {
|
|
14750
14765
|
height: 12px;
|
|
14751
|
-
font-size:
|
|
14766
|
+
font-size: 10px;
|
|
14752
14767
|
}
|
|
14753
14768
|
.el-switch--mini .el-switch__label * {
|
|
14754
|
-
font-size:
|
|
14769
|
+
font-size: 10px;
|
|
14755
14770
|
}
|
|
14756
14771
|
|
|
14757
14772
|
.el-switch--mini .el-switch__core {
|
|
@@ -15746,7 +15761,7 @@ heights > $common-component-size
|
|
|
15746
15761
|
}
|
|
15747
15762
|
|
|
15748
15763
|
.el-tabs {
|
|
15749
|
-
--el-tabs-header-height:
|
|
15764
|
+
--el-tabs-header-height: 28px;
|
|
15750
15765
|
display: flex;
|
|
15751
15766
|
}
|
|
15752
15767
|
.el-tabs__header {
|
|
@@ -15872,7 +15887,7 @@ heights > $common-component-size
|
|
|
15872
15887
|
align-items: center;
|
|
15873
15888
|
justify-content: center;
|
|
15874
15889
|
list-style: none;
|
|
15875
|
-
font-size: var(--el-font-size-
|
|
15890
|
+
font-size: var(--el-font-size-small);
|
|
15876
15891
|
font-weight: 500;
|
|
15877
15892
|
color: var(--el-color-neutral-light-6);
|
|
15878
15893
|
position: relative;
|
|
@@ -16658,6 +16673,10 @@ heights > $common-component-size
|
|
|
16658
16673
|
border-color: var(--el-color-info);
|
|
16659
16674
|
}
|
|
16660
16675
|
|
|
16676
|
+
.el-tag.el-tag--secondary {
|
|
16677
|
+
--el-tag-bg-color: var(--el-color-white);
|
|
16678
|
+
}
|
|
16679
|
+
|
|
16661
16680
|
.el-text {
|
|
16662
16681
|
--el-text-font-size: var(--el-font-size-base);
|
|
16663
16682
|
--el-text-color: var(--el-text-color-regular);
|
|
@@ -16912,7 +16931,7 @@ mark.el-text {
|
|
|
16912
16931
|
.el-tooltip.el-popper.is-dark {
|
|
16913
16932
|
padding: 8px 16px;
|
|
16914
16933
|
background-color: var(--el-color-neutral-light-9);
|
|
16915
|
-
color: var(--el-color-neutral-light-
|
|
16934
|
+
color: var(--el-color-neutral-light-2);
|
|
16916
16935
|
box-shadow: 0 2px 2px 0 var(--el-color-neutral-light-6);
|
|
16917
16936
|
}
|
|
16918
16937
|
|
|
@@ -17965,7 +17984,6 @@ mark.el-text {
|
|
|
17965
17984
|
z-index: 2000;
|
|
17966
17985
|
font-size: 12px;
|
|
17967
17986
|
line-height: 20px;
|
|
17968
|
-
min-width: 150px;
|
|
17969
17987
|
overflow-wrap: break-word;
|
|
17970
17988
|
visibility: visible;
|
|
17971
17989
|
}
|
|
@@ -17999,14 +18017,14 @@ mark.el-text {
|
|
|
17999
18017
|
|
|
18000
18018
|
.el-popper__arrow {
|
|
18001
18019
|
position: absolute;
|
|
18002
|
-
width:
|
|
18003
|
-
height:
|
|
18020
|
+
width: 10px;
|
|
18021
|
+
height: 10px;
|
|
18004
18022
|
z-index: -1;
|
|
18005
18023
|
}
|
|
18006
18024
|
.el-popper__arrow::before {
|
|
18007
18025
|
position: absolute;
|
|
18008
|
-
width:
|
|
18009
|
-
height:
|
|
18026
|
+
width: 10px;
|
|
18027
|
+
height: 10px;
|
|
18010
18028
|
z-index: -1;
|
|
18011
18029
|
content: " ";
|
|
18012
18030
|
transform: rotate(45deg);
|
|
@@ -18015,25 +18033,25 @@ mark.el-text {
|
|
|
18015
18033
|
}
|
|
18016
18034
|
|
|
18017
18035
|
.el-popper[data-popper-placement^=top] > .el-popper__arrow {
|
|
18018
|
-
bottom: -
|
|
18036
|
+
bottom: -5px;
|
|
18019
18037
|
}
|
|
18020
18038
|
.el-popper[data-popper-placement^=top] > .el-popper__arrow::before {
|
|
18021
18039
|
border-bottom-right-radius: 2px;
|
|
18022
18040
|
}
|
|
18023
18041
|
.el-popper[data-popper-placement^=bottom] > .el-popper__arrow {
|
|
18024
|
-
top: -
|
|
18042
|
+
top: -5px;
|
|
18025
18043
|
}
|
|
18026
18044
|
.el-popper[data-popper-placement^=bottom] > .el-popper__arrow::before {
|
|
18027
18045
|
border-top-left-radius: 2px;
|
|
18028
18046
|
}
|
|
18029
18047
|
.el-popper[data-popper-placement^=left] > .el-popper__arrow {
|
|
18030
|
-
right: -
|
|
18048
|
+
right: -5px;
|
|
18031
18049
|
}
|
|
18032
18050
|
.el-popper[data-popper-placement^=left] > .el-popper__arrow::before {
|
|
18033
18051
|
border-top-right-radius: 2px;
|
|
18034
18052
|
}
|
|
18035
18053
|
.el-popper[data-popper-placement^=right] > .el-popper__arrow {
|
|
18036
|
-
left: -
|
|
18054
|
+
left: -5px;
|
|
18037
18055
|
}
|
|
18038
18056
|
.el-popper[data-popper-placement^=right] > .el-popper__arrow::before {
|
|
18039
18057
|
border-bottom-left-radius: 2px;
|
|
@@ -307,8 +307,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
307
307
|
--el-alert-title-font-size: 12px;
|
|
308
308
|
--el-alert-title-with-description-font-size: 12px;
|
|
309
309
|
--el-alert-description-font-size: 10px;
|
|
310
|
-
--el-alert-close-font-size:
|
|
311
|
-
--el-alert-close-customed-font-size:
|
|
310
|
+
--el-alert-close-font-size: 12px;
|
|
311
|
+
--el-alert-close-customed-font-size: 12px;
|
|
312
312
|
--el-alert-icon-size: 12px;
|
|
313
313
|
--el-alert-icon-large-size: 32px;
|
|
314
314
|
position: relative;
|
|
@@ -352,6 +352,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
352
352
|
}
|
|
353
353
|
.el-alert--primary.is-light .el-alert__description {
|
|
354
354
|
color: var(--el-color-primary-light-6);
|
|
355
|
+
line-height: 14px;
|
|
356
|
+
margin-left: -16px;
|
|
355
357
|
}
|
|
356
358
|
.el-alert--primary.is-dark {
|
|
357
359
|
background-color: var(--el-color-primary);
|
|
@@ -371,6 +373,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
371
373
|
}
|
|
372
374
|
.el-alert--success.is-light .el-alert__description {
|
|
373
375
|
color: var(--el-color-success-light-6);
|
|
376
|
+
line-height: 14px;
|
|
377
|
+
margin-left: -16px;
|
|
374
378
|
}
|
|
375
379
|
.el-alert--success.is-dark {
|
|
376
380
|
background-color: var(--el-color-success);
|
|
@@ -390,6 +394,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
390
394
|
}
|
|
391
395
|
.el-alert--info.is-light .el-alert__description {
|
|
392
396
|
color: var(--el-color-neutral-light-6);
|
|
397
|
+
line-height: 14px;
|
|
398
|
+
margin-left: -16px;
|
|
393
399
|
}
|
|
394
400
|
.el-alert--info.is-dark {
|
|
395
401
|
background-color: var(--el-color-neutral);
|
|
@@ -409,6 +415,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
409
415
|
}
|
|
410
416
|
.el-alert--warning.is-light .el-alert__description {
|
|
411
417
|
color: var(--el-color-warning-light-6);
|
|
418
|
+
line-height: 14px;
|
|
419
|
+
margin-left: -16px;
|
|
412
420
|
}
|
|
413
421
|
.el-alert--warning.is-dark {
|
|
414
422
|
background-color: var(--el-color-warning);
|
|
@@ -428,6 +436,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
428
436
|
}
|
|
429
437
|
.el-alert--error.is-light .el-alert__description {
|
|
430
438
|
color: var(--el-color-error-light-6);
|
|
439
|
+
line-height: 14px;
|
|
440
|
+
margin-left: -16px;
|
|
431
441
|
}
|
|
432
442
|
.el-alert--error.is-dark {
|
|
433
443
|
background-color: var(--el-color-error);
|
|
@@ -447,18 +457,15 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
447
457
|
speak: never;
|
|
448
458
|
text-transform: none;
|
|
449
459
|
font-size: var(--el-alert-icon-size);
|
|
450
|
-
line-height: 1;
|
|
451
460
|
margin-right: 5px;
|
|
452
461
|
content: "info";
|
|
453
|
-
position: absolute;
|
|
454
462
|
font-weight: 500;
|
|
455
463
|
width: 12px;
|
|
456
|
-
height:
|
|
464
|
+
height: 18px;
|
|
457
465
|
font-size: 12px;
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
padding-left: 17px;
|
|
466
|
+
display: flex;
|
|
467
|
+
align-items: center;
|
|
468
|
+
justify-content: center;
|
|
462
469
|
}
|
|
463
470
|
.el-alert .el-alert__icon {
|
|
464
471
|
display: none;
|
|
@@ -488,7 +495,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
488
495
|
.el-alert__title.with-description {
|
|
489
496
|
font-size: var(--el-alert-title-with-description-font-size);
|
|
490
497
|
line-height: 14px;
|
|
491
|
-
margin-top:
|
|
498
|
+
margin-top: 2px;
|
|
492
499
|
}
|
|
493
500
|
|
|
494
501
|
.el-alert .el-alert__description {
|
|
@@ -499,7 +506,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
499
506
|
font-size: var(--el-alert-close-font-size);
|
|
500
507
|
opacity: 1;
|
|
501
508
|
position: absolute;
|
|
502
|
-
top:
|
|
509
|
+
top: 11px;
|
|
503
510
|
right: 16px;
|
|
504
511
|
cursor: pointer;
|
|
505
512
|
}
|
|
@@ -52,6 +52,8 @@
|
|
|
52
52
|
|
|
53
53
|
.#{$namespace}-alert__description {
|
|
54
54
|
color: getCssVar('color', if($type == 'info', 'neutral', $type), 'light-6');
|
|
55
|
+
line-height: 14px;
|
|
56
|
+
margin-left: -16px;
|
|
55
57
|
}
|
|
56
58
|
}
|
|
57
59
|
|
|
@@ -80,19 +82,19 @@
|
|
|
80
82
|
speak: never;
|
|
81
83
|
text-transform: none;
|
|
82
84
|
font-size: getCssVar('alert', 'icon-size');
|
|
83
|
-
line-height: 1;
|
|
84
85
|
margin-right: 5px;
|
|
85
86
|
content: 'info';
|
|
86
|
-
position: absolute;
|
|
87
87
|
font-weight: 500;
|
|
88
88
|
width: 12px;
|
|
89
|
-
height:
|
|
89
|
+
height: 18px;
|
|
90
90
|
font-size: 12px;
|
|
91
|
-
|
|
91
|
+
display: flex;
|
|
92
|
+
align-items: center;
|
|
93
|
+
justify-content: center;
|
|
92
94
|
}
|
|
93
95
|
|
|
94
96
|
.el-alert__title {
|
|
95
|
-
padding-left: 17px;
|
|
97
|
+
// padding-left: 17px;
|
|
96
98
|
}
|
|
97
99
|
|
|
98
100
|
.el-alert__icon {
|
|
@@ -126,7 +128,7 @@
|
|
|
126
128
|
&.with-description {
|
|
127
129
|
font-size: getCssVar('alert', 'title-with-description-font-size');
|
|
128
130
|
line-height: 14px;
|
|
129
|
-
margin-top:
|
|
131
|
+
margin-top: 2px;
|
|
130
132
|
}
|
|
131
133
|
}
|
|
132
134
|
|
|
@@ -139,7 +141,7 @@
|
|
|
139
141
|
font-size: getCssVar('alert', 'close-font-size');
|
|
140
142
|
opacity: 1;
|
|
141
143
|
position: absolute;
|
|
142
|
-
top:
|
|
144
|
+
top: 11px;
|
|
143
145
|
right: 16px;
|
|
144
146
|
cursor: pointer;
|
|
145
147
|
|
|
@@ -322,7 +322,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
322
322
|
|
|
323
323
|
.el-button {
|
|
324
324
|
display: inline-flex;
|
|
325
|
-
gap:
|
|
325
|
+
gap: 4px;
|
|
326
326
|
justify-content: center;
|
|
327
327
|
align-items: center;
|
|
328
328
|
line-height: 1;
|
|
@@ -1073,12 +1073,12 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
1073
1073
|
padding: 0 7px;
|
|
1074
1074
|
}
|
|
1075
1075
|
.el-button--mini {
|
|
1076
|
-
padding: 5px
|
|
1076
|
+
padding: 5px 11px;
|
|
1077
1077
|
font-size: 12px;
|
|
1078
1078
|
border-radius: 4px;
|
|
1079
1079
|
}
|
|
1080
1080
|
.el-button--mini.is-round {
|
|
1081
|
-
padding: 5px
|
|
1081
|
+
padding: 5px 11px;
|
|
1082
1082
|
}
|
|
1083
1083
|
.el-button--mini:has(> i):not(:has(span)) {
|
|
1084
1084
|
width: 28px;
|
|
@@ -437,10 +437,10 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
437
437
|
.el-checkbox-button--mini .el-checkbox-button__inner {
|
|
438
438
|
--el-button-size: 28px;
|
|
439
439
|
height: var(--el-button-size);
|
|
440
|
-
padding: 5px
|
|
440
|
+
padding: 5px 11px;
|
|
441
441
|
font-size: 12px;
|
|
442
442
|
border-radius: 0;
|
|
443
443
|
}
|
|
444
444
|
.el-checkbox-button--mini .el-checkbox-button__inner.is-round {
|
|
445
|
-
padding: 5px
|
|
445
|
+
padding: 5px 11px;
|
|
446
446
|
}
|