@total_onion/onion-library 3.0.35 → 3.0.36
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/components/component-core-group-container-styles-v3/core-group-container-styles-v3.scss
CHANGED
|
@@ -6,39 +6,43 @@
|
|
|
6
6
|
@use '../../breakpoints';
|
|
7
7
|
|
|
8
8
|
@mixin coreGroupContainerStylesV3() {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
9
|
+
@layer base-styles {
|
|
10
|
+
.cmpl-core-group-container-styles {
|
|
11
|
+
display: grid;
|
|
12
|
+
grid-template: 'main' / 1fr;
|
|
13
|
+
place-items: center;
|
|
14
|
+
&__grid-container {
|
|
15
|
+
grid-area: main;
|
|
16
|
+
place-self: stretch;
|
|
17
|
+
&.flex-layout-container {
|
|
18
|
+
@include flex-layout-container-v3.flexLayoutContainer();
|
|
19
|
+
}
|
|
20
|
+
&.grid-layout-container {
|
|
21
|
+
@include grid-layout-container-v3.gridLayoutContainer();
|
|
22
|
+
}
|
|
18
23
|
}
|
|
19
|
-
|
|
20
|
-
|
|
24
|
+
&__block-container {
|
|
25
|
+
pointer-events: none;
|
|
26
|
+
position: relative;
|
|
27
|
+
&.grid-layout-container {
|
|
28
|
+
@include grid-layout-element-v3.gridLayoutElement();
|
|
29
|
+
}
|
|
30
|
+
&:has(
|
|
31
|
+
.video-content-v3__video-container.video-playing.video-playing--high-z-index
|
|
32
|
+
) {
|
|
33
|
+
z-index: 50;
|
|
34
|
+
}
|
|
21
35
|
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
36
|
+
&__block-number {
|
|
37
|
+
z-index: 99;
|
|
38
|
+
position: absolute;
|
|
39
|
+
font-size: 40px;
|
|
40
|
+
left: 50%;
|
|
41
|
+
top: 50%;
|
|
42
|
+
transform: translate(-50%, -50%);
|
|
43
|
+
color: white;
|
|
44
|
+
text-shadow: 1px 1px 1px blue;
|
|
31
45
|
}
|
|
32
46
|
}
|
|
33
|
-
&__block-number {
|
|
34
|
-
z-index: 99;
|
|
35
|
-
position: absolute;
|
|
36
|
-
font-size: 40px;
|
|
37
|
-
left: 50%;
|
|
38
|
-
top: 50%;
|
|
39
|
-
transform: translate(-50%, -50%);
|
|
40
|
-
color: white;
|
|
41
|
-
text-shadow: 1px 1px 1px blue;
|
|
42
|
-
}
|
|
43
47
|
}
|
|
44
48
|
}
|