Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,9 @@ $dark-bootstrap-dialog: extend(
/// Generates a dark indigo dialog schema.
/// @type Map
/// @prop {Map} background [color: ('gray', 50)] - The dialog background color.
/// @prop {Number} elevation [23] - The elevation level, between 0-24, to be used for the dialog.
/// @requires $indigo-dialog
/// @requires $dark-indigo-elevation-dialog
$dark-indigo-dialog: extend(
$indigo-dialog,
$dark-indigo-elevation-dialog,
(
background: (
color: (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,14 +109,11 @@ $dark-bootstrap-drop-down: extend(
/// @prop {Map} selected-focus-item-background [color: ('primary', 400, .3)] - The drop-down selected item focus background color.
/// @prop {Map} selected-focus-item-text-color [contrast-color: ('gray', 50)] - The drop-down selected item focus text color.
/// @prop {Map} disabled-item-text-color [contrast-color: ('gray', 50, .2)] - The drop-down disabled item text color.
/// @prop {Number} elevation [2] - The elevation level, between 0-24, to be used for the drop-down shadow.
/// @requires $indigo-drop-down
/// @requires $base-dark-drop-down
/// @requires $dark-indigo-elevation-drop-down
$dark-indigo-drop-down: extend(
$indigo-drop-down,
$base-dark-drop-down,
$dark-indigo-elevation-drop-down,
(
background-color: (
color: (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,8 @@ $dark-bootstrap-snackbar: extend($bootstrap-snackbar, $dark-base-snackbar);
/// @prop {Map} text-color [contrast-color: ('gray', 200)] - The text color used in the snackbar.
/// @prop {Map} button-color [contrast-color: ('gray', 200)] - The button color used in the snackbar.
/// @requires $indigo-snackbar
/// @requires $dark-indigo-elevation-snackbar
$dark-indigo-snackbar: extend(
$indigo-snackbar,
$dark-indigo-elevation-snackbar,
$dark-base-snackbar,
(
background: (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,6 @@ $dark-bootstrap-time-picker: extend(
/// @requires $indigo-time-picker
$dark-indigo-time-picker: extend(
$indigo-time-picker,
$dark-indigo-elevation-time-picker,
$dark-base-time-picker,
(
text-color: (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,9 @@ $dark-bootstrap-toast: extend($bootstrap-toast, $dark-base-toast);
/// @prop {Map} text-color [contrast-color: ('gray', 50)] - The text-color used for the toast.
/// @requires $indigo-toast
/// @requires $dark-base-toast
/// @requires $dark-indigo-elevation-toast
$dark-indigo-toast: extend(
$indigo-toast,
$dark-base-toast,
$dark-indigo-elevation-toast,
(
background: (
color: (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,8 @@ $dark-bootstrap-tooltip: extend($bootstrap-tooltip, $dark-base-tooltip);
/// @prop {Map} text-color [contrast-color: ('gray', 50)] - The text color of the tooltip.
/// @prop {Number} elevation [9] - The elevation level, between 0-24, to be used for the tooltip.
/// @requires $indigo-tooltip
/// @requires $dark-indigo-elevation-tooltip
$dark-indigo-tooltip: extend(
$indigo-tooltip,
$dark-indigo-elevation-tooltip,
$dark-base-tooltip,
(
background: (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,3 @@ $default-elevation-dialog: (
$bootstrap-elevation-dialog: (
elevation: 0,
);

/// @type Map
/// @prop {Number} elevation [23] - The elevation level, between 0-24, to be used for the dialog.
$dark-indigo-elevation-dialog: (
elevation: 23,
);
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,8 @@ $default-elevation-drop-down: (
elevation: 3,
);

/// @type Map
/// @prop {Number} elevation [3] - The elevation level, between 0-24, to be used for the drop-down shadow.
$fluent-elevation-drop-down: (
elevation: 3,
);

/// @type Map
/// @prop {Number} elevation [0] - The elevation level, between 0-24, to be used for the drop-down shadow.
$bootstrap-elevation-drop-down: (
elevation: 0,
);

/// @type Map
/// @prop {Number} elevation [3] - The elevation level, between 0-24, to be used for the drop-down shadow.
$indigo-elevation-drop-down: (
elevation: 3,
);

/// @type Map
/// @prop {Number} elevation [2] - The elevation level, between 0-24, to be used for the drop-down shadow.
$dark-indigo-elevation-drop-down: (
elevation: 2,
);
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,3 @@ $bootstrap-elevation-snackbar: (
$indigo-elevation-snackbar: (
elevation: 10,
);

/// @type Map
/// @prop {Number} elevation [11] - The elevation level, between 0-24, to be used in the dark indigo snackbar.
$dark-indigo-elevation-snackbar: (
elevation: 11,
);
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ $default-elevation-time-picker: (
modal-elevation: 24,
dropdown-elevation: 3,
);

/// @type Map
/// @prop {Number} modal-elevation [5] - The elevation level, between 0-24, to be used for the time picker in modal mode.
/// @prop {Number} dropdown-elevation [3] - The elevation level, between 0-24, to be used for the time picker in dropdown mode.
$indigo-elevation-time-picker: (
modal-elevation: 5,
dropdown-elevation: 3,
);
$dark-indigo-elevation-time-picker: (
modal-elevation: 7,
dropdown-elevation: 2,
);
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,3 @@ $bootstrap-elevation-toast: (
$indigo-elevation-toast: (
elevation: 10,
);

/// @type Map
/// @prop {Number} elevation [11] - The elevation level, between 0-24, to be used for the dark indigo toast.
$dark-indigo-elevation-toast: (
elevation: 11,
);
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,3 @@ $default-elevation-tooltip: (
$indigo-elevation-tooltip: (
elevation: 8,
);

/// @type Map
/// @prop {Number} elevation [9] - The elevation level, between 0-24, to be used for the tooltip.
$dark-indigo-elevation-tooltip: (
elevation: 9,
);
Original file line number Diff line number Diff line change
Expand Up @@ -236,10 +236,8 @@ $material-drop-down: extend(
/// @prop {List} border-radius [(rem(2px), rem(0), rem(20px))] - The border radius used for drop-down component.
/// @prop {Map} typography [header: (value: 'subtitle-2'), item: (value: 'body-2'), select-item: (value: 'body-2')] - The typography styles used for the component.
/// @requires $light-drop-down
/// @requires $fluent-elevation-drop-down
$fluent-drop-down: extend(
$light-drop-down,
$fluent-elevation-drop-down,
(
focused-item-background: (
color: (
Expand Down Expand Up @@ -443,10 +441,8 @@ $bootstrap-drop-down: extend(
/// @prop {Number} border-width [1px] - The border width used for drop-down component.
/// @prop {List} size [(rem(24px), rem(28px), rem(32px))] - The size used for the dropdown item height.
/// @requires $light-drop-down
/// @requires $indigo-elevation-drop-down
$indigo-drop-down: extend(
$light-drop-down,
$indigo-elevation-drop-down,
(
background-color: (
contrast-color: (
Expand Down
Loading