You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
plain-ui/src/scss/_functions.scss

73 lines
1.1 KiB

3 years ago
/**
* functions
*
*
* @author Björn Hase, me@herr-hase.wtf
3 years ago
* @license http://opensource.org/licenses/MIT The MIT License
* @link https://gitea.node001.net/tiny-components/plain-ui.git
3 years ago
*
*/
/**
* strip unit from value
*
* @param {mixed} $value
* @return {number}
*
*/
3 years ago
@function stripUnit($value)
{
3 years ago
@return $value / ($value * 0 + 1);
}
3 years ago
/**
*
*
* https://css-tricks.com/snippets/sass/str-replace-function/
*
*/
@function str-replace($string, $search, $replace: '')
{
$index: str-index($string, $search);
3 years ago
3 years ago
@if $index {
@return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
}
3 years ago
3 years ago
@return $string;
3 years ago
}
3 years ago
/**
* get value of key "default" in map
*
* @param {map} $value
* @return {boolean|unit}
*
*/
3 years ago
@function getDefault($map)
{
3 years ago
$default: false;
@if map-has-key($map, 'default') {
$default: map-get($map, 'default');
}
@return $default;
}
/**
* factor
*
*
*
* @param {integer} $x
* @return {float}
*
*/
3 years ago
@function factor($x)
{
3 years ago
@return ($x * $x) / 2;
}