mediacube-ui 0.1.375 → 0.1.376

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 CHANGED
@@ -2,6 +2,8 @@
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.376](https://github.com/MediaCubeCo/mcui/compare/v0.1.375...v0.1.376) (2025-05-07)
6
+
5
7
  ### [0.1.375](https://github.com/MediaCubeCo/mcui/compare/v0.1.374...v0.1.375) (2025-05-06)
6
8
 
7
9
  ### [0.1.374](https://github.com/MediaCubeCo/mcui/compare/v0.1.373...v0.1.374) (2025-05-05)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mediacube-ui",
3
- "version": "0.1.375",
3
+ "version": "0.1.376",
4
4
  "description": "Design system for Mediacube services",
5
5
  "author": "Mediacube",
6
6
  "private": false,
@@ -304,9 +304,6 @@ export default {
304
304
  @import '../../tokens/z-indexes';
305
305
  @import '../../tokens/durations';
306
306
  @import '../../tokens/font-families';
307
- .v--modal-block-scroll {
308
- width: 100%;
309
- }
310
307
 
311
308
  .mc-modal {
312
309
  $block-name: &;
@@ -690,6 +687,15 @@ export default {
690
687
  }
691
688
  }
692
689
  }
690
+ .v--modal-block-scroll {
691
+ width: 100%;
692
+ // При открытой модалке на мобилках, когда она занимает весь экран - прячем весь другой контент, чтобы на ios при скроллах не видеть его
693
+ @media #{$media-query-s-down} {
694
+ *:has(> #{$block-name}) > *:not(#{$block-name}) {
695
+ opacity: 0;
696
+ }
697
+ }
698
+ }
693
699
  }
694
700
  }
695
701
  </style>