]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Defualt -> Default on table SassDoc, closes #7799
authorGeoff Kimball <geoff@zurb.com>
Thu, 7 Jan 2016 17:50:46 +0000 (09:50 -0800)
committerGeoff Kimball <geoff@zurb.com>
Thu, 7 Jan 2016 17:50:46 +0000 (09:50 -0800)
scss/components/_table.scss

index d30ed09b903031e5c09bc381d636685bb86e544f..84b92a55ba1b533a789c62ec794dd58e4410b0d3 100644 (file)
@@ -8,55 +8,55 @@
 /// @group table
 ////
 
-/// Defualt color for table background.
+/// Default color for table background.
 /// @type Color
 $table-background: $white  !default;
 
-/// Defualt scale for darkening the striped table rows and the table border.
+/// Default scale for darkening the striped table rows and the table border.
 /// @type Number
 $table-color-scale: 5% !default;
 
-/// Defualt style for table border.
+/// Default style for table border.
 /// @type List
 $table-border: 1px solid smart-scale($table-background, $table-color-scale) !default;
 
-/// Defualt padding for table.
+/// Default padding for table.
 /// @type Number
 $table-padding: rem-calc(8 10 10) !default;
 
-/// Defualt scale for darkening the table rows on hover.
+/// Default scale for darkening the table rows on hover.
 /// @type Number
 $table-hover-scale: 2% !default;
 
-/// Defualt color of standard rows on hover.
+/// Default color of standard rows on hover.
 /// @type List
 $table-row-hover: darken($table-background, $table-hover-scale) !default;
 
-/// Defualt color of striped rows on hover.
+/// Default color of striped rows on hover.
 /// @type List
 $table-row-stripe-hover: darken($table-background, $table-color-scale + $table-hover-scale) !default;
 
-/// Defualt background color for striped rows.
+/// Default background color for striped rows.
 /// @type Color
 $table-striped-background: smart-scale($table-background, $table-color-scale) !default;
 
-/// Defualt value for showing the stripe on rows of the tables, excluding the header and footer If even, the even rows will have a background color. If odd, the odd rows will have a background color. If empty, or anyother value, the table rows will have no striping.
+/// Default value for showing the stripe on rows of the tables, excluding the header and footer If even, the even rows will have a background color. If odd, the odd rows will have a background color. If empty, or anyother value, the table rows will have no striping.
 /// @type Keyoword
 $table-stripe: even !default;
 
-/// Defualt color for header background.
+/// Default color for header background.
 /// @type Color
 $table-head-background: smart-scale($table-background, $table-color-scale / 2) !default;
 
-/// Defualt color for footer background.
+/// Default color for footer background.
 /// @type Color
 $table-foot-background: smart-scale($table-background, $table-color-scale) !default;
 
-/// Defualt font color for header.
+/// Default font color for header.
 /// @type Color
 $table-head-font-color: $body-font-color !default;
 
-/// Defualt value for showing the header when using stacked tables.
+/// Default value for showing the header when using stacked tables.
 /// @type Boolean
 $show-header-for-stacked: false !default;