From: Geoff Kimball Date: Tue, 23 Feb 2016 23:25:30 +0000 (-0800) Subject: Update SassDoc annotations for hamburger() mixin to show defaults of every parameter X-Git-Tag: v6.2.0~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c33620b5aa3550018b68cebd3bf99dbf4a11bb5;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Update SassDoc annotations for hamburger() mixin to show defaults of every parameter --- diff --git a/scss/util/_mixins.scss b/scss/util/_mixins.scss index f60048129..a984aa755 100644 --- a/scss/util/_mixins.scss +++ b/scss/util/_mixins.scss @@ -46,12 +46,12 @@ /// Creates a menu icon with a set width, height, number of bars, and colors. The mixin uses the height of the icon and the weight of the bars to determine spacing.
/// -/// @param {Color} $color - Color to use for the icon. -/// @param {Color} $color-hover - Color to use when the icon is hovered over. -/// @param {Number} $width - Width of the icon. -/// @param {Number} $height - Height of the icon. -/// @param {Number} $weight - Height of individual bars in the icon. -/// @param {Number} $bars - Number of bars in the icon. +/// @param {Color} $color [$black] - Color to use for the icon. +/// @param {Color} $color-hover [$dark-gray] - Color to use when the icon is hovered over. +/// @param {Number} $width [20px] - Width of the icon. +/// @param {Number} $height [16px] - Height of the icon. +/// @param {Number} $weight [2px] - Height of individual bars in the icon. +/// @param {Number} $bars [3] - Number of bars in the icon. @mixin hamburger( $color: $black, $color-hover: $dark-gray,