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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
.ui-autocomplete { position: absolute; cursor: default; }
/* workarounds */
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
/*
* jQuery UI Menu 1.8.7
*
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI/Menu#theming
*/
.ui-menu {
list-style:none;
padding: 2px;
margin: 0;
display:block;
float: left;
font-size: 14px;
padding-top:30px;
border-left: 1px solid #222;
max-width: 400px;
line-height:1.5;
}
.ui-menu .ui-menu {
margin-top: -3px;
}
.ui-menu .ui-menu-item {
margin:0;
padding: 0;
zoom: 1;
float: left;
clear: left;
}
.ui-menu .ui-menu-item a {
text-decoration:none;
display:block;
padding:.2em .4em;
line-height:1.5;
zoom:1;
}
.ui-menu .ui-menu-item ,
.ui-menu .ui-menu-item a.ui-state-active {
font-weight: normal;
margin: -1px;
white-space: nowrap;
}
.ui-helper-hidden-accessible{
position:fixed;
top:65px;
left:20px;
text-shadow: -1px 1px 8px #EDE275, 1px -1px 8px #EDE275;
font-size:16px;
}
.ui-datepicker {
background-color: rgb(255,255,255);
background-color: rgba(255,255,255,0.9);
width: 217px;
height: auto;
margin: 5px auto 0;
font-size: 9pt;
border: 1px solid;
-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
-moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
}
.ui-datepicker-title {
text-align: center;
}
.ui-datepicker-prev {
float: left;
background-position: center -30px;
}
.ui-datepicker-next {
float: right;
background-position: center 0;
}
.ui-datepicker-header {
color: #e0e0e0;
font-weight: bold;
-webkit-box-shadow: inset 0 1px 1px 0 rgba(250, 250, 250, 2);
-moz-box-shadow: inset 0 1px 1px 0 rgba(250, 250, 250, .2);
box-shadow: inset 0 1px 1px 0 rgba(250, 250, 250, .2);
text-shadow: 1px -1px 0 #000;
filter: dropshadow(color=#000, offx=1, offy=-1);
line-height: 30px;
border-width: 1px 0 0 0;
border-style: solid;
border-color: #111;
}
.ui-datepicker a {
text-decoration: none;
color: #fff;
}
.ui-datepicker a:hover {
color: #E03A3E;
}
.ui-datepicker table {
width: 100%;
}
|