bootstrap-sass-rtl 2.3.0.1 → 2.3.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dc1194b70a7b20f95c2ea76dea0b4b28498363e9
4
- data.tar.gz: 3b208bfe8bc072490c62fee660d6302984398c13
3
+ metadata.gz: d6043338bc3235917b6dfde8976478e137e7dcbe
4
+ data.tar.gz: 202a1f37a80512fa90c8565ea81a62d28287300f
5
5
  SHA512:
6
- metadata.gz: 65fe7d26b0fe347e6d9711265a33da442db6bac19eaba768462777d64518b871c717b685e228de3488d2c129747a015722636d8210bf35a79d563498db60a33e
7
- data.tar.gz: 0094080266ff32106f65c3c724292ce83d94b22ca05e8a66d36b2d658a3242c5e16f24c442e59848b974e7042dd934f39d72fcf718867af8672a75df5611ece6
6
+ metadata.gz: ae5841f6f8918483a4e24b226c8e644c907c4e7ed72c40d26cb39da43dc4201395405c27f5ad3daf78da5b45f42be8f4f0f753d8bc16698a212e7e20bbab6e72
7
+ data.tar.gz: d1d4a54ff5137d93406ddab989d4f774ce3c563eed56512053a6eaf3efbeaf256533477c6f56ab00a0f1c20dd150a0cd03e500caf39c3fd4d42848eb22b6a940
File without changes
@@ -1,7 +1,7 @@
1
1
  module Bootstrap
2
2
  module Sass
3
3
  module Rtl
4
- VERSION = "2.3.0.1"
4
+ VERSION = "2.3.1.0"
5
5
  end
6
6
  end
7
7
  end
@@ -1 +1 @@
1
- @import "bootstrap-rtl/responsive";
1
+ @import "bootstrap-rtl/responsive";
@@ -30,7 +30,7 @@
30
30
  &:focus {
31
31
  color: $grayDark;
32
32
  text-decoration: none;
33
- background-position: 0 -15px;
33
+ background-position: 100% -15px;
34
34
 
35
35
  // transition is only when going to hover/focus, otherwise the background
36
36
  // behind the gradient (there for IE<=9 fallback) gets mismatched
@@ -206,22 +206,22 @@
206
206
  // Single Corner Border Radius
207
207
  @mixin border-top-right-radius($radius) {
208
208
  -webkit-border-top-right-radius: $radius;
209
- -moz-border-radius-topleft: $radius;
209
+ -moz-border-radius-topright: $radius;
210
210
  border-top-right-radius: $radius;
211
211
  }
212
212
  @mixin border-top-left-radius($radius) {
213
213
  -webkit-border-top-left-radius: $radius;
214
- -moz-border-radius-topright: $radius;
214
+ -moz-border-radius-topleft: $radius;
215
215
  border-top-left-radius: $radius;
216
216
  }
217
217
  @mixin border-bottom-left-radius($radius) {
218
218
  -webkit-border-bottom-left-radius: $radius;
219
- -moz-border-radius-bottomright: $radius;
219
+ -moz-border-radius-bottomleft: $radius;
220
220
  border-bottom-left-radius: $radius;
221
221
  }
222
222
  @mixin border-bottom-right-radius($radius) {
223
223
  -webkit-border-bottom-right-radius: $radius;
224
- -moz-border-radius-bottomleft: $radius;
224
+ -moz-border-radius-bottomright: $radius;
225
225
  border-bottom-right-radius: $radius;
226
226
  }
227
227
 
@@ -410,11 +410,11 @@
410
410
  // Gradients
411
411
  @mixin gradient-horizontal($startColor: #555, $endColor: #333) {
412
412
  background-color: $endColor;
413
- background-image: -moz-linear-gradient(right, $startColor, $endColor); // FF 3.6+
413
+ background-image: -moz-linear-gradient(left, $startColor, $endColor); // FF 3.6+
414
414
  background-image: -webkit-gradient(linear, 0 0, 100% 0, from($startColor), to($endColor)); // Safari 4+, Chrome 2+
415
- background-image: -webkit-linear-gradient(right, $startColor, $endColor); // Safari 5.1+, Chrome 10+
416
- background-image: -o-linear-gradient(right, $startColor, $endColor); // Opera 11.10
417
- background-image: linear-gradient(to left, $startColor, $endColor); // Standard, IE10
415
+ background-image: -webkit-linear-gradient(left, $startColor, $endColor); // Safari 5.1+, Chrome 10+
416
+ background-image: -o-linear-gradient(left, $startColor, $endColor); // Opera 11.10
417
+ background-image: linear-gradient(to right, $startColor, $endColor); // Standard, IE10
418
418
  background-repeat: repeat-x;
419
419
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($startColor)}', endColorstr='#{ie-hex-str($endColor)}', GradientType=1); // IE9 and down
420
420
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Bootstrap v2.3.0
2
+ * Bootstrap v2.3.1
3
3
  *
4
4
  * Copyright 2012 Twitter, Inc
5
5
  * Licensed under the Apache License v2.0
@@ -9,55 +9,55 @@
9
9
  */
10
10
 
11
11
  // Core variables and mixins
12
- @import "bootstrap-rtl/variables"; // Modify this for custom colors, font-sizes, etc
13
- @import "bootstrap-rtl/mixins";
12
+ @import "bootstrap/variables"; // Modify this for custom colors, font-sizes, etc
13
+ @import "bootstrap/mixins";
14
14
 
15
15
  // CSS Reset
16
- @import "bootstrap-rtl/reset";
16
+ @import "bootstrap/reset";
17
17
 
18
18
  // Grid system and page structure
19
- @import "bootstrap-rtl/scaffolding";
20
- @import "bootstrap-rtl/grid";
21
- @import "bootstrap-rtl/layouts";
19
+ @import "bootstrap/scaffolding";
20
+ @import "bootstrap/grid";
21
+ @import "bootstrap/layouts";
22
22
 
23
23
  // Base CSS
24
- @import "bootstrap-rtl/type";
25
- @import "bootstrap-rtl/code";
26
- @import "bootstrap-rtl/forms";
27
- @import "bootstrap-rtl/tables";
24
+ @import "bootstrap/type";
25
+ @import "bootstrap/code";
26
+ @import "bootstrap/forms";
27
+ @import "bootstrap/tables";
28
28
 
29
29
  // Components: common
30
- @import "bootstrap-rtl/sprites";
31
- @import "bootstrap-rtl/dropdowns";
32
- @import "bootstrap-rtl/wells";
33
- @import "bootstrap-rtl/component-animations";
34
- @import "bootstrap-rtl/close";
30
+ @import "bootstrap/sprites";
31
+ @import "bootstrap/dropdowns";
32
+ @import "bootstrap/wells";
33
+ @import "bootstrap/component-animations";
34
+ @import "bootstrap/close";
35
35
 
36
36
  // Components: Buttons & Alerts
37
- @import "bootstrap-rtl/buttons";
38
- @import "bootstrap-rtl/button-groups";
39
- @import "bootstrap-rtl/alerts"; // Note: alerts share common CSS with buttons and thus have styles in buttons
37
+ @import "bootstrap/buttons";
38
+ @import "bootstrap/button-groups";
39
+ @import "bootstrap/alerts"; // Note: alerts share common CSS with buttons and thus have styles in buttons
40
40
 
41
41
  // Components: Nav
42
- @import "bootstrap-rtl/navs";
43
- @import "bootstrap-rtl/navbar";
44
- @import "bootstrap-rtl/breadcrumbs";
45
- @import "bootstrap-rtl/pagination";
46
- @import "bootstrap-rtl/pager";
42
+ @import "bootstrap/navs";
43
+ @import "bootstrap/navbar";
44
+ @import "bootstrap/breadcrumbs";
45
+ @import "bootstrap/pagination";
46
+ @import "bootstrap/pager";
47
47
 
48
48
  // Components: Popovers
49
- @import "bootstrap-rtl/modals";
50
- @import "bootstrap-rtl/tooltip";
51
- @import "bootstrap-rtl/popovers";
49
+ @import "bootstrap/modals";
50
+ @import "bootstrap/tooltip";
51
+ @import "bootstrap/popovers";
52
52
 
53
53
  // Components: Misc
54
- @import "bootstrap-rtl/thumbnails";
55
- @import "bootstrap-rtl/media";
56
- @import "bootstrap-rtl/labels-badges";
57
- @import "bootstrap-rtl/progress-bars";
58
- @import "bootstrap-rtl/accordion";
59
- @import "bootstrap-rtl/carousel";
60
- @import "bootstrap-rtl/hero-unit";
54
+ @import "bootstrap/thumbnails";
55
+ @import "bootstrap/media";
56
+ @import "bootstrap/labels-badges";
57
+ @import "bootstrap/progress-bars";
58
+ @import "bootstrap/accordion";
59
+ @import "bootstrap/carousel";
60
+ @import "bootstrap/hero-unit";
61
61
 
62
62
  // Utility classes
63
- @import "bootstrap-rtl/utilities"; // Has to be last to override when necessary
63
+ @import "bootstrap/utilities"; // Has to be last to override when necessary
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Bootstrap Responsive v2.3.0
2
+ * Bootstrap Responsive v2.3.1
3
3
  *
4
4
  * Copyright 2012 Twitter, Inc
5
5
  * Licensed under the Apache License v2.0
@@ -18,31 +18,31 @@
18
18
  // -------------------------
19
19
  // Required since we compile the responsive stuff separately
20
20
 
21
- @import "bootstrap-rtl/variables"; // Modify this for custom colors, font-sizes, etc
22
- @import "bootstrap-rtl/mixins";
21
+ @import "bootstrap/variables"; // Modify this for custom colors, font-sizes, etc
22
+ @import "bootstrap/mixins";
23
23
 
24
24
 
25
25
  // RESPONSIVE CLASSES
26
26
  // ------------------
27
27
 
28
- @import "bootstrap-rtl/responsive-utilities";
28
+ @import "bootstrap/responsive-utilities";
29
29
 
30
30
 
31
31
  // MEDIA QUERIES
32
32
  // ------------------
33
33
 
34
34
  // Large desktops
35
- @import "bootstrap-rtl/responsive-1200px-min";
35
+ @import "bootstrap/responsive-1200px-min";
36
36
 
37
37
  // Tablets to regular desktops
38
- @import "bootstrap-rtl/responsive-768px-979px";
38
+ @import "bootstrap/responsive-768px-979px";
39
39
 
40
40
  // Phones to portrait tablets and narrow desktops
41
- @import "bootstrap-rtl/responsive-767px-max";
41
+ @import "bootstrap/responsive-767px-max";
42
42
 
43
43
 
44
44
  // RESPONSIVE NAVBAR
45
45
  // ------------------
46
46
 
47
47
  // From 979px and below, show a button to toggle navbar contents
48
- @import "bootstrap-rtl/responsive-navbar";
48
+ @import "bootstrap/responsive-navbar";
@@ -1 +1 @@
1
- @import "bootstrap-rtl/bootstrap";
1
+ @import "bootstrap-rtl/bootstrap";
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootstrap-sass-rtl
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0.1
4
+ version: 2.3.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alif Rachmawadi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-02-27 00:00:00.000000000 Z
11
+ date: 2013-04-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bootstrap-sass
@@ -62,7 +62,7 @@ files:
62
62
  - .gitignore
63
63
  - Gemfile
64
64
  - LICENSE.txt
65
- - README.md
65
+ - README.markdown
66
66
  - Rakefile
67
67
  - bootstrap-sass-rtl.gemspec
68
68
  - lib/bootstrap/sass/rtl.rb