/// Sets dropdown menu nested margin
/// @type Number
-$dropdownmenu-nested-margin: 0 !default;
+$dropdownmenu-nested-margin: 0 !default;
/// Padding for sub-menu items.
/// @type Number
// @type Length
$dropdownmenu-border-width: nth($dropdownmenu-border, 1);
-@mixin left-right-arrows {
+@mixin zf-dropdown-left-right-arrows {
> a::after {
#{$global-right}: 14px;
}
&.opens-left > a::after {
+ right: auto;
+ left: 5px;
@include css-triangle($dropdownmenu-arrow-size, $dropdownmenu-arrow-color, left);
}
}
@if $dropdownmenu-arrows {
- @include left-right-arrows;
+ @include zf-dropdown-left-right-arrows;
}
}
}
.is-dropdown-submenu-parent {
@if $dropdownmenu-arrows {
- @include left-right-arrows;
+ @include zf-dropdown-left-right-arrows;
}
}