bootstrap-slider-rails 5.3.5 → 5.3.6

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: 539c242e6bc534ef4d29b3fbd04b2b30f7d65adc
4
- data.tar.gz: b9b3ec74d653078e641ce9c8a448f151a94cec80
3
+ metadata.gz: e5151ca323b2477d26045d8ab1b5ef9882cf2ae5
4
+ data.tar.gz: 352078d80c6c40a5f1c95b9093002714877a901f
5
5
  SHA512:
6
- metadata.gz: 1f411855bd7355c5b74dce280641ea63d6ec4c304f816fd9334e4f49d7e55f00fb8f7d9225b6089f6796cab960b6bc1633c426e36d772f1b42e7a48ac951b44f
7
- data.tar.gz: bdc11c53207e04ac966e50296b82115483bc161e2ebc7e22cffb7753f04f1d6188a9270810461227175efb89e4b158d7baddf848ebea9e7d405ca574db83b0e7
6
+ metadata.gz: 24f81456a21b8777c3c830e603ff6fcbdfb14cc5fe18bc81c0ca492dc37ed56ddbc1191232b9840586b3feb4700c9c84d03f7e1c0771b8c8890c8b70d41237dd
7
+ data.tar.gz: d85e76f24e6957c52e51c88d1c1941254b4f1aba77df91efa358462d87691833eb0bd0263c618e371e9ea562164ef9b93dfe5f9757cc896ceeb336335fd152ff
@@ -1,5 +1,5 @@
1
1
  module BootstrapSlider
2
2
  module Rails
3
- VERSION = '5.3.5'
3
+ VERSION = '5.3.6'
4
4
  end
5
5
  end
data/make_new_release.sh CHANGED
@@ -4,7 +4,6 @@ DOCKER_IMAGE_NAME="$USER/bootstrap-slider-rails"
4
4
  LIBRARY_NEW_VERSION=`cat lib/**/*.rb | grep VERSION | awk '{ print $3 }' | tr -d "'"`
5
5
 
6
6
  LIBRARY_UPDATED=`git status --porcelain | grep -v "lib/bootstrap-slider-rails/version.rb"`
7
- echo "LIBRARY_UPDATED: $LIBRARY_UPDATED"
8
7
  if [[ -n "$LIBRARY_UPDATED" ]]; then
9
8
  echo "Your repository is not clean !"
10
9
  exit 1
@@ -1 +1,255 @@
1
- Not Found
1
+ /*! =======================================================
2
+ VERSION 5.3.5
3
+ ========================================================= */
4
+ /*! =========================================================
5
+ * bootstrap-slider.js
6
+ *
7
+ * Maintainers:
8
+ * Kyle Kemp
9
+ * - Twitter: @seiyria
10
+ * - Github: seiyria
11
+ * Rohit Kalkur
12
+ * - Twitter: @Rovolutionary
13
+ * - Github: rovolution
14
+ *
15
+ * =========================================================
16
+ *
17
+ * Licensed under the Apache License, Version 2.0 (the "License");
18
+ * you may not use this file except in compliance with the License.
19
+ * You may obtain a copy of the License at
20
+ *
21
+ * http://www.apache.org/licenses/LICENSE-2.0
22
+ *
23
+ * Unless required by applicable law or agreed to in writing, software
24
+ * distributed under the License is distributed on an "AS IS" BASIS,
25
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
26
+ * See the License for the specific language governing permissions and
27
+ * limitations under the License.
28
+ * ========================================================= */
29
+ .slider {
30
+ display: inline-block;
31
+ vertical-align: middle;
32
+ position: relative;
33
+ }
34
+ .slider.slider-horizontal {
35
+ width: 210px;
36
+ height: 20px;
37
+ }
38
+ .slider.slider-horizontal .slider-track {
39
+ height: 10px;
40
+ width: 100%;
41
+ margin-top: -5px;
42
+ top: 50%;
43
+ left: 0;
44
+ }
45
+ .slider.slider-horizontal .slider-selection,
46
+ .slider.slider-horizontal .slider-track-low,
47
+ .slider.slider-horizontal .slider-track-high {
48
+ height: 100%;
49
+ top: 0;
50
+ bottom: 0;
51
+ }
52
+ .slider.slider-horizontal .slider-tick,
53
+ .slider.slider-horizontal .slider-handle {
54
+ margin-left: -10px;
55
+ margin-top: -5px;
56
+ }
57
+ .slider.slider-horizontal .slider-tick.triangle,
58
+ .slider.slider-horizontal .slider-handle.triangle {
59
+ border-width: 0 10px 10px 10px;
60
+ width: 0;
61
+ height: 0;
62
+ border-bottom-color: #0480be;
63
+ margin-top: 0;
64
+ }
65
+ .slider.slider-horizontal .slider-tick-label-container {
66
+ white-space: nowrap;
67
+ margin-top: 20px;
68
+ }
69
+ .slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
70
+ padding-top: 4px;
71
+ display: inline-block;
72
+ text-align: center;
73
+ }
74
+ .slider.slider-vertical {
75
+ height: 210px;
76
+ width: 20px;
77
+ }
78
+ .slider.slider-vertical .slider-track {
79
+ width: 10px;
80
+ height: 100%;
81
+ margin-left: -5px;
82
+ left: 50%;
83
+ top: 0;
84
+ }
85
+ .slider.slider-vertical .slider-selection {
86
+ width: 100%;
87
+ left: 0;
88
+ top: 0;
89
+ bottom: 0;
90
+ }
91
+ .slider.slider-vertical .slider-track-low,
92
+ .slider.slider-vertical .slider-track-high {
93
+ width: 100%;
94
+ left: 0;
95
+ right: 0;
96
+ }
97
+ .slider.slider-vertical .slider-tick,
98
+ .slider.slider-vertical .slider-handle {
99
+ margin-left: -5px;
100
+ margin-top: -10px;
101
+ }
102
+ .slider.slider-vertical .slider-tick.triangle,
103
+ .slider.slider-vertical .slider-handle.triangle {
104
+ border-width: 10px 0 10px 10px;
105
+ width: 1px;
106
+ height: 1px;
107
+ border-left-color: #0480be;
108
+ margin-left: 0;
109
+ }
110
+ .slider.slider-vertical .slider-tick-label-container {
111
+ white-space: nowrap;
112
+ }
113
+ .slider.slider-vertical .slider-tick-label-container .slider-tick-label {
114
+ padding-left: 4px;
115
+ }
116
+ .slider.slider-disabled .slider-handle {
117
+ background-image: -webkit-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
118
+ background-image: -o-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
119
+ background-image: linear-gradient(to bottom, #dfdfdf 0%, #bebebe 100%);
120
+ background-repeat: repeat-x;
121
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdfdfdf', endColorstr='#ffbebebe', GradientType=0);
122
+ }
123
+ .slider.slider-disabled .slider-track {
124
+ background-image: -webkit-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
125
+ background-image: -o-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
126
+ background-image: linear-gradient(to bottom, #e5e5e5 0%, #e9e9e9 100%);
127
+ background-repeat: repeat-x;
128
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe5e5e5', endColorstr='#ffe9e9e9', GradientType=0);
129
+ cursor: not-allowed;
130
+ }
131
+ .slider input {
132
+ display: none;
133
+ }
134
+ .slider .tooltip.top {
135
+ margin-top: -36px;
136
+ }
137
+ .slider .tooltip-inner {
138
+ white-space: nowrap;
139
+ }
140
+ .slider .hide {
141
+ display: none;
142
+ }
143
+ .slider-track {
144
+ position: absolute;
145
+ cursor: pointer;
146
+ background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
147
+ background-image: -o-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
148
+ background-image: linear-gradient(to bottom, #f5f5f5 0%, #f9f9f9 100%);
149
+ background-repeat: repeat-x;
150
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
151
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
152
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
153
+ border-radius: 4px;
154
+ }
155
+ .slider-selection {
156
+ position: absolute;
157
+ background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
158
+ background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
159
+ background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
160
+ background-repeat: repeat-x;
161
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
162
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
163
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
164
+ -webkit-box-sizing: border-box;
165
+ -moz-box-sizing: border-box;
166
+ box-sizing: border-box;
167
+ border-radius: 4px;
168
+ }
169
+ .slider-selection.tick-slider-selection {
170
+ background-image: -webkit-linear-gradient(top, #89cdef 0%, #81bfde 100%);
171
+ background-image: -o-linear-gradient(top, #89cdef 0%, #81bfde 100%);
172
+ background-image: linear-gradient(to bottom, #89cdef 0%, #81bfde 100%);
173
+ background-repeat: repeat-x;
174
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff89cdef', endColorstr='#ff81bfde', GradientType=0);
175
+ }
176
+ .slider-track-low,
177
+ .slider-track-high {
178
+ position: absolute;
179
+ background: transparent;
180
+ -webkit-box-sizing: border-box;
181
+ -moz-box-sizing: border-box;
182
+ box-sizing: border-box;
183
+ border-radius: 4px;
184
+ }
185
+ .slider-handle {
186
+ position: absolute;
187
+ width: 20px;
188
+ height: 20px;
189
+ background-color: #337ab7;
190
+ background-image: -webkit-linear-gradient(top, #149bdf 0%, #0480be 100%);
191
+ background-image: -o-linear-gradient(top, #149bdf 0%, #0480be 100%);
192
+ background-image: linear-gradient(to bottom, #149bdf 0%, #0480be 100%);
193
+ background-repeat: repeat-x;
194
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
195
+ filter: none;
196
+ -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
197
+ box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
198
+ border: 0px solid transparent;
199
+ }
200
+ .slider-handle.round {
201
+ border-radius: 50%;
202
+ }
203
+ .slider-handle.triangle {
204
+ background: transparent none;
205
+ }
206
+ .slider-handle.custom {
207
+ background: transparent none;
208
+ }
209
+ .slider-handle.custom::before {
210
+ line-height: 20px;
211
+ font-size: 20px;
212
+ content: '\2605';
213
+ color: #726204;
214
+ }
215
+ .slider-tick {
216
+ position: absolute;
217
+ width: 20px;
218
+ height: 20px;
219
+ background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
220
+ background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
221
+ background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
222
+ background-repeat: repeat-x;
223
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
224
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
225
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
226
+ -webkit-box-sizing: border-box;
227
+ -moz-box-sizing: border-box;
228
+ box-sizing: border-box;
229
+ filter: none;
230
+ opacity: 0.8;
231
+ border: 0px solid transparent;
232
+ }
233
+ .slider-tick.round {
234
+ border-radius: 50%;
235
+ }
236
+ .slider-tick.triangle {
237
+ background: transparent none;
238
+ }
239
+ .slider-tick.custom {
240
+ background: transparent none;
241
+ }
242
+ .slider-tick.custom::before {
243
+ line-height: 20px;
244
+ font-size: 20px;
245
+ content: '\2605';
246
+ color: #726204;
247
+ }
248
+ .slider-tick.in-selection {
249
+ background-image: -webkit-linear-gradient(top, #89cdef 0%, #81bfde 100%);
250
+ background-image: -o-linear-gradient(top, #89cdef 0%, #81bfde 100%);
251
+ background-image: linear-gradient(to bottom, #89cdef 0%, #81bfde 100%);
252
+ background-repeat: repeat-x;
253
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff89cdef', endColorstr='#ff81bfde', GradientType=0);
254
+ opacity: 1;
255
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootstrap-slider-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.3.5
4
+ version: 5.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pedr Browne