$_true-error-output-override (bool) [private]
$_true-error-output-override: false !default;
Description
Override error-output for the purpose of testing failure-cases
@function _true-error() [private]
Description
Optionally override error-output for testing failure-cases
Parameters & Return
$message: (string)
The error to report
$source: (string)
The source of the error
$override: $_true-error-output-override (bool)
Optionally override error-output for testing failure-cases
@return (string)
A message detailing the source and error, when the $override
is true
@error
[#{$source}] #{$message}
@mixin _true-error() [private]
Description
Optionally override error-output for testing failure-cases
Parameters & Output & Return
$message: (string)
The error to report
$source: (string)
The source of the error
$override: $_true-error-output-override (bool)
Optionally override error-output for testing failure-cases
{CSS output} (code block)
A message detailing the source and error, when the $override
is true
@error
[#{$source}] #{$message}
requires
@mixin _true-message() [private]
used by
@mixin report()
@function _true-map-increment() [private]
Description
Add map values together
Parameters & Return
$base: (map)
Initial map to add values to
$add: (map)
Map of values to be added
@return (map)
@function _true-join-multiple() [private]
Description
Extends the Sass join()
function to accept and combine any number of lists
Parameters & Return
$lists...: (list | 'space' | 'comma')
Any number of lists to be joined, with an optional final argument describing the desired list-separator ('space' or 'comma')
@return (list)
Joined items in a single list