matcha-core 20.82.0 → 20.85.0
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/core.scss +47 -10
- package/package.json +1 -1
package/core.scss
CHANGED
|
@@ -582,36 +582,36 @@ $base-font-size: 16px;
|
|
|
582
582
|
align-self-initial: (display:flex, align-self: initial),
|
|
583
583
|
|
|
584
584
|
center-center: (display:flex, justify-content: center, align-items: center),
|
|
585
|
-
|
|
585
|
+
|
|
586
586
|
justify-center: (display:flex, justify-content: center),
|
|
587
587
|
center: (display:flex, justify-content: center),
|
|
588
|
-
|
|
588
|
+
|
|
589
589
|
justify-end: (display:flex, justify-content: flex-end),
|
|
590
590
|
end: (display:flex, justify-content: flex-end),
|
|
591
|
-
|
|
591
|
+
|
|
592
592
|
justify-start: (display:flex, justify-content: flex-start),
|
|
593
593
|
start: (display:flex, justify-content: flex-start),
|
|
594
|
-
|
|
594
|
+
|
|
595
595
|
justify-inherit: (display:flex, justify-content: inherit),
|
|
596
596
|
inherit: (display:flex, justify-content: inherit),
|
|
597
|
-
|
|
597
|
+
|
|
598
598
|
justify-initial: (display:flex, justify-content: initial),
|
|
599
599
|
initial: (display:flex, justify-content: initial),
|
|
600
|
-
|
|
600
|
+
|
|
601
601
|
left: (display:flex, justify-content: left),
|
|
602
602
|
right: (display:flex, justify-content: right),
|
|
603
603
|
normal: (display:flex, justify-content: normal),
|
|
604
604
|
revert: (display:flex, justify-content: revert),
|
|
605
|
-
|
|
605
|
+
|
|
606
606
|
space-around: (display:flex, justify-content: space-around),
|
|
607
607
|
around: (display:flex, justify-content: space-around),
|
|
608
|
-
|
|
608
|
+
|
|
609
609
|
space-between: (display:flex, justify-content: space-between),
|
|
610
610
|
between: (display:flex, justify-content: space-between),
|
|
611
|
-
|
|
611
|
+
|
|
612
612
|
space-evenly: (display:flex, justify-content: space-evenly),
|
|
613
613
|
evenly: (display:flex, justify-content: space-evenly),
|
|
614
|
-
|
|
614
|
+
|
|
615
615
|
stretch: (display:flex, justify-content: stretch),
|
|
616
616
|
unset: (display:flex, justify-content: unset)
|
|
617
617
|
|
|
@@ -825,6 +825,43 @@ $base-font-size: 16px;
|
|
|
825
825
|
}
|
|
826
826
|
@include generate-cursor-classes($helper-breakpoints);
|
|
827
827
|
|
|
828
|
+
// -----------------------------------------------------------------------------------------------------
|
|
829
|
+
// @ Pointer Events classes
|
|
830
|
+
// -----------------------------------------------------------------------------------------------------
|
|
831
|
+
@mixin generate-pointer-events-classes($helper-breakpoints) {
|
|
832
|
+
$pointer-events: (
|
|
833
|
+
auto,
|
|
834
|
+
none,
|
|
835
|
+
all,
|
|
836
|
+
visible,
|
|
837
|
+
visiblePainted,
|
|
838
|
+
visibleFill,
|
|
839
|
+
visibleStroke,
|
|
840
|
+
painted,
|
|
841
|
+
fill,
|
|
842
|
+
stroke
|
|
843
|
+
);
|
|
844
|
+
@each $breakpoint, $materialBreakpoint in $helper-breakpoints {
|
|
845
|
+
@include media-breakpoint($materialBreakpoint) {
|
|
846
|
+
$infix: if($materialBreakpoint == null, "", "-#{$breakpoint}");
|
|
847
|
+
|
|
848
|
+
@for $i from 1 through length($pointer-events) {
|
|
849
|
+
$pointer-event: nth($pointer-events, $i);
|
|
850
|
+
|
|
851
|
+
.pointer-events-#{$pointer-event}#{$infix} {
|
|
852
|
+
pointer-events: #{$pointer-event};
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
.pointer-events-#{$pointer-event}#{$infix}--force {
|
|
856
|
+
pointer-events: #{$pointer-event} !important;
|
|
857
|
+
}
|
|
858
|
+
}
|
|
859
|
+
}
|
|
860
|
+
}
|
|
861
|
+
}
|
|
862
|
+
@include generate-pointer-events-classes($helper-breakpoints);
|
|
863
|
+
|
|
864
|
+
|
|
828
865
|
// -----------------------------------------------------------------------------------------------------
|
|
829
866
|
// @ Opacity
|
|
830
867
|
// -----------------------------------------------------------------------------------------------------
|