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,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;