bootstrap-timepicker-rails-addon 0.2.6.1 → 0.2.6.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +22 -22
- data/README.md +62 -62
- data/lib/bootstrap-timepicker-rails-addon.rb +12 -12
- data/lib/bootstrap-timepicker-rails-addon/version.rb +9 -9
- data/vendor/assets/javascripts/bootstrap-timepicker.js +1111 -1097
- data/vendor/assets/stylesheets/bootstrap-timepicker.css +146 -146
- metadata +16 -16
@@ -1,146 +1,146 @@
|
|
1
|
-
/*!
|
2
|
-
* Timepicker Component for Twitter Bootstrap
|
3
|
-
*
|
4
|
-
* Copyright 2013 Joris de Wit
|
5
|
-
*
|
6
|
-
* Contributors https://github.com/jdewit/bootstrap-timepicker/graphs/contributors
|
7
|
-
*
|
8
|
-
* For the full copyright and license information, please view the LICENSE
|
9
|
-
* file that was distributed with this source code.
|
10
|
-
*/
|
11
|
-
.bootstrap-timepicker {
|
12
|
-
position: relative;
|
13
|
-
}
|
14
|
-
.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu {
|
15
|
-
left: auto;
|
16
|
-
right: 0;
|
17
|
-
}
|
18
|
-
.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:before {
|
19
|
-
left: auto;
|
20
|
-
right: 12px;
|
21
|
-
}
|
22
|
-
.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:after {
|
23
|
-
left: auto;
|
24
|
-
right: 13px;
|
25
|
-
}
|
26
|
-
.bootstrap-timepicker .add-on {
|
27
|
-
cursor: pointer;
|
28
|
-
}
|
29
|
-
.bootstrap-timepicker .add-on i {
|
30
|
-
display: inline-block;
|
31
|
-
width: 16px;
|
32
|
-
height: 16px;
|
33
|
-
}
|
34
|
-
.bootstrap-timepicker-widget.dropdown-menu {
|
35
|
-
padding: 4px;
|
36
|
-
}
|
37
|
-
.bootstrap-timepicker-widget.dropdown-menu.open {
|
38
|
-
display: inline-block;
|
39
|
-
}
|
40
|
-
.bootstrap-timepicker-widget.dropdown-menu:before {
|
41
|
-
border-bottom: 7px solid rgba(0, 0, 0, 0.2);
|
42
|
-
border-left: 7px solid transparent;
|
43
|
-
border-right: 7px solid transparent;
|
44
|
-
content: "";
|
45
|
-
display: inline-block;
|
46
|
-
position: absolute;
|
47
|
-
}
|
48
|
-
.bootstrap-timepicker-widget.dropdown-menu:after {
|
49
|
-
border-bottom: 6px solid #FFFFFF;
|
50
|
-
border-left: 6px solid transparent;
|
51
|
-
border-right: 6px solid transparent;
|
52
|
-
content: "";
|
53
|
-
display: inline-block;
|
54
|
-
position: absolute;
|
55
|
-
}
|
56
|
-
.bootstrap-timepicker-widget.timepicker-orient-left:before {
|
57
|
-
left: 6px;
|
58
|
-
}
|
59
|
-
.bootstrap-timepicker-widget.timepicker-orient-left:after {
|
60
|
-
left: 7px;
|
61
|
-
}
|
62
|
-
.bootstrap-timepicker-widget.timepicker-orient-right:before {
|
63
|
-
right: 6px;
|
64
|
-
}
|
65
|
-
.bootstrap-timepicker-widget.timepicker-orient-right:after {
|
66
|
-
right: 7px;
|
67
|
-
}
|
68
|
-
.bootstrap-timepicker-widget.timepicker-orient-top:before {
|
69
|
-
top: -7px;
|
70
|
-
}
|
71
|
-
.bootstrap-timepicker-widget.timepicker-orient-top:after {
|
72
|
-
top: -6px;
|
73
|
-
}
|
74
|
-
.bootstrap-timepicker-widget.timepicker-orient-bottom:before {
|
75
|
-
bottom: -7px;
|
76
|
-
border-bottom: 0;
|
77
|
-
border-top: 7px solid #999;
|
78
|
-
}
|
79
|
-
.bootstrap-timepicker-widget.timepicker-orient-bottom:after {
|
80
|
-
bottom: -6px;
|
81
|
-
border-bottom: 0;
|
82
|
-
border-top: 6px solid #ffffff;
|
83
|
-
}
|
84
|
-
.bootstrap-timepicker-widget a.btn,
|
85
|
-
.bootstrap-timepicker-widget input {
|
86
|
-
border-radius: 4px;
|
87
|
-
}
|
88
|
-
.bootstrap-timepicker-widget table {
|
89
|
-
width: 100%;
|
90
|
-
margin: 0;
|
91
|
-
}
|
92
|
-
.bootstrap-timepicker-widget table td {
|
93
|
-
text-align: center;
|
94
|
-
height: 30px;
|
95
|
-
margin: 0;
|
96
|
-
padding: 2px;
|
97
|
-
}
|
98
|
-
.bootstrap-timepicker-widget table td:not(.separator) {
|
99
|
-
min-width: 30px;
|
100
|
-
}
|
101
|
-
.bootstrap-timepicker-widget table td span {
|
102
|
-
width: 100%;
|
103
|
-
}
|
104
|
-
.bootstrap-timepicker-widget table td a {
|
105
|
-
border: 1px transparent solid;
|
106
|
-
width: 100%;
|
107
|
-
display: inline-block;
|
108
|
-
margin: 0;
|
109
|
-
padding: 8px 0;
|
110
|
-
outline: 0;
|
111
|
-
color: #333;
|
112
|
-
}
|
113
|
-
.bootstrap-timepicker-widget table td a:hover {
|
114
|
-
text-decoration: none;
|
115
|
-
background-color: #eee;
|
116
|
-
-webkit-border-radius: 4px;
|
117
|
-
-moz-border-radius: 4px;
|
118
|
-
border-radius: 4px;
|
119
|
-
border-color: #ddd;
|
120
|
-
}
|
121
|
-
.bootstrap-timepicker-widget table td a i {
|
122
|
-
margin-top: 2px;
|
123
|
-
font-size: 18px;
|
124
|
-
}
|
125
|
-
.bootstrap-timepicker-widget table td input {
|
126
|
-
width: 25px;
|
127
|
-
margin: 0;
|
128
|
-
text-align: center;
|
129
|
-
}
|
130
|
-
.bootstrap-timepicker-widget .modal-content {
|
131
|
-
padding: 4px;
|
132
|
-
}
|
133
|
-
@media (min-width: 767px) {
|
134
|
-
.bootstrap-timepicker-widget.modal {
|
135
|
-
width: 200px;
|
136
|
-
margin-left: -100px;
|
137
|
-
}
|
138
|
-
}
|
139
|
-
@media (max-width: 767px) {
|
140
|
-
.bootstrap-timepicker {
|
141
|
-
width: 100%;
|
142
|
-
}
|
143
|
-
.bootstrap-timepicker .dropdown-menu {
|
144
|
-
width: 100%;
|
145
|
-
}
|
146
|
-
}
|
1
|
+
/*!
|
2
|
+
* Timepicker Component for Twitter Bootstrap
|
3
|
+
*
|
4
|
+
* Copyright 2013 Joris de Wit
|
5
|
+
*
|
6
|
+
* Contributors https://github.com/jdewit/bootstrap-timepicker/graphs/contributors
|
7
|
+
*
|
8
|
+
* For the full copyright and license information, please view the LICENSE
|
9
|
+
* file that was distributed with this source code.
|
10
|
+
*/
|
11
|
+
.bootstrap-timepicker {
|
12
|
+
position: relative;
|
13
|
+
}
|
14
|
+
.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu {
|
15
|
+
left: auto;
|
16
|
+
right: 0;
|
17
|
+
}
|
18
|
+
.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:before {
|
19
|
+
left: auto;
|
20
|
+
right: 12px;
|
21
|
+
}
|
22
|
+
.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:after {
|
23
|
+
left: auto;
|
24
|
+
right: 13px;
|
25
|
+
}
|
26
|
+
.bootstrap-timepicker .add-on {
|
27
|
+
cursor: pointer;
|
28
|
+
}
|
29
|
+
.bootstrap-timepicker .add-on i {
|
30
|
+
display: inline-block;
|
31
|
+
width: 16px;
|
32
|
+
height: 16px;
|
33
|
+
}
|
34
|
+
.bootstrap-timepicker-widget.dropdown-menu {
|
35
|
+
padding: 4px;
|
36
|
+
}
|
37
|
+
.bootstrap-timepicker-widget.dropdown-menu.open {
|
38
|
+
display: inline-block;
|
39
|
+
}
|
40
|
+
.bootstrap-timepicker-widget.dropdown-menu:before {
|
41
|
+
border-bottom: 7px solid rgba(0, 0, 0, 0.2);
|
42
|
+
border-left: 7px solid transparent;
|
43
|
+
border-right: 7px solid transparent;
|
44
|
+
content: "";
|
45
|
+
display: inline-block;
|
46
|
+
position: absolute;
|
47
|
+
}
|
48
|
+
.bootstrap-timepicker-widget.dropdown-menu:after {
|
49
|
+
border-bottom: 6px solid #FFFFFF;
|
50
|
+
border-left: 6px solid transparent;
|
51
|
+
border-right: 6px solid transparent;
|
52
|
+
content: "";
|
53
|
+
display: inline-block;
|
54
|
+
position: absolute;
|
55
|
+
}
|
56
|
+
.bootstrap-timepicker-widget.timepicker-orient-left:before {
|
57
|
+
left: 6px;
|
58
|
+
}
|
59
|
+
.bootstrap-timepicker-widget.timepicker-orient-left:after {
|
60
|
+
left: 7px;
|
61
|
+
}
|
62
|
+
.bootstrap-timepicker-widget.timepicker-orient-right:before {
|
63
|
+
right: 6px;
|
64
|
+
}
|
65
|
+
.bootstrap-timepicker-widget.timepicker-orient-right:after {
|
66
|
+
right: 7px;
|
67
|
+
}
|
68
|
+
.bootstrap-timepicker-widget.timepicker-orient-top:before {
|
69
|
+
top: -7px;
|
70
|
+
}
|
71
|
+
.bootstrap-timepicker-widget.timepicker-orient-top:after {
|
72
|
+
top: -6px;
|
73
|
+
}
|
74
|
+
.bootstrap-timepicker-widget.timepicker-orient-bottom:before {
|
75
|
+
bottom: -7px;
|
76
|
+
border-bottom: 0;
|
77
|
+
border-top: 7px solid #999;
|
78
|
+
}
|
79
|
+
.bootstrap-timepicker-widget.timepicker-orient-bottom:after {
|
80
|
+
bottom: -6px;
|
81
|
+
border-bottom: 0;
|
82
|
+
border-top: 6px solid #ffffff;
|
83
|
+
}
|
84
|
+
.bootstrap-timepicker-widget a.btn,
|
85
|
+
.bootstrap-timepicker-widget input {
|
86
|
+
border-radius: 4px;
|
87
|
+
}
|
88
|
+
.bootstrap-timepicker-widget table {
|
89
|
+
width: 100%;
|
90
|
+
margin: 0;
|
91
|
+
}
|
92
|
+
.bootstrap-timepicker-widget table td {
|
93
|
+
text-align: center;
|
94
|
+
height: 30px;
|
95
|
+
margin: 0;
|
96
|
+
padding: 2px;
|
97
|
+
}
|
98
|
+
.bootstrap-timepicker-widget table td:not(.separator) {
|
99
|
+
min-width: 30px;
|
100
|
+
}
|
101
|
+
.bootstrap-timepicker-widget table td span {
|
102
|
+
width: 100%;
|
103
|
+
}
|
104
|
+
.bootstrap-timepicker-widget table td a {
|
105
|
+
border: 1px transparent solid;
|
106
|
+
width: 100%;
|
107
|
+
display: inline-block;
|
108
|
+
margin: 0;
|
109
|
+
padding: 8px 0;
|
110
|
+
outline: 0;
|
111
|
+
color: #333;
|
112
|
+
}
|
113
|
+
.bootstrap-timepicker-widget table td a:hover {
|
114
|
+
text-decoration: none;
|
115
|
+
background-color: #eee;
|
116
|
+
-webkit-border-radius: 4px;
|
117
|
+
-moz-border-radius: 4px;
|
118
|
+
border-radius: 4px;
|
119
|
+
border-color: #ddd;
|
120
|
+
}
|
121
|
+
.bootstrap-timepicker-widget table td a i {
|
122
|
+
margin-top: 2px;
|
123
|
+
font-size: 18px;
|
124
|
+
}
|
125
|
+
.bootstrap-timepicker-widget table td input {
|
126
|
+
width: 25px;
|
127
|
+
margin: 0;
|
128
|
+
text-align: center;
|
129
|
+
}
|
130
|
+
.bootstrap-timepicker-widget .modal-content {
|
131
|
+
padding: 4px;
|
132
|
+
}
|
133
|
+
@media (min-width: 767px) {
|
134
|
+
.bootstrap-timepicker-widget.modal {
|
135
|
+
width: 200px;
|
136
|
+
margin-left: -100px;
|
137
|
+
}
|
138
|
+
}
|
139
|
+
@media (max-width: 767px) {
|
140
|
+
.bootstrap-timepicker {
|
141
|
+
width: 100%;
|
142
|
+
}
|
143
|
+
.bootstrap-timepicker .dropdown-menu {
|
144
|
+
width: 100%;
|
145
|
+
}
|
146
|
+
}
|
metadata
CHANGED
@@ -1,61 +1,61 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bootstrap-timepicker-rails-addon
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.6.
|
4
|
+
version: 0.2.6.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thomas Yang
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-07-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '3.1'
|
20
|
-
- - <
|
20
|
+
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: '5.0'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
|
-
- -
|
27
|
+
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
29
|
version: '3.1'
|
30
|
-
- - <
|
30
|
+
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: '5.0'
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: bundler
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
|
-
- -
|
37
|
+
- - ">="
|
38
38
|
- !ruby/object:Gem::Version
|
39
39
|
version: '1.0'
|
40
40
|
type: :development
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
|
-
- -
|
44
|
+
- - ">="
|
45
45
|
- !ruby/object:Gem::Version
|
46
46
|
version: '1.0'
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: rake
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
50
50
|
requirements:
|
51
|
-
- -
|
51
|
+
- - ">="
|
52
52
|
- !ruby/object:Gem::Version
|
53
53
|
version: '0'
|
54
54
|
type: :development
|
55
55
|
prerelease: false
|
56
56
|
version_requirements: !ruby/object:Gem::Requirement
|
57
57
|
requirements:
|
58
|
-
- -
|
58
|
+
- - ">="
|
59
59
|
- !ruby/object:Gem::Version
|
60
60
|
version: '0'
|
61
61
|
description: This gem provides bootstrap-timepicker.js and bootstrap-timepicker.css
|
@@ -66,12 +66,12 @@ executables: []
|
|
66
66
|
extensions: []
|
67
67
|
extra_rdoc_files: []
|
68
68
|
files:
|
69
|
-
-
|
69
|
+
- LICENSE
|
70
|
+
- README.md
|
70
71
|
- lib/bootstrap-timepicker-rails-addon.rb
|
72
|
+
- lib/bootstrap-timepicker-rails-addon/version.rb
|
71
73
|
- vendor/assets/javascripts/bootstrap-timepicker.js
|
72
74
|
- vendor/assets/stylesheets/bootstrap-timepicker.css
|
73
|
-
- LICENSE
|
74
|
-
- README.md
|
75
75
|
homepage: https://github.com/ywjno/bootstrap-timepicker-rails-addon
|
76
76
|
licenses: []
|
77
77
|
metadata: {}
|
@@ -81,17 +81,17 @@ require_paths:
|
|
81
81
|
- lib
|
82
82
|
required_ruby_version: !ruby/object:Gem::Requirement
|
83
83
|
requirements:
|
84
|
-
- -
|
84
|
+
- - ">="
|
85
85
|
- !ruby/object:Gem::Version
|
86
86
|
version: '0'
|
87
87
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
88
88
|
requirements:
|
89
|
-
- -
|
89
|
+
- - ">="
|
90
90
|
- !ruby/object:Gem::Version
|
91
91
|
version: '0'
|
92
92
|
requirements: []
|
93
93
|
rubyforge_project:
|
94
|
-
rubygems_version: 2.
|
94
|
+
rubygems_version: 2.4.5
|
95
95
|
signing_key:
|
96
96
|
specification_version: 4
|
97
97
|
summary: Use bootstrap-timepicker with Rails 3 and 4
|