seasons 0.9.3.beta2 → 0.9.3.beta3

Sign up to get free protection for your applications and to get access to all the features.
data/seasons.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{seasons}
5
- s.version = "0.9.3.beta2"
5
+ s.version = "0.9.3.beta3"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.3.5")
8
8
  s.authors = ["Scott Kellum"]
@@ -35,7 +35,7 @@ Gem::Specification.new do |s|
35
35
  s.homepage = %q{http://www.treesaver.net/}
36
36
  s.require_paths = ["lib"]
37
37
  s.rubyforge_project = %q{seasons}
38
- s.rubygems_version = %q{0.9.3.beta2}
38
+ s.rubygems_version = %q{0.9.3.beta3}
39
39
  s.summary = %q{The Compass variant of the Seasons framework to style Treesaver.}
40
40
  s.add_dependency(%q<compass>, ["~> 0.11"])
41
41
  end
@@ -490,30 +490,39 @@ $prefixes: -webkit- -moz- -ms- -o-
490
490
  -o-border-#{$top}-#{$left}-radius: $borderradius
491
491
  border-#{$top}-#{$left}-radius: $borderradius
492
492
 
493
- =gradient($startcolor, $endcolor, $startpos: top left, $endpos: bottom left)
493
+ =gradient($startcolor, $endcolor, $startpos: top)
494
494
  background-color: $startcolor / 2 + $endcolor / 2
495
495
  $vertical: false
496
496
  $horizontal: false
497
- @if "#{$startpos} #{$endpos}" == "top left bottom left"
497
+ @if $startpos == "top"
498
498
  $vertical: true
499
- @if "#{$startpos} #{$endpos}" == "top right bottom right"
500
- $vertical: true
501
- @if "#{$startpos} #{$endpos}" == "top left top right"
502
- $horizontal: true
503
- @if "#{$startpos} #{$endpos}" == "bottom left bottom right"
499
+ background-image: -webkit-gradient(linear, top left, bottom left, from($startcolor), to($endcolor))
500
+ @if $startpos == "left"
504
501
  $horizontal: true
502
+ background-image: -webkit-gradient(linear, top left, top right, from($startcolor), to($endcolor))
503
+ @if $startpos == "bottom"
504
+ background-image: -webkit-gradient(linear, bottom left, top left, from($startcolor), to($endcolor))
505
+ @if $startpos == "right"
506
+ background-image: -webkit-gradient(linear, top right, top left, from($startcolor), to($endcolor))
507
+ @if $startpos == "top left"
508
+ background-image: -webkit-gradient(linear, $startpos, bottom right, from($startcolor), to($endcolor))
509
+ @if $startpos == "top right"
510
+ background-image: -webkit-gradient(linear, $startpos, bottom left, from($startcolor), to($endcolor))
511
+ @if $startpos == "bottom left"
512
+ background-image: -webkit-gradient(linear, $startpos, top right, from($startcolor), to($endcolor))
513
+ @if $startpos == "bottom right"
514
+ background-image: -webkit-gradient(linear, $startpos, top left, from($startcolor), to($endcolor))
505
515
  @if $vertical
506
516
  filter: unquote("progid:DXImageTransform.Microsoft.gradient(startColorstr='")#{$startcolor}unquote("', endColorstr='")#{$endcolor}unquote("')")
507
517
  -ms-filter: unquote("progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$startcolor}', endColorstr='#{$endcolor}')")
508
518
  @if $horizontal
509
- filter: unquote("progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr='")#{$startcolor}unquote("', endColorstr='")#{$endcolor}unquote("')")
510
- -ms-filter: unquote("progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr='#{$startcolor}', endColorstr='#{$endcolor}')")
511
- background-image: -webkit-gradient(linear, left top, left bottom, from($startcolor), to($endcolor))
512
- background-image: -webkit-linear-gradient(top, $startcolor, $endcolor)
513
- background-image: -moz-linear-gradient(top, $startcolor, $endcolor)
514
- background-image: -ms-linear-gradient(top, $startcolor, $endcolor)
515
- background-image: -o-linear-gradient(top, $startcolor, $endcolor)
516
- background-image: linear-gradient(top, $startcolor, $endcolor)
519
+ filter: unquote("progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr='")#{$startcolor}unquote("', endColorstr='")#{$endcolor}unquote("')")
520
+ -ms-filter: unquote("progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr='#{$startcolor}', endColorstr='#{$endcolor}')")
521
+ background-image: -webkit-linear-gradient($startpos, $startcolor, $endcolor)
522
+ background-image: -moz-linear-gradient($startpos, $startcolor, $endcolor)
523
+ background-image: -ms-linear-gradient($startpos, $startcolor, $endcolor)
524
+ background-image: -o-linear-gradient($startpos, $startcolor, $endcolor)
525
+ background-image: linear-gradient($startpos, $startcolor, $endcolor)
517
526
 
518
527
  =hgradient($left, $right)
519
528
  @warn "@mixin hgradient will be depruciated in 0.9.3.beta4 and later."
@@ -5,12 +5,12 @@
5
5
  // HTML5 Doctor...................http://html5doctor.com
6
6
  // and the HTML5 Boilerplate......http://html5boilerplate.com
7
7
 
8
- html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, a, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, menu, time, mark, audio, video
8
+ html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, menu, time, mark, audio, video
9
9
  margin: 0
10
10
  padding: 0
11
11
  border: 0
12
12
  outline: 0
13
- font-size: 1em
13
+ font-size: 100%
14
14
  vertical-align: baseline
15
15
  background: transparent
16
16
  cursor: default
@@ -26,12 +26,35 @@ blockquote:before, blockquote:after, q:before, q:after
26
26
  content: none
27
27
 
28
28
  a
29
+ margin: 0
30
+ padding: 0
31
+ font-size: 100%
32
+ vertical-align: baseline
33
+ background: transparent
29
34
  color: inherit
30
35
  text-decoration: inherit
31
36
 
32
37
  del
33
38
  text-decoration: line-through
34
39
 
40
+ abbr[title], dfn[title]
41
+ border-bottom: 1px dotted #000
42
+ cursor: help
43
+
44
+ .zoomable, .zoomable *
45
+ cursor: -webkit-zoom-in
46
+ cursor: -moz-zoom-in
47
+ cursor: -ms-zoom-in
48
+ cursor: -o-zoom-in
49
+ cursor: zoom-in
50
+
51
+ .lightbox, .lightbox *
52
+ cursor: -webkit-zoom-out
53
+ cursor: -moz-zoom-out
54
+ cursor: -ms-zoom-out
55
+ cursor: -o-zoom-out
56
+ cursor: zoom-out
57
+
35
58
 
36
59
  // tables still need cellspacing="0" in the markup
37
60
 
@@ -58,8 +81,8 @@ input, select
58
81
  pre
59
82
  white-space: pre /* CSS2 */
60
83
  white-space: pre-wrap /* CSS 2.1 */
61
- word-wrap: break-word /* IE */
62
84
  white-space: pre-line /* CSS 3 (and 2.1 as well, actually) */
85
+ word-wrap: break-word /* IE */
63
86
 
64
87
 
65
88
  input[type="radio"]
@@ -75,7 +98,7 @@ select, input, textarea
75
98
 
76
99
  table
77
100
  font-size: inherit
78
- font: 1em
101
+ font: 100%
79
102
 
80
103
 
81
104
  // Accessible focus treatment
@@ -91,32 +114,7 @@ strong, th
91
114
  font-weight: bold
92
115
 
93
116
  td, td img
94
- vertical-align: top
95
-
96
- abbr[title], dfn[title]
97
- cursor: help
98
-
99
- .zoomable, .zoomable *
100
- cursor: -webkit-zoom-in
101
- cursor: -moz-zoom-in
102
- cursor: -ms-zoom-in
103
- cursor: -o-zoom-in
104
- cursor: zoom-in
105
-
106
- .lightbox, .lightbox *
107
- cursor: -webkit-zoom-out
108
- cursor: -moz-zoom-out
109
- cursor: -ms-zoom-out
110
- cursor: -o-zoom-out
111
- cursor: zoom-out
112
-
113
- // hand cursor on clickable elements, text on editable text only, default on everything else.
114
- input
115
- cursor: auto
116
- textarea
117
- cursor: text
118
- a, a *, .clickable, label, input[type=button], input[type=submit], input[type=reset], button, #nextPage, #previousPage, #nextPage *, #previousPage *
119
- cursor: pointer
117
+ vertical-align: top
120
118
 
121
119
 
122
120
  // Make sure sup and sub don't screw with your line-heights
@@ -137,6 +135,14 @@ sub
137
135
  pre, code, kbd, samp
138
136
  font-family: monospace, sans-serif
139
137
 
138
+ // hand cursor on clickable elements, text on editable text only, default on everything else.
139
+ input
140
+ cursor: auto
141
+ textarea
142
+ cursor: text
143
+ a, a *, .clickable, label, input[type=button], input[type=submit], input[type=reset], button, #nextPage, #previousPage, #nextPage *, #previousPage *
144
+ cursor: pointer
145
+
140
146
 
141
147
  // Webkit browsers add a 2px margin outside the chrome of form elements
142
148
 
@@ -169,11 +175,11 @@ button
169
175
  content: "\0020"
170
176
  display: block
171
177
  height: 0
172
- overflow: hidden
178
+ overflow: hidden
173
179
  .clearfix:after
174
- clear: both
180
+ clear: both
175
181
  .clearfix
176
- zoom: 1
182
+ zoom: 1
177
183
 
178
184
  ins
179
185
  background-color: #fcd700
metadata CHANGED
@@ -6,8 +6,8 @@ version: !ruby/object:Gem::Version
6
6
  - 0
7
7
  - 9
8
8
  - 3
9
- - beta2
10
- version: 0.9.3.beta2
9
+ - beta3
10
+ version: 0.9.3.beta3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Scott Kellum