slick_rails 1.3.3.1 → 1.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.
- checksums.yaml +4 -4
- data/app/assets/javascripts/slick.js +559 -606
- data/app/assets/stylesheets/slick.css.scss +23 -7
- data/lib/slick_rails/version.rb +1 -1
- metadata +2 -2
@@ -27,7 +27,7 @@
|
|
27
27
|
}
|
28
28
|
|
29
29
|
.slick-loading & {
|
30
|
-
background: #fff
|
30
|
+
background: #fff url(./ajax-loader.gif) center center no-repeat;
|
31
31
|
}
|
32
32
|
|
33
33
|
&.dragging {
|
@@ -73,7 +73,7 @@
|
|
73
73
|
img {
|
74
74
|
display: block;
|
75
75
|
&.slick-loading {
|
76
|
-
background: white
|
76
|
+
background: white url(./ajax-loader.gif) center center no-repeat;
|
77
77
|
padding-bottom: 100%;
|
78
78
|
}
|
79
79
|
}
|
@@ -104,8 +104,8 @@
|
|
104
104
|
@charset"UTF-8";
|
105
105
|
@font-face {
|
106
106
|
font-family:"slick";
|
107
|
-
src:
|
108
|
-
src:
|
107
|
+
src:url("./fonts/slick.eot");
|
108
|
+
src:url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
|
109
109
|
font-weight: normal;
|
110
110
|
font-style: normal;
|
111
111
|
}
|
@@ -127,6 +127,7 @@
|
|
127
127
|
margin-top: -10px;
|
128
128
|
padding: 0;
|
129
129
|
border: none;
|
130
|
+
outline: none;
|
130
131
|
&:focus {
|
131
132
|
outline: none;
|
132
133
|
}
|
@@ -177,8 +178,11 @@
|
|
177
178
|
width: 20px;
|
178
179
|
margin: 0px 5px;
|
179
180
|
padding: 0px;
|
181
|
+
cursor: pointer;
|
180
182
|
|
181
|
-
|
183
|
+
button {
|
184
|
+
border: 0;
|
185
|
+
background: transparent;
|
182
186
|
display: block;
|
183
187
|
height: 20px;
|
184
188
|
width: 20px;
|
@@ -187,20 +191,32 @@
|
|
187
191
|
font-size: 0;
|
188
192
|
color: transparent;
|
189
193
|
padding: 5px;
|
194
|
+
cursor: pointer;
|
195
|
+
outline: none;
|
196
|
+
&:focus {
|
197
|
+
outline: none;
|
198
|
+
}
|
190
199
|
|
191
200
|
&:before {
|
201
|
+
position: absolute;
|
202
|
+
top: 0;
|
203
|
+
left: 0;
|
192
204
|
content:'\8226';
|
205
|
+
width: 20px;
|
206
|
+
height: 20px;
|
193
207
|
font-family:"slick";
|
194
208
|
font-size: 6px;
|
195
|
-
line-height:
|
209
|
+
line-height: 20px;
|
210
|
+
text-align: center;
|
196
211
|
color: black;
|
197
212
|
opacity: 0.25;
|
198
213
|
-webkit-font-smoothing: antialiased;
|
199
214
|
-moz-osx-font-smoothing: grayscale;
|
200
215
|
}
|
216
|
+
|
201
217
|
}
|
202
218
|
|
203
|
-
&.slick-active
|
219
|
+
&.slick-active button:before {
|
204
220
|
opacity: 0.75;
|
205
221
|
}
|
206
222
|
}
|
data/lib/slick_rails/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: slick_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Guy Israeli
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-04-
|
11
|
+
date: 2014-04-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|