survivalkit 1.0.beta.5 → 1.0.beta.6
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.markdown +3 -0
- data/lib/survivalkit.rb +1 -1
- data/stylesheets/survivalkit/mixins/_typography.scss +2 -2
- metadata +2 -2
data/CHANGELOG.markdown
CHANGED
data/lib/survivalkit.rb
CHANGED
@@ -85,12 +85,12 @@
|
|
85
85
|
}
|
86
86
|
|
87
87
|
// replace OL > LI numbers so they can be styled
|
88
|
-
@mixin replace-list-numbers {
|
88
|
+
@mixin replace-list-numbers($decimal: false) {
|
89
89
|
counter-reset: li;
|
90
90
|
list-style-type: none;
|
91
91
|
li {
|
92
92
|
&:before {
|
93
|
-
content: counter(li)
|
93
|
+
content: counter(li) $decimal;
|
94
94
|
counter-increment: li;
|
95
95
|
}
|
96
96
|
}
|