forked from grantm/jquery-datetextentry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjquery.datetextentry.css
More file actions
72 lines (63 loc) · 1.22 KB
/
jquery.datetextentry.css
File metadata and controls
72 lines (63 loc) · 1.22 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
span.jq-dte {
display: inline-block;
position: relative;
padding: 2px;
margin: 1px;
background-color: #ffffff;
border: 1px solid #666;
border-radius: 3px;
}
span.jq-dte-inner {
border: none;
padding: 1px;
margin: 1px;
white-space: nowrap;
background-color: #ffffff;
}
span.jq-dte input {
border: none;
background-color: #ffffff;
text-align: center;
margin: 0;
padding: 0;
outline: none;
vertical-align: middle;
}
span.jq-dte input.error {
background-color: #ff9999;
color: #000000;
}
span.jq-dte.readonly,
span.jq-dte.readonly span.jq-dte-inner,
span.jq-dte.readonly input {
background-color: #f2f2f2;
color: #666666;
}
span.jq-dte input.hint {
color: #999999;
}
span.jq-dte span.separator {
color: #999999;
}
span.jq-dte span.jq-dte-tooltip {
display: inline-block;
font-family: sans-serif;
font-size: 14px;
background-color: #f5f5b5;
border: 1px solid #666666;
margin: 0;
padding: 1px 3px;
line-height: 125%;
z-index: 99;
}
span.jq-dte span.jq-dte-errorbox {
display: inline-block;
font-family: sans-serif;
font-size: 14px;
background-color: #ff9999;
border: 1px solid #666666;
margin: 0;
padding: 1px 3px;
line-height: 125%;
white-space: nowrap;
}