bootstrap-sass-rtl 2.3.1.0 → 2.3.1.1

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: d6043338bc3235917b6dfde8976478e137e7dcbe
4
- data.tar.gz: 202a1f37a80512fa90c8565ea81a62d28287300f
3
+ metadata.gz: b5b4f98b8e54537f62a29a7875553e2ecdf05a80
4
+ data.tar.gz: 96733e298f220ccce307e05894450fd27fa86a43
5
5
  SHA512:
6
- metadata.gz: ae5841f6f8918483a4e24b226c8e644c907c4e7ed72c40d26cb39da43dc4201395405c27f5ad3daf78da5b45f42be8f4f0f753d8bc16698a212e7e20bbab6e72
7
- data.tar.gz: d1d4a54ff5137d93406ddab989d4f774ce3c563eed56512053a6eaf3efbeaf256533477c6f56ab00a0f1c20dd150a0cd03e500caf39c3fd4d42848eb22b6a940
6
+ metadata.gz: dcec6065d663692afe282e3f38d9be93d4d85a84687fbf8c5f13ab19837717f7f449d6c3d491ea6ce6b1d40c4e2b2c7e31f85294e2d2b4493e42dc1a01d9049a
7
+ data.tar.gz: f46b36d8c837ccb357b7c10a7db30809c0068ae7467489710129e5989dbea8d78f47051be84d2ab9d0f82e32086a6c1066366859357a05e3fc10bd6c45c7895c
data/Gemfile CHANGED
@@ -1,4 +1,2 @@
1
1
  source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in bootstrap-sass-rtl.gemspec
4
2
  gemspec
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2013 Alif Rachmawadi
1
+ Copyright (c) 2013 Alif Rachmawadi <subosito@gmail.com>
2
2
 
3
3
  MIT License
4
4
 
data/README.markdown CHANGED
@@ -1,24 +1,20 @@
1
1
  # Bootstrap::Sass::Rtl
2
2
 
3
- TODO: Write a gem description
3
+ RTL version of [bootstrap-sass](https://github.com/thomas-mcdonald/bootstrap-sass).
4
4
 
5
- ## Installation
6
-
7
- Add this line to your application's Gemfile:
8
-
9
- gem 'bootstrap-sass-rtl'
10
-
11
- And then execute:
5
+ ## Usage
12
6
 
13
- $ bundle
7
+ Gemfile:
14
8
 
15
- Or install it yourself as:
9
+ gem 'sass-rails', '~> 3.2'
10
+ gem 'bootstrap-sass', '~> 2.3.1.0'
11
+ gem 'bootstrap-sass-rtl', '~> 2.3.1.0'
16
12
 
17
- $ gem install bootstrap-sass-rtl
13
+ ### CSS
18
14
 
19
- ## Usage
15
+ Import in your scss file:
20
16
 
21
- TODO: Write usage instructions here
17
+ @import "bootstrap-rtl";
22
18
 
23
19
  ## Contributing
24
20
 
data/Vendorfile ADDED
@@ -0,0 +1,3 @@
1
+ from 'git://github.com/thomas-mcdonald/bootstrap-sass.git', tag: 'v2.3.1.1' do
2
+ folder "bootstrap", "vendor/assets/stylesheets/bootstrap"
3
+ end
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["subosito@gmail.com"]
11
11
  spec.description = %q{RTL version of bootstrap-sass}
12
12
  spec.summary = spec.description
13
- spec.homepage = ""
13
+ spec.homepage = "https://github.com/subosito/bootstrap-sass-rtl"
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files`.split($/)
@@ -18,7 +18,8 @@ Gem::Specification.new do |spec|
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ["lib"]
20
20
 
21
- spec.add_dependency "bootstrap-sass", "~> 2.3.0"
21
+ spec.add_dependency "bootstrap-sass", "~> 2.3.1"
22
22
  spec.add_development_dependency "bundler", "~> 1.3"
23
23
  spec.add_development_dependency "rake"
24
+ spec.add_development_dependency "vendorer"
24
25
  end
@@ -1,7 +1,7 @@
1
1
  module Bootstrap
2
2
  module Sass
3
3
  module Rtl
4
- VERSION = "2.3.1.0"
4
+ VERSION = "2.3.1.1"
5
5
  end
6
6
  end
7
7
  end
@@ -9,31 +9,31 @@
9
9
  // Webkit
10
10
  @-webkit-keyframes progress-bar-stripes {
11
11
  from { background-position: 40px 0; }
12
- to { background-position: 0 0; }
12
+ to { background-position: 100% 0; }
13
13
  }
14
14
 
15
15
  // Firefox
16
16
  @-moz-keyframes progress-bar-stripes {
17
17
  from { background-position: 40px 0; }
18
- to { background-position: 0 0; }
18
+ to { background-position: 100% 0; }
19
19
  }
20
20
 
21
21
  // IE9
22
22
  @-ms-keyframes progress-bar-stripes {
23
23
  from { background-position: 40px 0; }
24
- to { background-position: 0 0; }
24
+ to { background-position: 100% 0; }
25
25
  }
26
26
 
27
27
  // Opera
28
28
  @-o-keyframes progress-bar-stripes {
29
- from { background-position: 0 0; }
29
+ from { background-position: 100% 0; }
30
30
  to { background-position: 40px 0; }
31
31
  }
32
32
 
33
33
  // Spec
34
34
  @keyframes progress-bar-stripes {
35
35
  from { background-position: 40px 0; }
36
- to { background-position: 0 0; }
36
+ to { background-position: 100% 0; }
37
37
  }
38
38
 
39
39
 
@@ -49,7 +49,7 @@
49
49
  background-image: url($iconWhiteSpritePath);
50
50
  }
51
51
 
52
- .icon-glass { background-position: 0 0; }
52
+ .icon-glass { background-position: 100% 0; }
53
53
  .icon-music { background-position: -24px 0; }
54
54
  .icon-search { background-position: -48px 0; }
55
55
  .icon-envelope { background-position: -72px 0; }
@@ -70,7 +70,7 @@
70
70
  .icon-cog { background-position: -432px 0; }
71
71
  .icon-trash { background-position: -456px 0; }
72
72
 
73
- .icon-home { background-position: 0 -24px; }
73
+ .icon-home { background-position: 100% -24px; }
74
74
  .icon-file { background-position: -24px -24px; }
75
75
  .icon-time { background-position: -48px -24px; }
76
76
  .icon-road { background-position: -72px -24px; }
@@ -91,7 +91,7 @@
91
91
  .icon-qrcode { background-position: -432px -24px; }
92
92
  .icon-barcode { background-position: -456px -24px; }
93
93
 
94
- .icon-tag { background-position: 0 -48px; }
94
+ .icon-tag { background-position: 100% -48px; }
95
95
  .icon-tags { background-position: -25px -48px; } // 1px off
96
96
  .icon-book { background-position: -48px -48px; }
97
97
  .icon-bookmark { background-position: -72px -48px; }
@@ -112,7 +112,7 @@
112
112
  .icon-facetime-video { background-position: -432px -48px; }
113
113
  .icon-picture { background-position: -456px -48px; }
114
114
 
115
- .icon-pencil { background-position: 0 -72px; }
115
+ .icon-pencil { background-position: 100% -72px; }
116
116
  .icon-map-marker { background-position: -24px -72px; }
117
117
  .icon-adjust { background-position: -48px -72px; }
118
118
  .icon-tint { background-position: -72px -72px; }
@@ -133,7 +133,7 @@
133
133
  .icon-chevron-left { background-position: -432px -72px; }
134
134
  .icon-chevron-right { background-position: -456px -72px; }
135
135
 
136
- .icon-plus-sign { background-position: 0 -96px; }
136
+ .icon-plus-sign { background-position: 100% -96px; }
137
137
  .icon-minus-sign { background-position: -24px -96px; }
138
138
  .icon-remove-sign { background-position: -48px -96px; }
139
139
  .icon-ok-sign { background-position: -72px -96px; }
@@ -154,7 +154,7 @@
154
154
  .icon-minus { background-position: -433px -96px; }
155
155
  .icon-asterisk { background-position: -456px -96px; }
156
156
 
157
- .icon-exclamation-sign { background-position: 0 -120px; }
157
+ .icon-exclamation-sign { background-position: 100% -120px; }
158
158
  .icon-gift { background-position: -24px -120px; }
159
159
  .icon-leaf { background-position: -48px -120px; }
160
160
  .icon-fire { background-position: -72px -120px; }
@@ -175,7 +175,7 @@
175
175
  .icon-resize-vertical { background-position: -432px -119px; } // 1px, 1px off
176
176
  .icon-resize-horizontal { background-position: -456px -118px; } // 1px, 2px off
177
177
 
178
- .icon-hdd { background-position: 0 -144px; }
178
+ .icon-hdd { background-position: 100% -144px; }
179
179
  .icon-bullhorn { background-position: -24px -144px; }
180
180
  .icon-bell { background-position: -48px -144px; }
181
181
  .icon-certificate { background-position: -72px -144px; }
@@ -62,9 +62,9 @@ $headingsColor: inherit !default; // empty to use BS default, $textColor
62
62
  // -------------------------
63
63
  // Based on 14px font-size and 20px line-height
64
64
 
65
- $fontSizeLarge: $baseFontSize * 1.25; // ~18px
66
- $fontSizeSmall: $baseFontSize * 0.85; // ~12px
67
- $fontSizeMini: $baseFontSize * 0.75; // ~11px
65
+ $fontSizeLarge: $baseFontSize * 1.25 !default; // ~18px
66
+ $fontSizeSmall: $baseFontSize * 0.85 !default; // ~12px
67
+ $fontSizeMini: $baseFontSize * 0.75 !default; // ~11px
68
68
 
69
69
  $paddingLarge: 11px 19px !default; // 44px
70
70
  $paddingSmall: 2px 10px !default; // 26px
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.1.0
4
+ version: 2.3.1.1
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-04-09 00:00:00.000000000 Z
11
+ date: 2013-05-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bootstrap-sass
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ~>
18
18
  - !ruby/object:Gem::Version
19
- version: 2.3.0
19
+ version: 2.3.1
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ~>
25
25
  - !ruby/object:Gem::Version
26
- version: 2.3.0
26
+ version: 2.3.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -52,6 +52,20 @@ dependencies:
52
52
  - - '>='
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: vendorer
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
55
69
  description: RTL version of bootstrap-sass
56
70
  email:
57
71
  - subosito@gmail.com
@@ -64,6 +78,7 @@ files:
64
78
  - LICENSE.txt
65
79
  - README.markdown
66
80
  - Rakefile
81
+ - Vendorfile
67
82
  - bootstrap-sass-rtl.gemspec
68
83
  - lib/bootstrap/sass/rtl.rb
69
84
  - lib/bootstrap/sass/rtl/version.rb
@@ -110,7 +125,7 @@ files:
110
125
  - vendor/assets/stylesheets/bootstrap-rtl/_wells.scss
111
126
  - vendor/assets/stylesheets/bootstrap-rtl/bootstrap.scss
112
127
  - vendor/assets/stylesheets/bootstrap-rtl/responsive.scss
113
- homepage: ''
128
+ homepage: https://github.com/subosito/bootstrap-sass-rtl
114
129
  licenses:
115
130
  - MIT
116
131
  metadata: {}
@@ -135,3 +150,4 @@ signing_key:
135
150
  specification_version: 4
136
151
  summary: RTL version of bootstrap-sass
137
152
  test_files: []
153
+ has_rdoc: