bourbon 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,8 @@
1
1
  // Custom Functions
2
2
  @import "functions/golden-ratio";
3
- @import "functions/tint-shade";
3
+ @import "functions/grid-width";
4
4
  @import "functions/linear-gradient";
5
+ @import "functions/tint-shade";
5
6
 
6
7
  // CSS3 Mixins
7
8
  @import "css3/animation";
@@ -22,7 +22,7 @@
22
22
  background-image: -moz-linear-gradient($pos, $full);
23
23
  background-image: -ms-linear-gradient($pos, $full);
24
24
  background-image: -o-linear-gradient($pos, $full);
25
- background-image: linear-gradient($pos, $full);
25
+ background-image: unquote("linear-gradient(#{$pos}, #{$full})");
26
26
  }
27
27
 
28
28
  // Usage: Gradient position is optional, default is top. Position can be a degree. Color stops are optional as well.
@@ -30,4 +30,3 @@
30
30
  // @include linear-gradient(#1e5799, #2989d8);
31
31
  // @include linear-gradient(top, #1e5799 0%, #2989d8 50%);
32
32
  // @include linear-gradient(50deg, rgba(10, 10, 10, 0.5) 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%);
33
-
@@ -14,4 +14,4 @@ module Bourbon
14
14
  end
15
15
  end
16
16
 
17
- require "bourbon/sass_extensions"
17
+ require File.join(File.dirname(__FILE__), "/bourbon/sass_extensions")
data/readme.md CHANGED
@@ -55,9 +55,23 @@ Preliminary step: clone this repo and cd into the directory.
55
55
  sass --watch stylesheets/sass:stylesheets -r ./stylesheets/sass/bourbon/lib/bourbon.rb
56
56
 
57
57
 
58
- #Using Bourbon Vanilla Mixins
58
+ #Browser support
59
+ Bourbon aims to provide support for CSS3 properties that are not yet fully supported in modern stable browsers.
60
+ **Pull requests:** A general rule when considering a new mixin: Do the following browsers *only* support the CSS3 property using vendor specific prefixes? If the answer is yes, there is a high chance the mixin will be accepted via a pull request.
61
+
62
+ * Firefox 3.6+
63
+ * Safari 4.0+
64
+ * Chrome 4.0+
65
+ * Opera 10+
66
+ * IE 9+
67
+
68
+ Bourbon does not intend to support IE filters.
69
+
70
+
71
+ #Using Bourbon Mixins
59
72
  Below are a few examples of mixin usage. Note that these are just a few, explore the repo to find out more.
60
73
 
74
+
61
75
  ###Animation
62
76
 
63
77
  The animation mixins support comma separated lists of values, which allows different transitions for individual properties to be described in a single style rule. Each value in the list corresponds to the value at that same position in the other properties.
@@ -344,7 +358,8 @@ The real power of the mixin is revealed when you pass in the optional color argu
344
358
 
345
359
  ##Help Out
346
360
 
347
- Currently the project is a work in progress. Feel free to help out.
361
+ Currently the project is a work in progress. Feel free to help out.
362
+ **Pull requests:** See *Browser Support* in this readme for more info
348
363
 
349
364
  Credits
350
365
  -------
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 1
9
- version: 0.1.1
8
+ - 2
9
+ version: 0.1.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Phil LaPier
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2011-07-18 00:00:00 -04:00
19
+ date: 2011-07-27 00:00:00 -04:00
20
20
  default_executable:
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency