-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdate_picker.css
More file actions
100 lines (93 loc) · 2.12 KB
/
date_picker.css
File metadata and controls
100 lines (93 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/* input[class*=date], input[class*=Date], input[id*=date], input[id*=Date]{
background: #ffff00 !important;
} */
/* input[class*=Date]{
background: #ffff00 !important;
}
input[id*=date]{
background: #ffff00 !important;
}
input[id*=Date]{
background: #ffff00 !important;
}*/
button[class=detectorbutton]{
display: inline-block;
background-color: red !important;
color: white;
position: absolute !important;
border: 3px solid red !important;
z-index: 5 !important;
}
/* from datepickerwidget.js */
[id="mon"]{
position: relative;
display: block !important;
top: 0;
left: 0;
margin-left: 10% !important;
margin-top: 10% !important;
margin-bottom: 5% !important;
font-size: 2em !important;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
[id="yea"]{
position: absolute;
top: 0;
right: 0;
margin: 10%;
margin-bottom: 5%;
display: inline-block !important;
font-size: 2em !important;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
[id="pickercontainer"]{
position: relative !important;
display: block;
left: auto;
right: auto;
width: 500px;
height: 500px;
background-color: rgb(255, 255, 142);
border: 3px solid black;
z-index: 1000000;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
[id="pickertable"]{
margin-left: auto;
margin-right: auto;
width: 80%;
height: 70%;
font-size: 1.5em;
border: 0;
}
[class="pickertablerow"]{
text-align: right !important;
}
table[class="cbdatepicker"], tr[class="cbdatepicker"], td[class="cbdatepicker"], th[class="cbdatepicker"]{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
text-align: right !important;
padding: 0 !important;
border: 0;
background-color: rgb(255, 255, 142);
}
p[class="navdat"]{
display: inline;
position: absolute;
margin: 1% !important;
}
[id="navtopleft"]{
top:0;
left:0;
}
[id="navtopright"]{
top:0;
right:0;
}
[id="navbotleft"]{
bottom:0;
left:0;
}
[id="navbotright"]{
bottom:0;
right:0;
}