docs(sass): add documentation for sass variables

This adds documentation for loading, menu, picker, popover, radio,
refresher, select, and toast. Also removes unused variables.

References #8785
This commit is contained in:
Brandy Carney
2016-12-01 18:39:52 -05:00
parent 6ef6f0aeea
commit 3532a71c29
24 changed files with 324 additions and 5 deletions

View File

@ -3,21 +3,43 @@
// iOS Loading Indicator
// --------------------------------------------------
/// @prop - Padding of the loading wrapper
$loading-ios-padding: 24px 34px !default;
/// @prop - Max width of the loading wrapper
$loading-ios-max-width: 270px !default;
/// @prop - Max height of the loading wrapper
$loading-ios-max-height: 90% !default;
/// @prop - Border radius of the loading wrapper
$loading-ios-border-radius: 8px !default;
/// @prop - Text color of the loading wrapper
$loading-ios-text-color: #000 !default;
/// @prop - Background of the loading wrapper
$loading-ios-background: #f8f8f8 !default;
/// @prop - Font weight of the loading content
$loading-ios-content-font-weight: bold !default;
/// @prop - Color of the loading spinner
$loading-ios-spinner-color: #69717d !default;
/// @prop - Color of the ios loading spinner
$loading-ios-spinner-ios-color: $loading-ios-spinner-color !default;
/// @prop - Color of the bubbles loading spinner
$loading-ios-spinner-bubbles-color: $loading-ios-spinner-color !default;
/// @prop - Color of the circles loading spinner
$loading-ios-spinner-circles-color: $loading-ios-spinner-color !default;
/// @prop - Color of the crescent loading spinner
$loading-ios-spinner-crescent-color: $loading-ios-spinner-color !default;
/// @prop - Color of the dots loading spinner
$loading-ios-spinner-dots-color: $loading-ios-spinner-color !default;

View File

@ -3,21 +3,46 @@
// Material Design Loading Indicator
// --------------------------------------------------
/// @prop - Padding of the loading wrapper
$loading-md-padding: 24px !default;
/// @prop - Max width of the loading wrapper
$loading-md-max-width: 280px !default;
/// @prop - Max height of the loading wrapper
$loading-md-max-height: 90% !default;
/// @prop - Border radius of the loading wrapper
$loading-md-border-radius: 2px !default;
/// @prop - Text color of the loading wrapper
$loading-md-text-color: rgba(0, 0, 0, .5) !default;
/// @prop - Background of the loading wrapper
$loading-md-background: #fafafa !default;
/// @prop - Box shadow color of the loading wrapper
$loading-md-box-shadow-color: rgba(0, 0, 0, .4) !default;
/// @prop - Box shadow of the loading wrapper
$loading-md-box-shadow: 0 16px 20px $loading-md-box-shadow-color !default;
/// @prop - Color of the loading spinner
$loading-md-spinner-color: color($colors-md, primary) !default;
/// @prop - Color of the ios loading spinner
$loading-md-spinner-ios-color: $loading-md-spinner-color !default;
/// @prop - Color of the bubbles loading spinner
$loading-md-spinner-bubbles-color: $loading-md-spinner-color !default;
/// @prop - Color of the circles loading spinner
$loading-md-spinner-circles-color: $loading-md-spinner-color !default;
/// @prop - Color of the crescent loading spinner
$loading-md-spinner-crescent-color: $loading-md-spinner-color !default;
/// @prop - Color of the dots loading spinner
$loading-md-spinner-dots-color: $loading-md-spinner-color !default;

View File

@ -3,19 +3,40 @@
// Windows Loading Indicator
// --------------------------------------------------
/// @prop - Padding of the loading wrapper
$loading-wp-padding: 20px !default;
/// @prop - Max width of the loading wrapper
$loading-wp-max-width: 280px !default;
/// @prop - Max height of the loading wrapper
$loading-wp-max-height: 90% !default;
/// @prop - Border radius of the loading wrapper
$loading-wp-border-radius: 2px !default;
/// @prop - Text color of the loading wrapper
$loading-wp-text-color: #fff !default;
/// @prop - Background of the loading wrapper
$loading-wp-background: #000 !default;
/// @prop - Color of the loading spinner
$loading-wp-spinner-color: $loading-wp-text-color !default;
/// @prop - Color of the ios loading spinner
$loading-wp-spinner-ios-color: $loading-wp-spinner-color !default;
/// @prop - Color of the bubbles loading spinner
$loading-wp-spinner-bubbles-color: $loading-wp-spinner-color !default;
/// @prop - Color of the circles loading spinner
$loading-wp-spinner-circles-color: $loading-wp-spinner-color !default;
/// @prop - Color of the crescent loading spinner
$loading-wp-spinner-crescent-color: $loading-wp-spinner-color !default;
/// @prop - Color of the dots loading spinner
$loading-wp-spinner-dots-color: $loading-wp-spinner-color !default;