bootstrap-sass-rtl 2.3.0.1 → 2.3.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/{README.md → README.markdown} +0 -0
- data/lib/bootstrap/sass/rtl/version.rb +1 -1
- data/vendor/assets/stylesheets/bootstrap-responsive-rtl.scss +1 -1
- data/vendor/assets/stylesheets/bootstrap-rtl/_buttons.scss +1 -1
- data/vendor/assets/stylesheets/bootstrap-rtl/_mixins.scss +8 -8
- data/vendor/assets/stylesheets/bootstrap-rtl/bootstrap.scss +35 -35
- data/vendor/assets/stylesheets/bootstrap-rtl/responsive.scss +8 -8
- data/vendor/assets/stylesheets/bootstrap-rtl.scss +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d6043338bc3235917b6dfde8976478e137e7dcbe
|
4
|
+
data.tar.gz: 202a1f37a80512fa90c8565ea81a62d28287300f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae5841f6f8918483a4e24b226c8e644c907c4e7ed72c40d26cb39da43dc4201395405c27f5ad3daf78da5b45f42be8f4f0f753d8bc16698a212e7e20bbab6e72
|
7
|
+
data.tar.gz: d1d4a54ff5137d93406ddab989d4f774ce3c563eed56512053a6eaf3efbeaf256533477c6f56ab00a0f1c20dd150a0cd03e500caf39c3fd4d42848eb22b6a940
|
File without changes
|
@@ -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:
|
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-
|
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-
|
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-
|
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-
|
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(
|
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(
|
416
|
-
background-image: -o-linear-gradient(
|
417
|
-
background-image: linear-gradient(to
|
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.
|
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
|
13
|
-
@import "bootstrap
|
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
|
16
|
+
@import "bootstrap/reset";
|
17
17
|
|
18
18
|
// Grid system and page structure
|
19
|
-
@import "bootstrap
|
20
|
-
@import "bootstrap
|
21
|
-
@import "bootstrap
|
19
|
+
@import "bootstrap/scaffolding";
|
20
|
+
@import "bootstrap/grid";
|
21
|
+
@import "bootstrap/layouts";
|
22
22
|
|
23
23
|
// Base CSS
|
24
|
-
@import "bootstrap
|
25
|
-
@import "bootstrap
|
26
|
-
@import "bootstrap
|
27
|
-
@import "bootstrap
|
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
|
31
|
-
@import "bootstrap
|
32
|
-
@import "bootstrap
|
33
|
-
@import "bootstrap
|
34
|
-
@import "bootstrap
|
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
|
38
|
-
@import "bootstrap
|
39
|
-
@import "bootstrap
|
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
|
43
|
-
@import "bootstrap
|
44
|
-
@import "bootstrap
|
45
|
-
@import "bootstrap
|
46
|
-
@import "bootstrap
|
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
|
50
|
-
@import "bootstrap
|
51
|
-
@import "bootstrap
|
49
|
+
@import "bootstrap/modals";
|
50
|
+
@import "bootstrap/tooltip";
|
51
|
+
@import "bootstrap/popovers";
|
52
52
|
|
53
53
|
// Components: Misc
|
54
|
-
@import "bootstrap
|
55
|
-
@import "bootstrap
|
56
|
-
@import "bootstrap
|
57
|
-
@import "bootstrap
|
58
|
-
@import "bootstrap
|
59
|
-
@import "bootstrap
|
60
|
-
@import "bootstrap
|
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
|
63
|
+
@import "bootstrap/utilities"; // Has to be last to override when necessary
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap Responsive v2.3.
|
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
|
22
|
-
@import "bootstrap
|
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
|
28
|
+
@import "bootstrap/responsive-utilities";
|
29
29
|
|
30
30
|
|
31
31
|
// MEDIA QUERIES
|
32
32
|
// ------------------
|
33
33
|
|
34
34
|
// Large desktops
|
35
|
-
@import "bootstrap
|
35
|
+
@import "bootstrap/responsive-1200px-min";
|
36
36
|
|
37
37
|
// Tablets to regular desktops
|
38
|
-
@import "bootstrap
|
38
|
+
@import "bootstrap/responsive-768px-979px";
|
39
39
|
|
40
40
|
// Phones to portrait tablets and narrow desktops
|
41
|
-
@import "bootstrap
|
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
|
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
|
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-
|
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.
|
65
|
+
- README.markdown
|
66
66
|
- Rakefile
|
67
67
|
- bootstrap-sass-rtl.gemspec
|
68
68
|
- lib/bootstrap/sass/rtl.rb
|