bourbon 1.0.4 → 1.1.0

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.
@@ -7,6 +7,7 @@
7
7
  // CSS3 Mixins
8
8
  @import "css3/animation";
9
9
  @import "css3/background-image";
10
+ @import "css3/border-image";
10
11
  @import "css3/border-radius";
11
12
  @import "css3/box-shadow";
12
13
  @import "css3/box-sizing";
@@ -0,0 +1,7 @@
1
+ @mixin border-image ($image) {
2
+ -webkit-border-image: $image;
3
+ -moz-border-image: $image;
4
+ -ms-border-image: $image;
5
+ -o-border-image: $image;
6
+ border-image: $image;
7
+ }
data/readme.md CHANGED
@@ -113,6 +113,13 @@ The background-image mixin is helpful for chaining multiple comma delimited back
113
113
  @include background-image(linear-gradient(hsla(0, 100%, 100%, 0.25) 0%, hsla(0, 100%, 100%, 0.08) 50%, transparent 50%), linear-gradient(#4e7ba3, darken(#4e7ba4, 10%)) );
114
114
 
115
115
 
116
+ ### Border-image
117
+
118
+ border-image supports short-hand notation.
119
+
120
+ @include border-image(url(border.png) 27 round);
121
+
122
+
116
123
  ### Border Radius
117
124
 
118
125
  border-radius will also take short-hand notation.
@@ -367,6 +374,7 @@ These CSS cubic-bezier timing functions are variables that can be used with CSS3
367
374
  @ animation-timing-function(*args)
368
375
 
369
376
  @ background-image(*args)
377
+ @ border-image(*args)
370
378
  @ border-radius(*args)
371
379
  @ box-shadow(*args)
372
380
  @ box-sizing(*args)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bourbon
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.1.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -19,11 +19,11 @@ authors:
19
19
  autorequire:
20
20
  bindir: bin
21
21
  cert_chain: []
22
- date: 2011-10-14 00:00:00.000000000Z
22
+ date: 2011-10-16 00:00:00.000000000Z
23
23
  dependencies:
24
24
  - !ruby/object:Gem::Dependency
25
25
  name: sass
26
- requirement: &70220464768440 !ruby/object:Gem::Requirement
26
+ requirement: &70205360452500 !ruby/object:Gem::Requirement
27
27
  none: false
28
28
  requirements:
29
29
  - - ! '>='
@@ -31,7 +31,7 @@ dependencies:
31
31
  version: '3.1'
32
32
  type: :runtime
33
33
  prerelease: false
34
- version_requirements: *70220464768440
34
+ version_requirements: *70205360452500
35
35
  description: ! 'The purpose of Bourbon Vanilla Sass Mixins is to provide a comprehensive
36
36
  framework of
37
37
 
@@ -64,6 +64,7 @@ files:
64
64
  - app/assets/stylesheets/addons/_timing-functions.scss
65
65
  - app/assets/stylesheets/css3/_animation.scss
66
66
  - app/assets/stylesheets/css3/_background-image.scss
67
+ - app/assets/stylesheets/css3/_border-image.scss
67
68
  - app/assets/stylesheets/css3/_border-radius.scss
68
69
  - app/assets/stylesheets/css3/_box-shadow.scss
69
70
  - app/assets/stylesheets/css3/_box-sizing.scss