survivalkit 1.0.beta.5 → 1.0.beta.6

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/CHANGELOG.markdown CHANGED
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.beta.6 - August 20, 2012
4
+ * update replace-list-numbers mixin
5
+
3
6
  ## 1.0.beta.5 - August 20, 2012
4
7
  * update html templates with nested menu and line measure guides
5
8
 
data/lib/survivalkit.rb CHANGED
@@ -6,7 +6,7 @@ Compass::Frameworks.register("survivalkit", :path => "#{File.dirname(__FILE__)}/
6
6
 
7
7
  module SurvivalKit
8
8
 
9
- VERSION = "1.0.beta.5"
9
+ VERSION = "1.0.beta.6"
10
10
  DATE = "2012-08-20"
11
11
 
12
12
  end
@@ -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
  }
metadata CHANGED
@@ -6,8 +6,8 @@ version: !ruby/object:Gem::Version
6
6
  - 1
7
7
  - 0
8
8
  - beta
9
- - 5
10
- version: 1.0.beta.5
9
+ - 6
10
+ version: 1.0.beta.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Mason Wendell