Skip to content
This repository was archived by the owner on Jul 11, 2019. It is now read-only.

Commit 8aa28a6

Browse files
committed
Updated bootstrap-datetimepicker.js to version 2.1.30
1 parent 737bec7 commit 8aa28a6

File tree

67 files changed

+256
-134
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+256
-134
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,11 @@ Bootstrap3 and jQuery have to be included along with `{{ form.media }}`
9090
Release Notes
9191
-------------------------------
9292

93+
###### v2.2.3
94+
95+
* Updated bootstrap-datetimepicker.js to version 2.1.30
96+
97+
9398
###### v2.0.0
9499

95100
* Includes bootstrap-datetimepicker.js version 2.1.11 with moment.js

README.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,10 @@ Bootstrap3 and jQuery have to be included along with
9898
Release Notes
9999
-------------
100100

101+
v2.2.3
102+
103+
- Updated bootstrap-datetimepicker.js to version 2.1.30
104+
101105
v2.0.0
102106

103107
- Includes bootstrap-datetimepicker.js version 2.1.11 with moment.js
Lines changed: 39 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -1,195 +1,174 @@
1+
/**
2+
* Build file for the dist version of datetimepicker.css
3+
*/
14
/*!
2-
* Datepicker for Bootstrap v3
3-
*
5+
* Datetimepicker for Bootstrap v3
6+
* https://github.com/Eonasdan/bootstrap-datetimepicker/
47
* Copyright 2012 Stefan Petre
58
* Licensed under the Apache License v2.0
69
* http://www.apache.org/licenses/LICENSE-2.0
710
*
811
*/
9-
1012
.bootstrap-datetimepicker-widget {
1113
top: 0;
1214
left: 0;
13-
z-index: 3000;
1415
width: 250px;
1516
padding: 4px;
1617
margin-top: 1px;
18+
z-index: 99999;
1719
border-radius: 4px;
20+
/*.dow {
21+
border-top: 1px solid #ddd !important;
22+
}*/
23+
}
24+
.bootstrap-datetimepicker-widget .btn {
25+
padding: 6px;
1826
}
19-
2027
.bootstrap-datetimepicker-widget:before {
21-
position: absolute;
22-
top: -7px;
23-
left: 6px;
28+
content: '';
2429
display: inline-block;
30+
border-left: 7px solid transparent;
2531
border-right: 7px solid transparent;
2632
border-bottom: 7px solid #ccc;
27-
border-left: 7px solid transparent;
2833
border-bottom-color: rgba(0, 0, 0, 0.2);
29-
content: '';
34+
position: absolute;
35+
top: -7px;
36+
left: 6px;
3037
}
31-
3238
.bootstrap-datetimepicker-widget:after {
33-
position: absolute;
34-
top: -6px;
35-
left: 7px;
39+
content: '';
3640
display: inline-block;
41+
border-left: 6px solid transparent;
3742
border-right: 6px solid transparent;
3843
border-bottom: 6px solid white;
39-
border-left: 6px solid transparent;
40-
content: '';
44+
position: absolute;
45+
top: -6px;
46+
left: 7px;
4147
}
42-
4348
.bootstrap-datetimepicker-widget.pull-right:before {
44-
right: 6px;
4549
left: auto;
50+
right: 6px;
4651
}
47-
4852
.bootstrap-datetimepicker-widget.pull-right:after {
49-
right: 7px;
5053
left: auto;
54+
right: 7px;
5155
}
52-
5356
.bootstrap-datetimepicker-widget > ul {
54-
margin: 0;
5557
list-style-type: none;
58+
margin: 0;
5659
}
57-
5860
.bootstrap-datetimepicker-widget .timepicker-hour,
5961
.bootstrap-datetimepicker-widget .timepicker-minute,
6062
.bootstrap-datetimepicker-widget .timepicker-second {
6163
width: 100%;
62-
font-size: 1.2em;
6364
font-weight: bold;
65+
font-size: 1.2em;
6466
}
65-
6667
.bootstrap-datetimepicker-widget table[data-hour-format="12"] .separator {
6768
width: 4px;
6869
padding: 0;
6970
margin: 0;
7071
}
71-
7272
.bootstrap-datetimepicker-widget .datepicker > div {
7373
display: none;
7474
}
75-
7675
.bootstrap-datetimepicker-widget .picker-switch {
7776
text-align: center;
7877
}
79-
8078
.bootstrap-datetimepicker-widget table {
8179
width: 100%;
8280
margin: 0;
8381
}
84-
8582
.bootstrap-datetimepicker-widget td,
8683
.bootstrap-datetimepicker-widget th {
84+
text-align: center;
8785
width: 20px;
8886
height: 20px;
89-
text-align: center;
9087
border-radius: 4px;
9188
}
92-
9389
.bootstrap-datetimepicker-widget td.day:hover,
9490
.bootstrap-datetimepicker-widget td.hour:hover,
9591
.bootstrap-datetimepicker-widget td.minute:hover,
9692
.bootstrap-datetimepicker-widget td.second:hover {
97-
cursor: pointer;
9893
background: #eeeeee;
94+
cursor: pointer;
9995
}
100-
10196
.bootstrap-datetimepicker-widget td.old,
10297
.bootstrap-datetimepicker-widget td.new {
10398
color: #999999;
10499
}
105-
106100
.bootstrap-datetimepicker-widget td.active,
107101
.bootstrap-datetimepicker-widget td.active:hover {
102+
background-color: #428bca;
108103
color: #fff;
109104
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
110-
background-color: #428bca;
111105
}
112-
113106
.bootstrap-datetimepicker-widget td.disabled,
114107
.bootstrap-datetimepicker-widget td.disabled:hover {
108+
background: none;
115109
color: #999999;
116110
cursor: not-allowed;
117-
background: none;
118111
}
119-
120112
.bootstrap-datetimepicker-widget td span {
121113
display: block;
122-
float: left;
123114
width: 47px;
124115
height: 54px;
125-
margin: 2px;
126116
line-height: 54px;
117+
float: left;
118+
margin: 2px;
127119
cursor: pointer;
128120
border-radius: 4px;
129121
}
130-
131122
.bootstrap-datetimepicker-widget td span:hover {
132123
background: #eeeeee;
133124
}
134-
135125
.bootstrap-datetimepicker-widget td span.active {
126+
background-color: #428bca;
136127
color: #fff;
137128
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
138-
background-color: #428bca;
139129
}
140-
141130
.bootstrap-datetimepicker-widget td span.old {
142131
color: #999999;
143132
}
144-
145133
.bootstrap-datetimepicker-widget td span.disabled,
146134
.bootstrap-datetimepicker-widget td span.disabled:hover {
135+
background: none;
147136
color: #999999;
148137
cursor: not-allowed;
149-
background: none;
150138
}
151-
152139
.bootstrap-datetimepicker-widget th.switch {
153140
width: 145px;
154141
}
155-
156142
.bootstrap-datetimepicker-widget th.next,
157143
.bootstrap-datetimepicker-widget th.prev {
158144
font-size: 21px;
159145
}
160-
161146
.bootstrap-datetimepicker-widget th.disabled,
162147
.bootstrap-datetimepicker-widget th.disabled:hover {
148+
background: none;
163149
color: #999999;
164150
cursor: not-allowed;
165-
background: none;
166151
}
167-
168152
.bootstrap-datetimepicker-widget thead tr:first-child th {
169153
cursor: pointer;
170154
}
171-
172155
.bootstrap-datetimepicker-widget thead tr:first-child th:hover {
173156
background: #eeeeee;
174157
}
175-
176158
.input-group.date .input-group-addon span {
177159
display: block;
160+
cursor: pointer;
178161
width: 16px;
179162
height: 16px;
180-
cursor: pointer;
181163
}
182-
183164
.bootstrap-datetimepicker-widget.left-oriented:before {
184-
right: 6px;
185165
left: auto;
166+
right: 6px;
186167
}
187-
188168
.bootstrap-datetimepicker-widget.left-oriented:after {
189-
right: 7px;
190169
left: auto;
170+
right: 7px;
191171
}
192-
193172
.bootstrap-datetimepicker-widget ul.list-unstyled li.in div.timepicker div.timepicker-picker table.table-condensed tbody > tr > td {
194-
padding: 0 !important;
173+
padding: 0px !important;
195174
}

bootstrap3_datetime/static/bootstrap3_datetime/css/bootstrap-datetimepicker.min.css

100644100755
Lines changed: 3 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)