Skip to content
This repository was archived by the owner on Feb 18, 2022. It is now read-only.

Commit 45880fb

Browse files
committed
new release 2.1.11
1 parent 3c4746c commit 45880fb

File tree

6 files changed

+1123
-6
lines changed

6 files changed

+1123
-6
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angularjs-datepicker",
3-
"version": "2.1.10",
3+
"version": "2.1.11",
44
"description": "A datepicker directive for angularjs.",
55
"authors": [
66
"Filippo Oretti <filippo.oretti@gmail.com",

dist/angular-datepicker.css

Lines changed: 208 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,208 @@
1+
datepicker a, [datepicker] a, .datepicker a{
2+
color:inherit;
3+
text-decoration:none;
4+
}
5+
datepicker a:hover, [datepicker] a:hover, .datepicker a:hover{
6+
text-decoration:none;
7+
}
8+
datepicker select, datepicker select:focus, datepicker select:hover,
9+
.datepicker select, .datepicker select:focus, .datepicker select:hover,
10+
[datepicker] select, [datepicker] select:focus, [datepicker] select:hover{
11+
width:100%;
12+
overflow: hidden;
13+
background:none;
14+
color:#fff;
15+
background-color: #138EFA;
16+
border-radius:2px;
17+
border: 0;
18+
margin-top:5px;
19+
}
20+
datepicker, .datepicker, [datepicker],
21+
._720kb-datepicker-calendar-header,
22+
._720kb-datepicker-calendar-body,
23+
._720kb-datepicker-calendar-days-header,
24+
._720kb-datepicker-calendar-years-pagination-pages {
25+
font-family: Helvetica Neue, Arial, sans-serif;
26+
font-size: 13.5px;
27+
-webkit-box-sizing: border-box;
28+
-moz-box-sizing: border-box;
29+
-ms-box-sizing: border-box;
30+
box-sizing: border-box;
31+
width: 100%;
32+
margin: 0 auto;
33+
float: left;
34+
clear: right;
35+
position: relative;
36+
}
37+
._720kb-datepicker-calendar {
38+
background: white;
39+
color: #333;
40+
position: absolute;
41+
z-index: 999;
42+
min-width: 220px;
43+
margin: 0 auto;
44+
width: 101%;
45+
-webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
46+
-moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
47+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
48+
visibility: hidden;
49+
overflow:hidden;
50+
margin-left:-0.5%;
51+
padding: 0 0 2% 0;
52+
-webkit-border-radius: 3px;
53+
-moz-border-radius: 3px;
54+
border-radius: 3px;
55+
}
56+
._720kb-datepicker-calendar._720kb-datepicker-open,._720kb-datepicker-calendar._720kb-datepicker-forced-to-open {
57+
visibility: visible;
58+
}
59+
._720kb-datepicker-calendar-header {
60+
text-align: center;
61+
font-size: 15px;
62+
line-height: 40px;
63+
}
64+
._720kb-datepicker-calendar-header:nth-child(odd) {
65+
background: #138EFA;
66+
}
67+
._720kb-datepicker-calendar-header:nth-child(even) {
68+
background: #7BC6FC;
69+
}
70+
._720kb-datepicker-calendar-header-left,
71+
._720kb-datepicker-calendar-header-middle,
72+
._720kb-datepicker-calendar-header-right {
73+
width: 15%;
74+
float: left;
75+
}
76+
._720kb-datepicker-calendar-header-middle {
77+
width: 70%;
78+
}
79+
80+
._720kb-datepicker-calendar-header-closed-pagination::after {
81+
content: " \25BE";
82+
}
83+
84+
._720kb-datepicker-calendar-header-opened-pagination::after {
85+
content: " \25BE";
86+
margin-left: 4px;
87+
position: relative;
88+
bottom: -3px;
89+
display:inline-block;
90+
-webkit-transform: rotate(180deg);
91+
-moz-transform: rotate(180deg);
92+
-o-transform: rotate(180deg);
93+
-ms-transform: rotate(180deg);
94+
transform: rotate(180deg);
95+
}
96+
._720kb-datepicker-calendar-body {
97+
width: 96%;
98+
margin: 2%;
99+
text-align: center;
100+
}
101+
._720kb-datepicker-calendar-day {
102+
cursor: pointer;
103+
font-size: 12.5px;
104+
width: 12.2%;
105+
margin:5px 1%;
106+
padding: 1.5% 0;
107+
float: left;
108+
-webkit-border-radius: 1px;
109+
-moz-border-radius: 1px;
110+
border-radius: 1px;
111+
}
112+
._720kb-datepicker-calendar-day:hover,._720kb-datepicker-calendar-day._720kb-datepicker-active {
113+
background: rgba(0, 0, 0, 0.03);
114+
}
115+
._720kb-datepicker-calendar-header a, ._720kb-datepicker-calendar-header a:hover {
116+
text-decoration:none;
117+
padding:3% 9% 4% 9%;
118+
font-size: 13.5px;
119+
color:rgba(0, 0, 0, 0.55);
120+
font-weight: bold;
121+
-webkit-border-radius: 3px;
122+
-moz-border-radius: 3px;
123+
border-radius: 3px;
124+
}
125+
._720kb-datepicker-calendar-header a:hover {
126+
color:rgba(0, 0, 0, 0.9);
127+
background: rgba(255, 255, 255, 0.45);
128+
}
129+
._720kb-datepicker-calendar-month {
130+
color:#fff;
131+
}
132+
._720kb-datepicker-calendar-month span {
133+
font-size: 13px;
134+
color:rgba(0, 0, 0, 0.4);
135+
}
136+
._720kb-datepicker-calendar-month a span i {
137+
font-style: normal;
138+
font-size:15px;
139+
}
140+
._720kb-datepicker-calendar-month a, ._720kb-datepicker-calendar-month a:hover {
141+
padding: 3px;
142+
margin-left:1%;
143+
}
144+
._720kb-datepicker-calendar-years-pagination{
145+
padding:2% 0 0 0;
146+
float:left;
147+
clear: right;
148+
width: 100%;
149+
}
150+
._720kb-datepicker-calendar-years-pagination a, ._720kb-datepicker-calendar-years-pagination a:hover {
151+
font-size:12px;
152+
padding:0 7px;
153+
font-weight: normal;
154+
margin:3px 1% 0 1%;
155+
line-height: 20px;
156+
display: inline-block;
157+
}
158+
._720kb-datepicker-calendar-years-pagination a._720kb-datepicker-active {
159+
color:rgba(0, 0, 0, 0.9);
160+
font-weight: 500;
161+
background: rgba(255, 255, 255, 0.45);
162+
}
163+
._720kb-datepicker-calendar-years-pagination-pages a,._720kb-datepicker-calendar-years-pagination-pages a:hover{
164+
padding:5px 10px;
165+
}
166+
._720kb-datepicker-calendar-days-header{
167+
max-width: 100%;
168+
margin:0 auto;
169+
padding:0 2% 0 2%;
170+
background: rgba(19, 142, 250, 0.08);
171+
border-bottom:1px solid rgba(0,0,0,0.02);
172+
}
173+
._720kb-datepicker-calendar-days-header div{
174+
width: 14.18%;
175+
font-weight: 500;
176+
font-size: 11.5px;
177+
padding:10px 0;
178+
float:left;
179+
text-align: center;
180+
color:rgba(0,0,0,0.7);
181+
}
182+
._720kb-datepicker-calendar-days
183+
._720kb-datepicker-default-button{
184+
font-size: 18.5px;
185+
position: relative;
186+
bottom:-0.5px;
187+
}
188+
._720kb-datepicker-default-button{
189+
padding:0 4.5px;
190+
}
191+
._720kb-datepicker-calendar-header-middle._720kb-datepicker-mobile-item{
192+
width:95%;
193+
float:none;
194+
margin:0 auto;
195+
}
196+
._720kb-datepicker-item-hidden{
197+
visibility:hidden;
198+
}
199+
._720kb-datepicker-calendar-day._720kb-datepicker-disabled,
200+
._720kb-datepicker-calendar-day._720kb-datepicker-disabled:hover,
201+
._720kb-datepicker-calendar-years-pagination a._720kb-datepicker-disabled,
202+
._720kb-datepicker-calendar-years-pagination a._720kb-datepicker-disabled:hover,
203+
._720kb-datepicker-calendar-years-pagination a._720kb-datepicker-active._720kb-datepicker-disabled,
204+
._720kb-datepicker-calendar-years-pagination a._720kb-datepicker-active._720kb-datepicker-disabled:hover{
205+
color:rgba(0,0,0,0.2);
206+
background: rgba(25,2,0,0.02);
207+
cursor: default;
208+
}

0 commit comments

Comments
 (0)