sass-tools 0.1.7 → 0.1.8

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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.7
1
+ 0.1.8
@@ -1,4 +1,5 @@
1
1
  @import "sass-tools/blog";
2
2
  @import "sass-tools/forms";
3
3
  @import "sass-tools/images";
4
- @import "sass-tools/tools";
4
+ @import "sass-tools/tools";
5
+ @import "sass-tools/navigation";
@@ -6,7 +6,7 @@
6
6
  @mixin image-link($image, $inline:false) {
7
7
  @include image-background($image, $inline);
8
8
  cursor:pointer;
9
- @extend .imagelink-exts;
9
+ @extend .imagelink-ext;
10
10
  }
11
11
 
12
12
  /*
@@ -0,0 +1,34 @@
1
+ /*
2
+ @TODO: Add docs to horizontal-navigation!
3
+ */
4
+ @mixin horizontal-navigation {
5
+ background:red;
6
+ li:first-child {
7
+ border-left:1px solid #CCCCCC;
8
+ }// li:first-child
9
+ li:last-child {
10
+ border-right:1px solid #FFFFFF;
11
+ } //li:last-child
12
+ li, li a {
13
+ @include text-shadow(#FFFFFF, 0px, 0px, 14px);
14
+ display:block;
15
+ float:left;
16
+ line-height:35px;
17
+ margin:0;
18
+ a {
19
+ border:{
20
+ left: 1px solid #FFFFFF;
21
+ right: 1px solid #CCCCCC;
22
+ };
23
+ padding:0 10px;
24
+ &:hover, &.active {
25
+ color:#FFFFFF;
26
+ @include inline-background(transparent, 'header/general/navi-hover.png', left, top, repeat-x);
27
+ border:{
28
+ right:1px solid #FFFFFF;
29
+ left:1px solid #CCCCCC;
30
+ };
31
+ }
32
+ } //a
33
+ } //li
34
+ }
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{sass-tools}
8
- s.version = "0.1.7"
8
+ s.version = "0.1.8"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Mario 'Kuroir' Ricalde"]
@@ -29,6 +29,7 @@ Gem::Specification.new do |s|
29
29
  "lib/stylesheets/sass-tools/_forms.scss",
30
30
  "lib/stylesheets/sass-tools/_images.scss",
31
31
  "lib/stylesheets/sass-tools/_tools.scss",
32
+ "lib/stylesheets/sass-tools/navigation.scss",
32
33
  "lib/templates/project/_config.scss",
33
34
  "lib/templates/project/manifest.rb",
34
35
  "sass-tools.gemspec",
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sass-tools
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 11
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 7
10
- version: 0.1.7
9
+ - 8
10
+ version: 0.1.8
11
11
  platform: ruby
12
12
  authors:
13
13
  - Mario 'Kuroir' Ricalde
@@ -54,6 +54,7 @@ files:
54
54
  - lib/stylesheets/sass-tools/_forms.scss
55
55
  - lib/stylesheets/sass-tools/_images.scss
56
56
  - lib/stylesheets/sass-tools/_tools.scss
57
+ - lib/stylesheets/sass-tools/navigation.scss
57
58
  - lib/templates/project/_config.scss
58
59
  - lib/templates/project/manifest.rb
59
60
  - sass-tools.gemspec