mediacube-ui 0.1.209 → 0.1.211
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/CHANGELOG.md +4 -0
- package/package.json +1 -1
- package/src/patterns/McModal/McModal.vue +12 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.211](https://github.com/MediaCubeCo/mcui/compare/v0.1.210...v0.1.211) (2024-01-17)
|
|
6
|
+
|
|
7
|
+
### [0.1.210](https://github.com/MediaCubeCo/mcui/compare/v0.1.209...v0.1.210) (2024-01-17)
|
|
8
|
+
|
|
5
9
|
### [0.1.209](https://github.com/MediaCubeCo/mcui/compare/v0.1.208...v0.1.209) (2024-01-16)
|
|
6
10
|
|
|
7
11
|
### [0.1.208](https://github.com/MediaCubeCo/mcui/compare/v0.1.207...v0.1.208) (2024-01-15)
|
package/package.json
CHANGED
|
@@ -309,7 +309,6 @@ export default {
|
|
|
309
309
|
&__btn-back {
|
|
310
310
|
@include reset-btn();
|
|
311
311
|
@include close-link();
|
|
312
|
-
z-index: $z-index-sticky;
|
|
313
312
|
transition: $duration-s all;
|
|
314
313
|
}
|
|
315
314
|
&__btn-close {
|
|
@@ -442,6 +441,18 @@ export default {
|
|
|
442
441
|
line-height: var(--mc-modal-header-line-height);
|
|
443
442
|
}
|
|
444
443
|
}
|
|
444
|
+
*:empty {
|
|
445
|
+
display: none;
|
|
446
|
+
&:has(*:empty) {
|
|
447
|
+
display: none;
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
&:has(*:empty) {
|
|
451
|
+
display: none;
|
|
452
|
+
& + #{$block-name}__body {
|
|
453
|
+
padding-top: $space-400;
|
|
454
|
+
}
|
|
455
|
+
}
|
|
445
456
|
}
|
|
446
457
|
|
|
447
458
|
&__title {
|
|
@@ -464,10 +475,6 @@ export default {
|
|
|
464
475
|
padding: $space-50 $space-400;
|
|
465
476
|
overflow: visible;
|
|
466
477
|
}
|
|
467
|
-
.mc-field-select {
|
|
468
|
-
position: relative;
|
|
469
|
-
z-index: 101;
|
|
470
|
-
}
|
|
471
478
|
}
|
|
472
479
|
&__inner {
|
|
473
480
|
box-shadow: 0 6px 12px rgba(110, 110, 110, 0.61);
|