doohickey 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.0
1
+ 0.2.1
@@ -1,5 +1,12 @@
1
1
  =linear-gradient(!color_stops, !start = "top")
2
2
  !end = grad_opposite_position(!start)
3
- background-color: #{first_color_stop(!color_stops)}
4
- background-image: -webkit-gradient(linear, #{grad_point(!start)}, #{grad_point(!end)}, #{grad_color_stops(!color_stops)})
5
- background-image: -moz-linear-gradient(#{!start}, #{!color_stops})
3
+ background: -webkit-gradient(linear, #{grad_point(!start)}, #{grad_point(!end)}, #{grad_color_stops(!color_stops)})
4
+ background: -moz-linear-gradient(#{!start}, #{!color_stops})
5
+
6
+ =flare-gradient(!horizontal_color_stops, !vertical_color_stops)
7
+ !horizontal_start = "left center"
8
+ !horizontal_end = grad_opposite_position(!horizontal_start)
9
+ !vertical_start = "center top"
10
+ !vertical_end = grad_opposite_position(!vertical_start)
11
+ background: -moz-linear-gradient(#{!horizontal_start}, #{!horizontal_color_stops}), -moz-linear-gradient(#{!vertical_start}, #{!vertical_color_stops})
12
+ background: -webkit-gradient(linear, #{grad_point(!horizontal_start)}, #{grad_point(!horizontal_end)}, #{grad_color_stops(!horizontal_color_stops)}), -webkit-gradient(linear, #{grad_point(!vertical_start)}, #{grad_point(!vertical_end)}, #{grad_color_stops(!vertical_color_stops)})
@@ -2,6 +2,16 @@
2
2
  -webkit-box-shadow= !color !horizontal_offset !vertical_offset !spread
3
3
  -moz-box-shadow= !color !horizontal_offset !vertical_offset !spread
4
4
  box-shadow= !color !horizontal_offset !vertical_offset !spread
5
-
5
+
6
+ =inset-box-shadow(!color, !horizontal_offset, !vertical_offset, !spread)
7
+ -webkit-box-shadow= !color !horizontal_offset !vertical_offset !spread inset
8
+ -moz-box-shadow= !color !horizontal_offset !vertical_offset !spread inset
9
+ box-shadow= !color !horizontal_offset !vertical_offset !spread inset
10
+
11
+ =no-box-shadow
12
+ -webkit-box-shadow= none !important
13
+ -moz-box-shadow= none !important
14
+ box-shadow= none !important
15
+
6
16
  =text-shadow(!color, !horizontal_offset, !vertical_offset, !spread)
7
- text-shadow= !horizontal_offset !vertical_offset !spread !color
17
+ text-shadow= !horizontal_offset !vertical_offset !spread !color
@@ -1,3 +1,69 @@
1
+ =html5-global-reset
2
+ 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, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video
3
+ margin: 0
4
+ padding: 0
5
+ border: 0
6
+ outline: 0
7
+ font-size: 100%
8
+ vertical-align: baseline
9
+ background: transparent
10
+
11
+ body
12
+ line-height: 1
13
+
14
+ article,aside,details,figcaption,figure, footer,header,hgroup,menu,nav,section
15
+ display: block
16
+
17
+ nav ul
18
+ list-style: none
19
+
20
+ blockquote, q
21
+ quotes: none
22
+
23
+ blockquote:before, blockquote:after, q:before, q:after
24
+ content: ''
25
+ content: none
26
+
27
+ a
28
+ margin: 0
29
+ padding: 0
30
+ font-size: 100%
31
+ vertical-align: baseline
32
+ background: transparent
33
+
34
+ ins
35
+ background-color: #ff9
36
+ color: #000
37
+ text-decoration: none
38
+
39
+ mark
40
+ background-color: #ff9
41
+ color: #000
42
+ font-style: italic
43
+ font-weight: bold
44
+
45
+ del
46
+ text-decoration: line-through
47
+
48
+ abbr[title], dfn[title]
49
+ border-bottom: 1px dotted inherit
50
+ cursor: help
51
+
52
+ table
53
+ border-collapse: collapse
54
+ border-spacing: 0
55
+
56
+ hr
57
+ display: block
58
+ height: 1px
59
+ border: 0
60
+ border-top: 1px solid #cccccc
61
+ margin: 1em 0
62
+ padding: 0
63
+
64
+ input, select
65
+ vertical-align: middle
66
+
1
67
  =global-reset
2
68
  html, body, div, span, applet, object, iframe,
3
69
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
data/doohickey.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{doohickey}
8
- s.version = "0.2.0"
8
+ s.version = "0.2.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Trond Arve Nordheim"]
12
- s.date = %q{2010-08-30}
12
+ s.date = %q{2010-09-29}
13
13
  s.description = %q{Contains SASS mixins and a default SASS configuration for use in Ruby on Rails projects}
14
14
  s.email = %q{tanordheim@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -44,6 +44,7 @@ Gem::Specification.new do |s|
44
44
  "lib/doohickey.rb",
45
45
  "lib/doohickey/engine.rb",
46
46
  "lib/doohickey/sass_extensions/gradients.rb",
47
+ "rails/init.rb",
47
48
  "tasks/doohickey_tasks.rake",
48
49
  "test/doohickey_test.rb",
49
50
  "test/test_helper.rb",
data/init.rb CHANGED
@@ -1 +0,0 @@
1
- require "doohickey"
data/rails/init.rb ADDED
@@ -0,0 +1,2 @@
1
+ require "doohickey"
2
+ Doohickey::Initializer.initialize
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 2
8
- - 0
9
- version: 0.2.0
8
+ - 1
9
+ version: 0.2.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Trond Arve Nordheim
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-08-30 00:00:00 +02:00
17
+ date: 2010-09-29 00:00:00 +02:00
18
18
  default_executable:
19
19
  dependencies: []
20
20
 
@@ -55,6 +55,7 @@ files:
55
55
  - lib/doohickey.rb
56
56
  - lib/doohickey/engine.rb
57
57
  - lib/doohickey/sass_extensions/gradients.rb
58
+ - rails/init.rb
58
59
  - tasks/doohickey_tasks.rake
59
60
  - test/doohickey_test.rb
60
61
  - test/test_helper.rb