/// @type Boolean
$dropdownmenu-arrows: true !default;
+/// Sets dropdown menu arrow color if arrow is used.
+/// @type Color
+$dropdownmenu-arrow-color: $anchor-color !default;
+
/// Minimum width of dropdown sub-menus.
/// @type Length
$dropdownmenu-min-width: 200px !default;
position: relative;
}
&.is-down-arrow > a::after {
- @include css-triangle(5px, $anchor-color, down);
+ @include css-triangle(5px, $dropdownmenu-arrow-color, down);
position: absolute;
top: 12px;
right: 5px;
}
&.is-left-arrow > a::after {
- @include css-triangle(5px, $anchor-color, left);
+ @include css-triangle(5px, $dropdownmenu-arrow-color, left);
float: left;
margin-left: 0;
margin-right: 10px;
}
&.is-right-arrow > a::after {
- @include css-triangle(5px, $anchor-color, right);
+ @include css-triangle(5px, $dropdownmenu-arrow-color, right);
}
}