owlcarousel-rails 1.1.3.3 → 2.2.3.4

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.
@@ -1,71 +1,186 @@
1
- /*
2
- * Core Owl Carousel CSS File
3
- * v1.3.3
1
+ /**
2
+ * Owl Carousel v2.3.4
3
+ * Copyright 2013-2018 David Deutsch
4
+ * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
4
5
  */
6
+ /*
7
+ * Owl Carousel - Core
8
+ */
9
+ .owl-carousel {
10
+ display: none;
11
+ width: 100%;
12
+ -webkit-tap-highlight-color: transparent;
13
+ /* position relative and z-index fix webkit rendering fonts issue */
14
+ position: relative;
15
+ z-index: 1; }
16
+ .owl-carousel .owl-stage {
17
+ position: relative;
18
+ -ms-touch-action: pan-Y;
19
+ touch-action: manipulation;
20
+ -moz-backface-visibility: hidden;
21
+ /* fix firefox animation glitch */ }
22
+ .owl-carousel .owl-stage:after {
23
+ content: ".";
24
+ display: block;
25
+ clear: both;
26
+ visibility: hidden;
27
+ line-height: 0;
28
+ height: 0; }
29
+ .owl-carousel .owl-stage-outer {
30
+ position: relative;
31
+ overflow: hidden;
32
+ /* fix for flashing background */
33
+ -webkit-transform: translate3d(0px, 0px, 0px); }
34
+ .owl-carousel .owl-wrapper,
35
+ .owl-carousel .owl-item {
36
+ -webkit-backface-visibility: hidden;
37
+ -moz-backface-visibility: hidden;
38
+ -ms-backface-visibility: hidden;
39
+ -webkit-transform: translate3d(0, 0, 0);
40
+ -moz-transform: translate3d(0, 0, 0);
41
+ -ms-transform: translate3d(0, 0, 0); }
42
+ .owl-carousel .owl-item {
43
+ position: relative;
44
+ min-height: 1px;
45
+ float: left;
46
+ -webkit-backface-visibility: hidden;
47
+ -webkit-tap-highlight-color: transparent;
48
+ -webkit-touch-callout: none; }
49
+ .owl-carousel .owl-item img {
50
+ display: block;
51
+ width: 100%; }
52
+ .owl-carousel .owl-nav.disabled,
53
+ .owl-carousel .owl-dots.disabled {
54
+ display: none; }
55
+ .owl-carousel .owl-nav .owl-prev,
56
+ .owl-carousel .owl-nav .owl-next,
57
+ .owl-carousel .owl-dot {
58
+ cursor: pointer;
59
+ -webkit-user-select: none;
60
+ -khtml-user-select: none;
61
+ -moz-user-select: none;
62
+ -ms-user-select: none;
63
+ user-select: none; }
64
+ .owl-carousel .owl-nav button.owl-prev,
65
+ .owl-carousel .owl-nav button.owl-next,
66
+ .owl-carousel button.owl-dot {
67
+ background: none;
68
+ color: inherit;
69
+ border: none;
70
+ padding: 0 !important;
71
+ font: inherit; }
72
+ .owl-carousel.owl-loaded {
73
+ display: block; }
74
+ .owl-carousel.owl-loading {
75
+ opacity: 0;
76
+ display: block; }
77
+ .owl-carousel.owl-hidden {
78
+ opacity: 0; }
79
+ .owl-carousel.owl-refresh .owl-item {
80
+ visibility: hidden; }
81
+ .owl-carousel.owl-drag .owl-item {
82
+ -ms-touch-action: pan-y;
83
+ touch-action: pan-y;
84
+ -webkit-user-select: none;
85
+ -moz-user-select: none;
86
+ -ms-user-select: none;
87
+ user-select: none; }
88
+ .owl-carousel.owl-grab {
89
+ cursor: move;
90
+ cursor: grab; }
91
+ .owl-carousel.owl-rtl {
92
+ direction: rtl; }
93
+ .owl-carousel.owl-rtl .owl-item {
94
+ float: right; }
95
+
96
+ /* No Js */
97
+ .no-js .owl-carousel {
98
+ display: block; }
99
+
100
+ /*
101
+ * Owl Carousel - Animate Plugin
102
+ */
103
+ .owl-carousel .animated {
104
+ animation-duration: 1000ms;
105
+ animation-fill-mode: both; }
106
+
107
+ .owl-carousel .owl-animated-in {
108
+ z-index: 0; }
109
+
110
+ .owl-carousel .owl-animated-out {
111
+ z-index: 1; }
112
+
113
+ .owl-carousel .fadeOut {
114
+ animation-name: fadeOut; }
115
+
116
+ @keyframes fadeOut {
117
+ 0% {
118
+ opacity: 1; }
119
+ 100% {
120
+ opacity: 0; } }
121
+
122
+ /*
123
+ * Owl Carousel - Auto Height Plugin
124
+ */
125
+ .owl-height {
126
+ transition: height 500ms ease-in-out; }
127
+
128
+ /*
129
+ * Owl Carousel - Lazy Load Plugin
130
+ */
131
+ .owl-carousel .owl-item {
132
+ /**
133
+ This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
134
+ calculation of the height of the owl-item that breaks page layouts
135
+ */ }
136
+ .owl-carousel .owl-item .owl-lazy {
137
+ opacity: 0;
138
+ transition: opacity 400ms ease; }
139
+ .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
140
+ max-height: 0; }
141
+ .owl-carousel .owl-item img.owl-lazy {
142
+ transform-style: preserve-3d; }
143
+
144
+ /*
145
+ * Owl Carousel - Video Plugin
146
+ */
147
+ .owl-carousel .owl-video-wrapper {
148
+ position: relative;
149
+ height: 100%;
150
+ background: #000; }
151
+
152
+ .owl-carousel .owl-video-play-icon {
153
+ position: absolute;
154
+ height: 80px;
155
+ width: 80px;
156
+ left: 50%;
157
+ top: 50%;
158
+ margin-left: -40px;
159
+ margin-top: -40px;
160
+ background: url("owl.video.play.png") no-repeat;
161
+ cursor: pointer;
162
+ z-index: 1;
163
+ -webkit-backface-visibility: hidden;
164
+ transition: transform 100ms ease; }
5
165
 
6
- /* clearfix */
7
- .owl-carousel .owl-wrapper:after {
8
- content: ".";
9
- display: block;
10
- clear: both;
11
- visibility: hidden;
12
- line-height: 0;
13
- height: 0;
14
- }
15
- /* display none until init */
16
- .owl-carousel{
17
- display: none;
18
- position: relative;
19
- width: 100%;
20
- -ms-touch-action: pan-y;
21
- }
22
- .owl-carousel .owl-wrapper{
23
- display: none;
24
- position: relative;
25
- -webkit-transform: translate3d(0px, 0px, 0px);
26
- }
27
- .owl-carousel .owl-wrapper-outer{
28
- overflow: hidden;
29
- position: relative;
30
- width: 100%;
31
- }
32
- .owl-carousel .owl-wrapper-outer.autoHeight{
33
- -webkit-transition: height 500ms ease-in-out;
34
- -moz-transition: height 500ms ease-in-out;
35
- -ms-transition: height 500ms ease-in-out;
36
- -o-transition: height 500ms ease-in-out;
37
- transition: height 500ms ease-in-out;
38
- }
39
-
40
- .owl-carousel .owl-item{
41
- float: left;
42
- }
43
- .owl-controls .owl-page,
44
- .owl-controls .owl-buttons div{
45
- cursor: pointer;
46
- }
47
- .owl-controls {
48
- -webkit-user-select: none;
49
- -khtml-user-select: none;
50
- -moz-user-select: none;
51
- -ms-user-select: none;
52
- user-select: none;
53
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
54
- }
166
+ .owl-carousel .owl-video-play-icon:hover {
167
+ -ms-transform: scale(1.3, 1.3);
168
+ transform: scale(1.3, 1.3); }
55
169
 
56
- /* mouse grab icon */
57
- .grabbing {
58
- cursor:url(grabbing.png) 8 8, move;
59
- }
170
+ .owl-carousel .owl-video-playing .owl-video-tn,
171
+ .owl-carousel .owl-video-playing .owl-video-play-icon {
172
+ display: none; }
60
173
 
61
- /* fix */
62
- .owl-carousel .owl-wrapper,
63
- .owl-carousel .owl-item{
64
- -webkit-backface-visibility: hidden;
65
- -moz-backface-visibility: hidden;
66
- -ms-backface-visibility: hidden;
67
- -webkit-transform: translate3d(0,0,0);
68
- -moz-transform: translate3d(0,0,0);
69
- -ms-transform: translate3d(0,0,0);
70
- }
174
+ .owl-carousel .owl-video-tn {
175
+ opacity: 0;
176
+ height: 100%;
177
+ background-position: center center;
178
+ background-repeat: no-repeat;
179
+ background-size: contain;
180
+ transition: opacity 400ms ease; }
71
181
 
182
+ .owl-carousel .owl-video-frame {
183
+ position: relative;
184
+ z-index: 1;
185
+ height: 100%;
186
+ width: 100%; }
@@ -0,0 +1,50 @@
1
+ /**
2
+ * Owl Carousel v2.3.4
3
+ * Copyright 2013-2018 David Deutsch
4
+ * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
5
+ */
6
+ /*
7
+ * Default theme - Owl Carousel CSS File
8
+ */
9
+ .owl-theme .owl-nav {
10
+ margin-top: 10px;
11
+ text-align: center;
12
+ -webkit-tap-highlight-color: transparent; }
13
+ .owl-theme .owl-nav [class*='owl-'] {
14
+ color: #FFF;
15
+ font-size: 14px;
16
+ margin: 5px;
17
+ padding: 4px 7px;
18
+ background: #D6D6D6;
19
+ display: inline-block;
20
+ cursor: pointer;
21
+ border-radius: 3px; }
22
+ .owl-theme .owl-nav [class*='owl-']:hover {
23
+ background: #869791;
24
+ color: #FFF;
25
+ text-decoration: none; }
26
+ .owl-theme .owl-nav .disabled {
27
+ opacity: 0.5;
28
+ cursor: default; }
29
+
30
+ .owl-theme .owl-nav.disabled + .owl-dots {
31
+ margin-top: 10px; }
32
+
33
+ .owl-theme .owl-dots {
34
+ text-align: center;
35
+ -webkit-tap-highlight-color: transparent; }
36
+ .owl-theme .owl-dots .owl-dot {
37
+ display: inline-block;
38
+ zoom: 1;
39
+ *display: inline; }
40
+ .owl-theme .owl-dots .owl-dot span {
41
+ width: 10px;
42
+ height: 10px;
43
+ margin: 5px 7px;
44
+ background: #D6D6D6;
45
+ display: block;
46
+ -webkit-backface-visibility: visible;
47
+ transition: opacity 200ms ease;
48
+ border-radius: 30px; }
49
+ .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
50
+ background: #869791; }
@@ -0,0 +1,50 @@
1
+ /**
2
+ * Owl Carousel v2.3.4
3
+ * Copyright 2013-2018 David Deutsch
4
+ * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
5
+ */
6
+ /*
7
+ * Green theme - Owl Carousel CSS File
8
+ */
9
+ .owl-theme .owl-nav {
10
+ margin-top: 10px;
11
+ text-align: center;
12
+ -webkit-tap-highlight-color: transparent; }
13
+ .owl-theme .owl-nav [class*='owl-'] {
14
+ color: #FFF;
15
+ font-size: 14px;
16
+ margin: 5px;
17
+ padding: 4px 7px;
18
+ background: #D6D6D6;
19
+ display: inline-block;
20
+ cursor: pointer;
21
+ border-radius: 3px; }
22
+ .owl-theme .owl-nav [class*='owl-']:hover {
23
+ background: #4DC7A0;
24
+ color: #FFF;
25
+ text-decoration: none; }
26
+ .owl-theme .owl-nav .disabled {
27
+ opacity: 0.5;
28
+ cursor: default; }
29
+
30
+ .owl-theme .owl-nav.disabled + .owl-dots {
31
+ margin-top: 10px; }
32
+
33
+ .owl-theme .owl-dots {
34
+ text-align: center;
35
+ -webkit-tap-highlight-color: transparent; }
36
+ .owl-theme .owl-dots .owl-dot {
37
+ display: inline-block;
38
+ zoom: 1;
39
+ *display: inline; }
40
+ .owl-theme .owl-dots .owl-dot span {
41
+ width: 10px;
42
+ height: 10px;
43
+ margin: 5px 7px;
44
+ background: #D6D6D6;
45
+ display: block;
46
+ -webkit-backface-visibility: visible;
47
+ transition: opacity 200ms ease;
48
+ border-radius: 30px; }
49
+ .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
50
+ background: #4DC7A0; }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: owlcarousel-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3.3
4
+ version: 2.2.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - OwlFonk
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-07-04 00:00:00.000000000 Z
12
+ date: 2018-04-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: jquery-rails
@@ -55,12 +55,12 @@ files:
55
55
  - lib/owlcarousel-rails.rb
56
56
  - lib/owlcarousel-rails/version.rb
57
57
  - owlcarousel-rails.gemspec
58
- - vendor/assets/images/AjaxLoader.gif
59
- - vendor/assets/images/grabbing.png
58
+ - vendor/assets/images/ajax-loader.gif
59
+ - vendor/assets/images/owl.video.play.png
60
60
  - vendor/assets/javascripts/owl.carousel.js
61
61
  - vendor/assets/stylesheets/owl.carousel.css
62
- - vendor/assets/stylesheets/owl.theme.css
63
- - vendor/assets/stylesheets/owl.transitions.css
62
+ - vendor/assets/stylesheets/owl.theme.default.css
63
+ - vendor/assets/stylesheets/owl.theme.green.css
64
64
  homepage: http://owlgraphic.com/owlcarousel/
65
65
  licenses:
66
66
  - MIT
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  version: '0'
82
82
  requirements: []
83
83
  rubyforge_project: owlcarousel-rails
84
- rubygems_version: 2.2.2
84
+ rubygems_version: 2.7.3
85
85
  signing_key:
86
86
  specification_version: 4
87
87
  summary: Owl Carousel. Touch enabled jQuery plugin that lets you create beautiful
Binary file
Binary file
@@ -1,79 +0,0 @@
1
- /*
2
- * Owl Carousel Owl Demo Theme
3
- * v1.3.3
4
- */
5
-
6
- .owl-theme .owl-controls{
7
- margin-top: 10px;
8
- text-align: center;
9
- }
10
-
11
- /* Styling Next and Prev buttons */
12
-
13
- .owl-theme .owl-controls .owl-buttons div{
14
- color: #FFF;
15
- display: inline-block;
16
- zoom: 1;
17
- *display: inline;/*IE7 life-saver */
18
- margin: 5px;
19
- padding: 3px 10px;
20
- font-size: 12px;
21
- -webkit-border-radius: 30px;
22
- -moz-border-radius: 30px;
23
- border-radius: 30px;
24
- background: #869791;
25
- filter: Alpha(Opacity=50);/*IE7 fix*/
26
- opacity: 0.5;
27
- }
28
- /* Clickable class fix problem with hover on touch devices */
29
- /* Use it for non-touch hover action */
30
- .owl-theme .owl-controls.clickable .owl-buttons div:hover{
31
- filter: Alpha(Opacity=100);/*IE7 fix*/
32
- opacity: 1;
33
- text-decoration: none;
34
- }
35
-
36
- /* Styling Pagination*/
37
-
38
- .owl-theme .owl-controls .owl-page{
39
- display: inline-block;
40
- zoom: 1;
41
- *display: inline;/*IE7 life-saver */
42
- }
43
- .owl-theme .owl-controls .owl-page span{
44
- display: block;
45
- width: 12px;
46
- height: 12px;
47
- margin: 5px 7px;
48
- filter: Alpha(Opacity=50);/*IE7 fix*/
49
- opacity: 0.5;
50
- -webkit-border-radius: 20px;
51
- -moz-border-radius: 20px;
52
- border-radius: 20px;
53
- background: #869791;
54
- }
55
-
56
- .owl-theme .owl-controls .owl-page.active span,
57
- .owl-theme .owl-controls.clickable .owl-page:hover span{
58
- filter: Alpha(Opacity=100);/*IE7 fix*/
59
- opacity: 1;
60
- }
61
-
62
- /* If PaginationNumbers is true */
63
-
64
- .owl-theme .owl-controls .owl-page span.owl-numbers{
65
- height: auto;
66
- width: auto;
67
- color: #FFF;
68
- padding: 2px 10px;
69
- font-size: 12px;
70
- -webkit-border-radius: 30px;
71
- -moz-border-radius: 30px;
72
- border-radius: 30px;
73
- }
74
-
75
- /* preloading images */
76
- .owl-item.loading{
77
- min-height: 150px;
78
- background: url(AjaxLoader.gif) no-repeat center center
79
- }