node_modules/bulma/sass/utilities/mixins.sass in vitrina-0.2.8 vs node_modules/bulma/sass/utilities/mixins.sass in vitrina-0.3.0
- old
+ new
@@ -126,9 +126,33 @@
=fullhd
@if $fullhd-enabled
@media screen and (min-width: $fullhd)
@content
+=ltr
+ @if not $rtl
+ @content
+
+=rtl
+ @if $rtl
+ @content
+
+=ltr-property($property, $spacing, $right: true)
+ $normal: if($right, "right", "left")
+ $opposite: if($right, "left", "right")
+ @if $rtl
+ #{$property}-#{$opposite}: $spacing
+ @else
+ #{$property}-#{$normal}: $spacing
+
+=ltr-position($spacing, $right: true)
+ $normal: if($right, "right", "left")
+ $opposite: if($right, "left", "right")
+ @if $rtl
+ #{$opposite}: $spacing
+ @else
+ #{$normal}: $spacing
+
// Placeholders
=unselectable
-webkit-touch-callout: none
-webkit-user-select: none