@timus-networks/theme 2.4.168 → 2.4.169
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 -3
- package/dist/runtime/public/scss/element-plus/button.css +3 -0
- package/dist/runtime/public/scss/element-plus/button.scss +7 -0
- package/dist/runtime/public/scss/element-plus/index.css +8 -3
- package/dist/runtime/public/scss/element-plus/switch.scss +0 -2
- package/dist/runtime/public/scss/element-plus/table.css +5 -3
- package/dist/runtime/public/scss/element-plus/table.scss +7 -3
- 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.168";
|
|
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 = {
|
|
@@ -2418,6 +2418,9 @@ body {
|
|
|
2418
2418
|
border-color: var(--el-button-border-color);
|
|
2419
2419
|
transition: all 0.5s ease;
|
|
2420
2420
|
}
|
|
2421
|
+
.el-button[class^=mat-]::before, .el-button[class*=" mat-"]::before {
|
|
2422
|
+
margin-left: -4px;
|
|
2423
|
+
}
|
|
2421
2424
|
.el-button:empty {
|
|
2422
2425
|
padding: 0;
|
|
2423
2426
|
min-width: 36px;
|
|
@@ -15032,7 +15035,7 @@ heights > $common-component-size
|
|
|
15032
15035
|
visibility: hidden;
|
|
15033
15036
|
}
|
|
15034
15037
|
.el-table .el-table__cell:first-of-type .cell {
|
|
15035
|
-
|
|
15038
|
+
margin-left: 0;
|
|
15036
15039
|
}
|
|
15037
15040
|
.el-table .el-table__cell:last-of-type .cell {
|
|
15038
15041
|
padding-right: 0;
|
|
@@ -15042,7 +15045,8 @@ heights > $common-component-size
|
|
|
15042
15045
|
overflow: hidden;
|
|
15043
15046
|
text-overflow: ellipsis;
|
|
15044
15047
|
overflow-wrap: break-word;
|
|
15045
|
-
padding: 0 12px;
|
|
15048
|
+
padding: 0 12px 0 0;
|
|
15049
|
+
margin-left: 12px;
|
|
15046
15050
|
align-items: center;
|
|
15047
15051
|
gap: 2px;
|
|
15048
15052
|
white-space: nowrap;
|
|
@@ -15105,6 +15109,7 @@ heights > $common-component-size
|
|
|
15105
15109
|
}
|
|
15106
15110
|
.el-table tr .el-checkbox {
|
|
15107
15111
|
max-height: 20px;
|
|
15112
|
+
margin-top: 1px;
|
|
15108
15113
|
}
|
|
15109
15114
|
.el-table tr .el-checkbox input[type=checkbox] {
|
|
15110
15115
|
margin: 0;
|
|
@@ -15314,7 +15319,7 @@ heights > $common-component-size
|
|
|
15314
15319
|
top: 3px;
|
|
15315
15320
|
}
|
|
15316
15321
|
.el-table__header-wrapper .el-table-column--selection + td > .cell, .el-table__header-wrapper .el-table-column--selection + th > .cell, .el-table__body-wrapper .el-table-column--selection + td > .cell, .el-table__body-wrapper .el-table-column--selection + th > .cell {
|
|
15317
|
-
|
|
15322
|
+
margin-left: 0;
|
|
15318
15323
|
}
|
|
15319
15324
|
|
|
15320
15325
|
.el-table.is-scrolling-left .el-table-fixed-column--right.is-first-column::before {
|
|
@@ -343,6 +343,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
343
343
|
border-color: var(--el-button-border-color);
|
|
344
344
|
transition: all 0.5s ease;
|
|
345
345
|
}
|
|
346
|
+
.el-button[class^=mat-]::before, .el-button[class*=" mat-"]::before {
|
|
347
|
+
margin-left: -4px;
|
|
348
|
+
}
|
|
346
349
|
.el-button:empty {
|
|
347
350
|
padding: 0;
|
|
348
351
|
min-width: 36px;
|
|
@@ -46,6 +46,13 @@ $button-icon-span-gap: map.merge(
|
|
|
46
46
|
border-color: getCssVar('button', 'border-color');
|
|
47
47
|
transition: all 0.5s ease;
|
|
48
48
|
|
|
49
|
+
&[class^='mat-'],
|
|
50
|
+
&[class*=' mat-'] {
|
|
51
|
+
&::before {
|
|
52
|
+
margin-left: -4px;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
49
56
|
&:empty {
|
|
50
57
|
padding: 0;
|
|
51
58
|
min-width: 36px;
|
|
@@ -1420,6 +1420,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
1420
1420
|
border-color: var(--el-button-border-color);
|
|
1421
1421
|
transition: all 0.5s ease;
|
|
1422
1422
|
}
|
|
1423
|
+
.el-button[class^=mat-]::before, .el-button[class*=" mat-"]::before {
|
|
1424
|
+
margin-left: -4px;
|
|
1425
|
+
}
|
|
1423
1426
|
.el-button:empty {
|
|
1424
1427
|
padding: 0;
|
|
1425
1428
|
min-width: 36px;
|
|
@@ -14145,7 +14148,7 @@ h6,
|
|
|
14145
14148
|
visibility: hidden;
|
|
14146
14149
|
}
|
|
14147
14150
|
.el-table .el-table__cell:first-of-type .cell {
|
|
14148
|
-
|
|
14151
|
+
margin-left: 0;
|
|
14149
14152
|
}
|
|
14150
14153
|
.el-table .el-table__cell:last-of-type .cell {
|
|
14151
14154
|
padding-right: 0;
|
|
@@ -14155,7 +14158,8 @@ h6,
|
|
|
14155
14158
|
overflow: hidden;
|
|
14156
14159
|
text-overflow: ellipsis;
|
|
14157
14160
|
overflow-wrap: break-word;
|
|
14158
|
-
padding: 0 12px;
|
|
14161
|
+
padding: 0 12px 0 0;
|
|
14162
|
+
margin-left: 12px;
|
|
14159
14163
|
align-items: center;
|
|
14160
14164
|
gap: 2px;
|
|
14161
14165
|
white-space: nowrap;
|
|
@@ -14218,6 +14222,7 @@ h6,
|
|
|
14218
14222
|
}
|
|
14219
14223
|
.el-table tr .el-checkbox {
|
|
14220
14224
|
max-height: 20px;
|
|
14225
|
+
margin-top: 1px;
|
|
14221
14226
|
}
|
|
14222
14227
|
.el-table tr .el-checkbox input[type=checkbox] {
|
|
14223
14228
|
margin: 0;
|
|
@@ -14427,7 +14432,7 @@ h6,
|
|
|
14427
14432
|
top: 3px;
|
|
14428
14433
|
}
|
|
14429
14434
|
.el-table__header-wrapper .el-table-column--selection + td > .cell, .el-table__header-wrapper .el-table-column--selection + th > .cell, .el-table__body-wrapper .el-table-column--selection + td > .cell, .el-table__body-wrapper .el-table-column--selection + th > .cell {
|
|
14430
|
-
|
|
14435
|
+
margin-left: 0;
|
|
14431
14436
|
}
|
|
14432
14437
|
|
|
14433
14438
|
.el-table.is-scrolling-left .el-table-fixed-column--right.is-first-column::before {
|
|
@@ -461,7 +461,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
461
461
|
visibility: hidden;
|
|
462
462
|
}
|
|
463
463
|
.el-table .el-table__cell:first-of-type .cell {
|
|
464
|
-
|
|
464
|
+
margin-left: 0;
|
|
465
465
|
}
|
|
466
466
|
.el-table .el-table__cell:last-of-type .cell {
|
|
467
467
|
padding-right: 0;
|
|
@@ -471,7 +471,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
471
471
|
overflow: hidden;
|
|
472
472
|
text-overflow: ellipsis;
|
|
473
473
|
overflow-wrap: break-word;
|
|
474
|
-
padding: 0 12px;
|
|
474
|
+
padding: 0 12px 0 0;
|
|
475
|
+
margin-left: 12px;
|
|
475
476
|
align-items: center;
|
|
476
477
|
gap: 2px;
|
|
477
478
|
white-space: nowrap;
|
|
@@ -534,6 +535,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
534
535
|
}
|
|
535
536
|
.el-table tr .el-checkbox {
|
|
536
537
|
max-height: 20px;
|
|
538
|
+
margin-top: 1px;
|
|
537
539
|
}
|
|
538
540
|
.el-table tr .el-checkbox input[type=checkbox] {
|
|
539
541
|
margin: 0;
|
|
@@ -743,7 +745,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
743
745
|
top: 3px;
|
|
744
746
|
}
|
|
745
747
|
.el-table__header-wrapper .el-table-column--selection + td > .cell, .el-table__header-wrapper .el-table-column--selection + th > .cell, .el-table__body-wrapper .el-table-column--selection + td > .cell, .el-table__body-wrapper .el-table-column--selection + th > .cell {
|
|
746
|
-
|
|
748
|
+
margin-left: 0;
|
|
747
749
|
}
|
|
748
750
|
|
|
749
751
|
.el-table.is-scrolling-left .el-table-fixed-column--right.is-first-column::before {
|
|
@@ -209,7 +209,8 @@
|
|
|
209
209
|
|
|
210
210
|
&:first-of-type {
|
|
211
211
|
.cell {
|
|
212
|
-
padding-left: 0;
|
|
212
|
+
// padding-left: 0;
|
|
213
|
+
margin-left: 0;
|
|
213
214
|
}
|
|
214
215
|
}
|
|
215
216
|
|
|
@@ -226,7 +227,8 @@
|
|
|
226
227
|
overflow: hidden;
|
|
227
228
|
text-overflow: ellipsis;
|
|
228
229
|
overflow-wrap: break-word;
|
|
229
|
-
padding: 0 12px;
|
|
230
|
+
padding: 0 12px 0 0;
|
|
231
|
+
margin-left: 12px;
|
|
230
232
|
align-items: center;
|
|
231
233
|
// display: flex; // bunu eklersem truncate etmiyor o yüzden aşağıdaki line-height: 1 i ekledim çözüldü
|
|
232
234
|
// line-height: 20px; // 1
|
|
@@ -278,6 +280,7 @@
|
|
|
278
280
|
|
|
279
281
|
.#{$namespace}-checkbox {
|
|
280
282
|
max-height: 20px;
|
|
283
|
+
margin-top: 1px;
|
|
281
284
|
|
|
282
285
|
input[type='checkbox'] {
|
|
283
286
|
margin: 0;
|
|
@@ -525,7 +528,8 @@
|
|
|
525
528
|
& + td,
|
|
526
529
|
& + th {
|
|
527
530
|
> .cell {
|
|
528
|
-
padding-left: 4px;
|
|
531
|
+
// padding-left: 4px;
|
|
532
|
+
margin-left: 0;
|
|
529
533
|
}
|
|
530
534
|
}
|
|
531
535
|
}
|
package/package.json
CHANGED