$global-right: if($global-text-direction == rtl, left, right);
// Internal variables used for colors
-$primary-color: map-get($foundation-palette, primary);
-$secondary-color: map-get($foundation-palette, secondary);
-$success-color: map-get($foundation-palette, success);
-$warning-color: map-get($foundation-palette, warning);
-$alert-color: map-get($foundation-palette, alert);
+$primary-color: get-color(primary);
+$secondary-color: get-color(secondary);
+$success-color: get-color(success);
+$warning-color: get-color(warning);
+$alert-color: get-color(alert);
- // Remove this in 6.3
- $-zf-menu-icon-imported: false;
- $-zf-flex-classes-imported: false;
-
@mixin foundation-global-styles {
@include -zf-normalize;
$menu-margin-nested: 1rem;
$menu-item-padding: 0.7rem 1rem;
$menu-item-color-active: $white;
-$menu-item-background-active: map-get($foundation-palette, primary);
+$menu-item-background-active: get-color(primary);
$menu-icon-spacing: 0.25rem;
+ $menu-item-background-hover: $light-gray;
+ $menu-border: $light-gray;
- // 22. Meter
+ // 23. Meter
// ---------
$meter-height: 1rem;