Sha256: b737045219eea147d48f76dfe173cbd31d1a2ff88614574809ea4f156e8d74cc
Contents?: true
Size: 1.15 KB
Versions: 2
Compression:
Stored size: 1.15 KB
Contents
module Archetype::SassExtensions::Styleguide private # :stopdoc: INHERIT = 'inherit' STYLEGUIDE = 'styleguide' DROP = 'drop' DEFAULT = 'default' REGEX = 'regex' SPECIAL = %w(states selectors) STATES = SPECIAL[0] DROPALL = %w(all true) MESSAGE_PREFIX = "[#{Archetype.name}:{origin}:{phase}] --- `" MESSAGE_SUFFIX = "` ---" # these are unique CSS keys that can be exploited to provide fallback functionality by providing a second value # e.g color: red; color: rgba(255,0,0, 0.8); FALLBACKS = %w(background background-image background-color border border-bottom border-bottom-color border-color border-left border-left-color border-right border-right-color border-top border-top-color clip color layer-background-color outline outline-color white-space extend) # these are mixins that make sense to run multiple times within a block MULTIMIXINS = %w(target-browser) # NOTE: these are no longer used/needed if you're using the map structures ADDITIVES = FALLBACKS + [DROP, INHERIT, STYLEGUIDE] + MULTIMIXINS @@archetype_styleguide_mutex = Mutex.new @@styleguide_themes ||= nil # :startdoc: end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
archetype-1.0.0.alpha.2 | lib/archetype/sass_extensions/functions/styleguide/constants.rb |
archetype-1.0.0.alpha.1 | lib/archetype/sass_extensions/functions/styleguide/constants.rb |