sass 3.1.0.alpha.259 → 3.1.0.alpha.261
Sign up to get free protection for your applications and to get access to all the features.
- data/REVISION +1 -1
- data/VERSION +1 -1
- data/lib/sass/script/functions.rb +4 -4
- data/lib/sass/tree/visitors/base.rb +1 -1
- metadata +1 -1
data/REVISION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
6c4103830c546f347dbed1be211dec4e7ab0f591
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.1.0.alpha.
|
1
|
+
3.1.0.alpha.261
|
@@ -90,7 +90,7 @@ module Sass::Script
|
|
90
90
|
#
|
91
91
|
# ## Other Color Functions
|
92
92
|
#
|
93
|
-
# \{#
|
93
|
+
# \{#adjust_color adjust-color($color, \[$red\], \[$green\], \[$blue\], \[$hue\], \[$saturation\], \[$lightness\], \[$alpha\]}
|
94
94
|
# : Increase or decrease any of the components of a color.
|
95
95
|
#
|
96
96
|
# \{#scale_color scale-color($color, \[$red\], \[$green\], \[$blue\], \[$hue\], \[$saturation\], \[$lightness\], \[$alpha\]}
|
@@ -796,9 +796,9 @@ module Sass::Script
|
|
796
796
|
declare :adjust_color, [:color], :var_kwargs => true
|
797
797
|
|
798
798
|
# Scales one or more properties of a color by a percentage value.
|
799
|
-
# Unlike \{#adjust}, which changes a color's properties by fixed amounts,
|
800
|
-
# \{#scale} fluidly changes them based on how high or low they already are.
|
801
|
-
# That means that lightening an already-light color with \{#scale}
|
799
|
+
# Unlike \{#adjust_color adjust-color}, which changes a color's properties by fixed amounts,
|
800
|
+
# \{#scale_color scale-color} fluidly changes them based on how high or low they already are.
|
801
|
+
# That means that lightening an already-light color with \{#scale_color scale-color}
|
802
802
|
# won't change the lightness much,
|
803
803
|
# but lightening a dark color by the same amount will change it more dramatically.
|
804
804
|
# This has the benefit of making `scale-color($color, ...)` have a similar effect
|
@@ -5,7 +5,7 @@ module Sass::Tree::Visitors
|
|
5
5
|
# The abstract base class for Sass visitors.
|
6
6
|
# Visitors should extend this class,
|
7
7
|
# then implement `visit_*` methods for each node they care about
|
8
|
-
# (e.g. `visit_rule` for {RuleNode} or `visit_for` for {
|
8
|
+
# (e.g. `visit_rule` for {RuleNode} or `visit_for` for {ForNode}).
|
9
9
|
# These methods take the node in question as argument.
|
10
10
|
# They may `yield` to visit the child nodes of the current node.
|
11
11
|
#
|