You are here

12 string references to 'SassNumber' in Sassy 7

SassScriptFunctions::abs in phamlp/sass/script/SassScriptFunctions.php
* Finds the absolute value of a number. * For example: * abs(10px) => 10px * abs(-10px) => 10px * *
SassScriptFunctions::adjust in phamlp/sass/script/SassScriptFunctions.php
* Adjusts the colour *
SassScriptFunctions::adjust_hue in phamlp/sass/script/SassScriptFunctions.php
* Changes the hue of a colour while retaining the lightness and saturation. *
SassScriptFunctions::ceil in phamlp/sass/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 phamlp/sass/script/SassScriptFunctions.php
* Returns true if two numbers are similar enough to be added, subtracted, * or compared. *
SassScriptFunctions::floor in phamlp/sass/script/SassScriptFunctions.php
* Rounds down to the nearest whole number. * For example: * floor(10.4px) => 10px * floor(10.6px) => 10px * *
SassScriptFunctions::hsla in phamlp/sass/script/SassScriptFunctions.php
* Creates a SassColour object from hue, saturation, lightness and alpha * channel (opacity). *
SassScriptFunctions::mix in phamlp/sass/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…
SassScriptFunctions::rgba in phamlp/sass/script/SassScriptFunctions.php
* Creates a SassColour object from red, green, and blue values and alpha * channel (opacity). * There are two overloads: * * rgba(red, green, blue, alpha) *
SassScriptFunctions::round in phamlp/sass/script/SassScriptFunctions.php
* Rounds a number to the nearest whole number. * For example: * round(10.4px) => 10px * round(10.6px) => 11px * *
SassScriptFunctions::unitless in phamlp/sass/script/SassScriptFunctions.php
* Inspects the unit of the number, returning a boolean indicating if it is * unitless. *
SassScriptFunctions::units in phamlp/sass/script/SassScriptFunctions.php
* Inspects the units of the number, returning it as a quoted string. *