stipe 0.0.4.0 → 0.0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/readme.md +3 -0
- data/stylesheets/stipe/stipe/_mixins.scss +6 -6
- metadata +1 -1
data/readme.md
CHANGED
|
@@ -16,6 +16,9 @@ Stipe is a Compass Extension, so Compass is set as a depdency. You will need to
|
|
|
16
16
|
For [reasons explained](/Anotheruiguy/toadstool/blob/master/doc-src/exploited-bug.md) please continue using the alpha gem and upgrading to Sass 3.2 will break Toadstool and Stipe.
|
|
17
17
|
|
|
18
18
|
# Stipe Changelog
|
|
19
|
+
## 0.0.4.1
|
|
20
|
+
* Addressed bug with vendor prefix variables
|
|
21
|
+
|
|
19
22
|
## 0.0.4.0
|
|
20
23
|
* Deprecated legacy `@mixin placeholder` Will be deleted from future releases of the library
|
|
21
24
|
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
// required default value to for vendor prefix support
|
|
10
10
|
// -----------------------------------------------------
|
|
11
11
|
$prefix_defaults: -moz- -webkit- -o- -ms- '' !default;
|
|
12
|
-
$webkit_support: -webkit- !default;
|
|
13
|
-
$moz_support: -moz- !default;
|
|
14
|
-
$ms_support: -ms- !default;
|
|
15
|
-
$moz_webkit_support: -moz- -webkit- !default;
|
|
16
|
-
$moz_ms_support: -moz- -ms- !default;
|
|
17
|
-
$webkit_ms_support: -webkit- -ms- !default;
|
|
12
|
+
$webkit_support: -webkit- '' !default;
|
|
13
|
+
$moz_support: -moz- '' !default;
|
|
14
|
+
$ms_support: -ms- '' !default;
|
|
15
|
+
$moz_webkit_support: -moz- -webkit- '' !default;
|
|
16
|
+
$moz_ms_support: -moz- -ms- '' !default;
|
|
17
|
+
$webkit_ms_support: -webkit- -ms- '' !default;
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
|