nouislider-rails 8.0.2 → 8.2.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.
@@ -1,4 +1,4 @@
1
1
  /*
2
2
  *= require nouislider/nouislider
3
- *= require nouislider/pips
3
+ *= require nouislider/nouislider.pips
4
4
  */
@@ -1,162 +1,163 @@
1
-
2
- /* Functional styling;
3
- * These styles are required for noUiSlider to function.
4
- * You don't need to change these rules to apply your design.
5
- */
6
- .noUi-target,
7
- .noUi-target * {
8
- -webkit-touch-callout: none;
9
- -webkit-user-select: none;
10
- -ms-touch-action: none;
11
- -ms-user-select: none;
12
- -moz-user-select: none;
13
- -moz-box-sizing: border-box;
14
- box-sizing: border-box;
15
- }
16
- .noUi-target {
17
- position: relative;
18
- direction: ltr;
19
- }
20
- .noUi-base {
21
- width: 100%;
22
- height: 100%;
23
- position: relative;
24
- z-index: 1; /* Fix 401 */
25
- }
26
- .noUi-origin {
27
- position: absolute;
28
- right: 0;
29
- top: 0;
30
- left: 0;
31
- bottom: 0;
32
- }
33
- .noUi-handle {
34
- position: relative;
35
- z-index: 1;
36
- }
37
- .noUi-stacking .noUi-handle {
38
- /* This class is applied to the lower origin when
39
- its values is > 50%. */
40
- z-index: 10;
41
- }
42
- .noUi-state-tap .noUi-origin {
43
- -webkit-transition: left 0.3s, top 0.3s;
44
- transition: left 0.3s, top 0.3s;
45
- }
46
- .noUi-state-drag * {
47
- cursor: inherit !important;
48
- }
49
-
50
- /* Painting and performance;
51
- * Browsers can paint handles in their own layer.
52
- */
53
- .noUi-base {
54
- -webkit-transform: translate3d(0,0,0);
55
- transform: translate3d(0,0,0);
56
- }
57
-
58
- /* Slider size and handle placement;
59
- */
60
- .noUi-horizontal {
61
- height: 18px;
62
- }
63
- .noUi-horizontal .noUi-handle {
64
- width: 34px;
65
- height: 28px;
66
- left: -17px;
67
- top: -6px;
68
- }
69
- .noUi-vertical {
70
- width: 18px;
71
- }
72
- .noUi-vertical .noUi-handle {
73
- width: 28px;
74
- height: 34px;
75
- left: -6px;
76
- top: -17px;
77
- }
78
-
79
- /* Styling;
80
- */
81
- .noUi-background {
82
- background: #FAFAFA;
83
- box-shadow: inset 0 1px 1px #f0f0f0;
84
- }
85
- .noUi-connect {
86
- background: #3FB8AF;
87
- box-shadow: inset 0 0 3px rgba(51,51,51,0.45);
88
- -webkit-transition: background 450ms;
89
- transition: background 450ms;
90
- }
91
- .noUi-origin {
92
- border-radius: 2px;
93
- }
94
- .noUi-target {
95
- border-radius: 4px;
96
- border: 1px solid #D3D3D3;
97
- box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
98
- }
99
- .noUi-target.noUi-connect {
100
- box-shadow: inset 0 0 3px rgba(51,51,51,0.45), 0 3px 6px -5px #BBB;
101
- }
102
-
103
- /* Handles and cursors;
104
- */
105
- .noUi-dragable {
106
- cursor: w-resize;
107
- }
108
- .noUi-vertical .noUi-dragable {
109
- cursor: n-resize;
110
- }
111
- .noUi-handle {
112
- border: 1px solid #D9D9D9;
113
- border-radius: 3px;
114
- background: #FFF;
115
- cursor: default;
116
- box-shadow: inset 0 0 1px #FFF,
117
- inset 0 1px 7px #EBEBEB,
118
- 0 3px 6px -3px #BBB;
119
- }
120
- .noUi-active {
121
- box-shadow: inset 0 0 1px #FFF,
122
- inset 0 1px 7px #DDD,
123
- 0 3px 6px -3px #BBB;
124
- }
125
-
126
- /* Handle stripes;
127
- */
128
- .noUi-handle:before,
129
- .noUi-handle:after {
130
- content: "";
131
- display: block;
132
- position: absolute;
133
- height: 14px;
134
- width: 1px;
135
- background: #E8E7E6;
136
- left: 14px;
137
- top: 6px;
138
- }
139
- .noUi-handle:after {
140
- left: 17px;
141
- }
142
- .noUi-vertical .noUi-handle:before,
143
- .noUi-vertical .noUi-handle:after {
144
- width: 14px;
145
- height: 1px;
146
- left: 6px;
147
- top: 14px;
148
- }
149
- .noUi-vertical .noUi-handle:after {
150
- top: 17px;
151
- }
152
-
153
- /* Disabled state;
154
- */
155
- [disabled].noUi-connect,
156
- [disabled] .noUi-connect {
157
- background: #B8B8B8;
158
- }
159
- [disabled].noUi-origin,
160
- [disabled] .noUi-handle {
161
- cursor: not-allowed;
162
- }
1
+
2
+ /* Functional styling;
3
+ * These styles are required for noUiSlider to function.
4
+ * You don't need to change these rules to apply your design.
5
+ */
6
+ .noUi-target,
7
+ .noUi-target * {
8
+ -webkit-touch-callout: none;
9
+ -webkit-user-select: none;
10
+ -ms-touch-action: none;
11
+ touch-action: none;
12
+ -ms-user-select: none;
13
+ -moz-user-select: none;
14
+ -moz-box-sizing: border-box;
15
+ box-sizing: border-box;
16
+ }
17
+ .noUi-target {
18
+ position: relative;
19
+ direction: ltr;
20
+ }
21
+ .noUi-base {
22
+ width: 100%;
23
+ height: 100%;
24
+ position: relative;
25
+ z-index: 1; /* Fix 401 */
26
+ }
27
+ .noUi-origin {
28
+ position: absolute;
29
+ right: 0;
30
+ top: 0;
31
+ left: 0;
32
+ bottom: 0;
33
+ }
34
+ .noUi-handle {
35
+ position: relative;
36
+ z-index: 1;
37
+ }
38
+ .noUi-stacking .noUi-handle {
39
+ /* This class is applied to the lower origin when
40
+ its values is > 50%. */
41
+ z-index: 10;
42
+ }
43
+ .noUi-state-tap .noUi-origin {
44
+ -webkit-transition: left 0.3s, top 0.3s;
45
+ transition: left 0.3s, top 0.3s;
46
+ }
47
+ .noUi-state-drag * {
48
+ cursor: inherit !important;
49
+ }
50
+
51
+ /* Painting and performance;
52
+ * Browsers can paint handles in their own layer.
53
+ */
54
+ .noUi-base {
55
+ -webkit-transform: translate3d(0,0,0);
56
+ transform: translate3d(0,0,0);
57
+ }
58
+
59
+ /* Slider size and handle placement;
60
+ */
61
+ .noUi-horizontal {
62
+ height: 18px;
63
+ }
64
+ .noUi-horizontal .noUi-handle {
65
+ width: 34px;
66
+ height: 28px;
67
+ left: -17px;
68
+ top: -6px;
69
+ }
70
+ .noUi-vertical {
71
+ width: 18px;
72
+ }
73
+ .noUi-vertical .noUi-handle {
74
+ width: 28px;
75
+ height: 34px;
76
+ left: -6px;
77
+ top: -17px;
78
+ }
79
+
80
+ /* Styling;
81
+ */
82
+ .noUi-background {
83
+ background: #FAFAFA;
84
+ box-shadow: inset 0 1px 1px #f0f0f0;
85
+ }
86
+ .noUi-connect {
87
+ background: #3FB8AF;
88
+ box-shadow: inset 0 0 3px rgba(51,51,51,0.45);
89
+ -webkit-transition: background 450ms;
90
+ transition: background 450ms;
91
+ }
92
+ .noUi-origin {
93
+ border-radius: 2px;
94
+ }
95
+ .noUi-target {
96
+ border-radius: 4px;
97
+ border: 1px solid #D3D3D3;
98
+ box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
99
+ }
100
+ .noUi-target.noUi-connect {
101
+ box-shadow: inset 0 0 3px rgba(51,51,51,0.45), 0 3px 6px -5px #BBB;
102
+ }
103
+
104
+ /* Handles and cursors;
105
+ */
106
+ .noUi-draggable {
107
+ cursor: w-resize;
108
+ }
109
+ .noUi-vertical .noUi-draggable {
110
+ cursor: n-resize;
111
+ }
112
+ .noUi-handle {
113
+ border: 1px solid #D9D9D9;
114
+ border-radius: 3px;
115
+ background: #FFF;
116
+ cursor: default;
117
+ box-shadow: inset 0 0 1px #FFF,
118
+ inset 0 1px 7px #EBEBEB,
119
+ 0 3px 6px -3px #BBB;
120
+ }
121
+ .noUi-active {
122
+ box-shadow: inset 0 0 1px #FFF,
123
+ inset 0 1px 7px #DDD,
124
+ 0 3px 6px -3px #BBB;
125
+ }
126
+
127
+ /* Handle stripes;
128
+ */
129
+ .noUi-handle:before,
130
+ .noUi-handle:after {
131
+ content: "";
132
+ display: block;
133
+ position: absolute;
134
+ height: 14px;
135
+ width: 1px;
136
+ background: #E8E7E6;
137
+ left: 14px;
138
+ top: 6px;
139
+ }
140
+ .noUi-handle:after {
141
+ left: 17px;
142
+ }
143
+ .noUi-vertical .noUi-handle:before,
144
+ .noUi-vertical .noUi-handle:after {
145
+ width: 14px;
146
+ height: 1px;
147
+ left: 6px;
148
+ top: 14px;
149
+ }
150
+ .noUi-vertical .noUi-handle:after {
151
+ top: 17px;
152
+ }
153
+
154
+ /* Disabled state;
155
+ */
156
+ [disabled].noUi-connect,
157
+ [disabled] .noUi-connect {
158
+ background: #B8B8B8;
159
+ }
160
+ [disabled].noUi-origin,
161
+ [disabled] .noUi-handle {
162
+ cursor: not-allowed;
163
+ }
@@ -9,7 +9,6 @@
9
9
  }
10
10
  .noUi-pips {
11
11
  position: absolute;
12
- font: 400 12px Arial;
13
12
  color: #999;
14
13
  }
15
14
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nouislider-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.0.2
4
+ version: 8.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Charles Lee
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-12-02 00:00:00.000000000 Z
11
+ date: 2016-01-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -52,7 +52,7 @@ dependencies:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
- description: 'Currently tracking 8.0.2 of noUiSlider: https://github.com/leongersen/noUiSlider).
55
+ description: 'Currently tracking 8.2.1 of noUiSlider: https://github.com/leongersen/noUiSlider).
56
56
  All credit and thanks to @leongersen for the awesome library.'
57
57
  email:
58
58
  - chug2k@gmail.com