gems.compass-core-1.0.3.stylesheets.compass._configuration.scss Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sass-maven-plugin Show documentation
Show all versions of sass-maven-plugin Show documentation
A Maven Plugin that compiles Sass files.
$project-path: null !default;
$debug-configuration: false !default;
$compass-initialized: false !default;
$compass-configured: false !default;
@mixin debug-compass-configuration {
@if $debug-configuration {
/* Compass Configuration: */
@each $setting, $value in compass-configuration() {
/* #{$setting}: #{inspect($value)} */
}
}
}
// This mixin resets the compass configuration
// and then initializes it with the sass options
// set in the environment. It is immediately called during import.
// It's unlikely you'll need to call this mixin yourself.
@mixin compass-initializer($project-path: $project-path) {
@if not $compass-initialized and not using-compass-compiler() {
$default-configuration: reset-configuration();
$default-configuration: add-sass-configuration($project-path);
}
$compass-initialized: true !global;
@include debug-compass-configuration;
}
@include compass-initializer;
// `$options`:
// A map of compass configuration options.
// E.g. @include compass-configuration((asset-host:
// Keywords style ar
// `$reconfigure`:
// When unset, if compass-configuration is called more than once, a warning will
// be issued and all calls after the first will be ignored.
// When set to `false`, all subsequent calls will be ignored without a warning.
// When set to `true`, the configuration will be added to any existing configuration.
@mixin compass-configuration($options: (), $reconfigure: null, $arguments...) {
@if not at-stylesheet-root() {
// this should be @error once that exists.
@warn "include compass-configuration from the root level of your stylesheet."
}
@if not $compass-configured or $reconfigure {
$options: map-merge($options, keywords($arguments));
@if length($arguments) > 0 {
@warn "compass-configuration accepts keyword arguments or a single map of options. Got: #{inspect($arguments)}."
}
$invoke: add-configuration($options);
@include debug-compass-configuration;
$compass-configured: true !global;
} @else if $reconfigure == null {
@warn "Compass was already configured for this stylesheet."
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy