compass-susy-plugin 0.7.0.pre5 → 0.7.0.pre6

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.7.0.pre5
1
+ 0.7.0.pre6
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{compass-susy-plugin}
5
- s.version = "0.7.0.pre5"
5
+ s.version = "0.7.0.pre6"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Eric Meyer"]
@@ -42,10 +42,10 @@
42
42
  // font size should use up. Does not have to be an integer, but it defaults
43
43
  // to the smallest integer that is large enough to fit the font.
44
44
  // Use !from_size to adjust from a non-base font-size.
45
- =adjust-font-size-to(!to_size, !lines = ceil(!font_size / !base_line_height), !from_size = !base_font_size)
45
+ =adjust-font-size-to(!to_size, !lines = ceil(!to_size / !base_line_height), !from_size = !base_font_size)
46
46
  font-size= 1em * !to_size / !from_size
47
- +adjust-leading-to(!lines, !font_size)
48
-
47
+ +adjust-leading-to(!lines, !to_size)
48
+
49
49
  =adjust-leading-to(!lines, !font_size = !base_font_size)
50
50
  line-height= 1em * !lines * !base_line_height / !font_size
51
51
 
@@ -94,4 +94,8 @@
94
94
  // Apply both leading and trailing rhythm borders
95
95
  =horizontal-borders(!width = 1px, !lines = 1, !font_size = !base_font_size, !border_style = !default_rhythm_border_style)
96
96
  +leading-border(!width, !lines, !font_size, !border_style)
97
- +trailing-border(!width, !lines, !font_size, !border_style)
97
+ +trailing-border(!width, !lines, !font_size, !border_style)
98
+
99
+ =h-borders(!width = 1px, !lines = 1, !font_size = !base_font_size, !border_style = !default_rhythm_border_style)
100
+ +horizontal-borders(!width, !lines, !font_size, !border_style)
101
+
@@ -41,8 +41,8 @@
41
41
 
42
42
  // COLORS
43
43
  // Set any colors you will need later.
44
- !base = #194C66
45
- !alt = #CC6633
44
+ !base = black
45
+ !alt = #005498
46
46
 
47
47
 
48
48
  // FONTS
@@ -4,4 +4,22 @@
4
4
  <link href="/stylesheets/print.css" media="print" rel="stylesheet" type="text/css" />
5
5
 
6
6
 
7
- @import defaults.sass
7
+ @import defaults.sass
8
+
9
+ =print()
10
+ nav
11
+ display: none
12
+
13
+ *
14
+ float: none !important
15
+
16
+ body
17
+ +serif-family
18
+ font-size: 12pt
19
+ background: white
20
+ color: black
21
+
22
+ a:link:after, a:visited:after
23
+ content: " (" attr(href) ") "
24
+
25
+ +print
@@ -9,7 +9,11 @@
9
9
 
10
10
  /* @group STRUCTURE */
11
11
 
12
+ +susy
12
13
 
14
+ // change '#page' to match your HTML container element(s)
15
+ #page
16
+ +container
13
17
 
14
18
  /* @end */
15
19
 
metadata CHANGED
@@ -6,8 +6,8 @@ version: !ruby/object:Gem::Version
6
6
  - 0
7
7
  - 7
8
8
  - 0
9
- - pre5
10
- version: 0.7.0.pre5
9
+ - pre6
10
+ version: 0.7.0.pre6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Eric Meyer