Sha256: 45315489cf9dba86d1d6043d199768e60c4e3b705d7cfa3c538f54276909f802

Contents?: true

Size: 1.57 KB

Versions: 4

Compression:

Stored size: 1.57 KB

Contents

/**
 * @group Internal Variables
**/

/**
 * Use development mode to silence fatal errors
 *
 * @access private
 *
 * @type Bool
 */
$flint__development-mode: false !global;

/**
 * Set global variable to check if foundation has been set
 *
 * @access private
 *
 * @type String
 */
$flint__foundation: "non-existent" !global;

/**
 * Keep count of all instances
 *
 * @access private
 *
 * @type Number
 */
$flint__instance-count: 0 !global;

/**
 * Keep map of all instances
 *
 * @access private
 *
 * @type Map
 */
$flint__instances: () !global;

/**
 * Font size for em calculation
 *
 * @access private
 *
 * @type Number
 */
$flint__base-font-size: 16px !global;

/**
 * Detect if Ruby functions are available
 *
 * @access private
 *
 * @type Bool
 */
$flint__use-ruby-functions: if(flint-use-ruby-functions() == true, true, false) !global;

/**
 * Global syntax support
 *
 * @access private
 *
 * @type String
 */
$flint__support-syntax: flint-get-value("settings", "support-syntax") !global;

/**
 * Gather all keys, breakpoints and column counts
 *
 * @access private
 *
 * @type List
 */
$flint__all-keys: flint-get-all-keys() !global;
$flint__all-breakpoints: flint-get-all-breakpoints() !global;
$flint__all-columns: flint-get-all-columns() !global;

/**
 * Cache selector instance lists
 *
 * @access private
 *
 * @type Map
 */
$flint__cached-instances: () !global;

/**
 * Cache calculated values
 *
 * @access private
 *
 * @type Map
 */
$flint__cached-values: () !global;

/**
 * Cache calculation results
 *
 * @access private
 *
 * @type Map
 */
$flint__cache-results: () !global;

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
flint-gs-2.0.6 stylesheets/flint/globals/_globals.scss
flint-gs-2.0.5 stylesheets/flint/globals/_globals.scss
flint-gs-2.0.4 stylesheets/flint/globals/_globals.scss
flint-gs-2.0.3 stylesheets/flint/globals/_globals.scss