12 string references to 'SassNumber' in Sassy 7.3
- SassScriptFunctions::abs in phpsass/
script/ SassScriptFunctions.php - Finds the absolute value of a number. For example: abs(10px) => 10px abs(-10px) => 10px
- SassScriptFunctions::adjust in phpsass/
script/ SassScriptFunctions.php - Adjusts the colour
- SassScriptFunctions::adjust_hue in phpsass/
script/ SassScriptFunctions.php - Changes the hue of a colour while retaining the lightness and saturation.
- SassScriptFunctions::ceil in phpsass/
script/ SassScriptFunctions.php - Rounds a number up to the nearest whole number. For example: ceil(10.4px) => 11px ceil(10.6px) => 11px
- SassScriptFunctions::comparable in phpsass/
script/ SassScriptFunctions.php - Returns true if two numbers are similar enough to be added, subtracted, or compared.
- SassScriptFunctions::floor in phpsass/
script/ SassScriptFunctions.php - Rounds down to the nearest whole number. For example: floor(10.4px) => 10px floor(10.6px) => 10px
- SassScriptFunctions::hsla in phpsass/
script/ SassScriptFunctions.php - Creates a SassColour object from hue, saturation, lightness and alpha channel (opacity).
- SassScriptFunctions::mix in phpsass/
script/ SassScriptFunctions.php - Mixes two colours together. Takes the average of each of the RGB components, optionally weighted by the given percentage. The opacity of the colours is also considered when weighting the components. The weight specifies the amount of the first colour…
- SassScriptFunctions::rgba in phpsass/
script/ SassScriptFunctions.php - Creates a SassColour object from red, green, and blue values and alpha channel (opacity). There are two overloads:
- SassScriptFunctions::round in phpsass/
script/ SassScriptFunctions.php - Rounds a number to the nearest whole number. For example: round(10.4px) => 10px round(10.6px) => 11px
- SassScriptFunctions::unitless in phpsass/
script/ SassScriptFunctions.php - Inspects the unit of the number, returning a boolean indicating if it is unitless.
- SassScriptFunctions::units in phpsass/
script/ SassScriptFunctions.php - Inspects the units of the number, returning it as a quoted string.