jquery-datetimepicker 0.0.6 → 0.0.7
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.
- data/lib/jquery-datetimepicker/version.rb +1 -1
- data/vendor/assets/images/cal-month-next-arrow.png +0 -0
- data/vendor/assets/images/cal-month-prev-arrow.png +0 -0
- data/vendor/assets/images/down-arrow-cal.png +0 -0
- data/vendor/assets/images/table-sort-arrow-down.png +0 -0
- data/vendor/assets/images/up-arrow-cal.png +0 -0
- data/vendor/assets/stylesheets/jquery-datetimepicker.css.scss +6 -6
- metadata +6 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
left: 13px;
|
|
69
69
|
|
|
70
70
|
span{
|
|
71
|
-
background: url(
|
|
71
|
+
background: url(cal-month-prev-arrow.png) 0 0 no-repeat;
|
|
72
72
|
top: 13px;
|
|
73
73
|
margin-top: 0;
|
|
74
74
|
left: 9px;
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
top: 7px;
|
|
80
80
|
right: 0;
|
|
81
81
|
span{
|
|
82
|
-
background: url(
|
|
82
|
+
background: url(cal-month-next-arrow.png) 0 0 no-repeat;;
|
|
83
83
|
top:18px;
|
|
84
84
|
}
|
|
85
85
|
}
|
|
@@ -161,7 +161,7 @@
|
|
|
161
161
|
|
|
162
162
|
.clock-up-arrow{
|
|
163
163
|
height: 10px;
|
|
164
|
-
background: url(
|
|
164
|
+
background: url(up-arrow-cal.png) no-repeat center center;
|
|
165
165
|
width: 24px;
|
|
166
166
|
margin-bottom: 5px;
|
|
167
167
|
cursor: pointer;
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
|
|
170
170
|
.clock-down-arrow{
|
|
171
171
|
height: 10px;
|
|
172
|
-
background: url(
|
|
172
|
+
background: url(down-arrow-cal.png) no-repeat center center;
|
|
173
173
|
width: 24px;
|
|
174
174
|
margin-top: 5px;
|
|
175
175
|
cursor: pointer;
|
|
@@ -219,7 +219,7 @@
|
|
|
219
219
|
.alerts-label{
|
|
220
220
|
float: left;
|
|
221
221
|
font-size: 12px;
|
|
222
|
-
background: url(
|
|
222
|
+
background: url(reminder-env.png) no-repeat 0 center;
|
|
223
223
|
padding: 20px 35px;
|
|
224
224
|
}
|
|
225
225
|
|
|
@@ -347,7 +347,7 @@
|
|
|
347
347
|
}
|
|
348
348
|
|
|
349
349
|
a.selected{
|
|
350
|
-
background-image: url(
|
|
350
|
+
background-image: url(table-sort-arrow-down.png);
|
|
351
351
|
background-position: 99px center;
|
|
352
352
|
background-repeat: no-repeat;
|
|
353
353
|
}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jquery-datetimepicker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.7
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -25,6 +25,11 @@ files:
|
|
|
25
25
|
- jquery-datetimepicker.gemspec
|
|
26
26
|
- lib/jquery-datetimepicker.rb
|
|
27
27
|
- lib/jquery-datetimepicker/version.rb
|
|
28
|
+
- vendor/assets/images/cal-month-next-arrow.png
|
|
29
|
+
- vendor/assets/images/cal-month-prev-arrow.png
|
|
30
|
+
- vendor/assets/images/down-arrow-cal.png
|
|
31
|
+
- vendor/assets/images/table-sort-arrow-down.png
|
|
32
|
+
- vendor/assets/images/up-arrow-cal.png
|
|
28
33
|
- vendor/assets/javascripts/jquery-datetimepicker.js
|
|
29
34
|
- vendor/assets/stylesheets/jquery-datetimepicker.css.scss
|
|
30
35
|
homepage: https://github.com/BigPurpleDot/jquery-datetimepicker
|