blob: 789ea16df7ae16c0cad416e07d8679079929543d (
plain)
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
|
/* Database selector on install page */
form #selectPartStatForm {
text-align:center;
white-space: nowrap;
margin: 0;
}
form #selectPartStatForm .info {
white-space: normal;
}
form #selectPartStatForm input[type="radio"] {
display: none;
}
form #selectPartStatForm input[type="radio"]:checked+label {
background-color: #e8e8e8;
}
form #selectPartStatForm input[type="radio"]:checked ~ form fieldset#more_options {
display: none;
}
form #selectPartStatForm label {
color: #000;
background-color: #f8f8f8;
position: static;
margin: 0 -3px 5px;
cursor:pointer;
border: 1px solid #ddd;
display: inline-block;
padding: 0;
line-height: normal;
vertical-align: middle;
text-align: center;
overflow: visible;
}
form #selectPartStatForm label:first-of-type {
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
form #selectPartStatForm label:last-of-type {
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
}
form #selectPartStatForm label span {
cursor: pointer;
padding: 10px 20px;
display: block;
line-height: normal;
}
form #selectPartStatForm label.ui-state-hover,
form #selectPartStatForm label.ui-state-active {
color:#000;
background-color:#e8e8e8;
}
form input[type="number"] {
width: 249px;
background: #fff;
color: #555;
cursor: text;
font-family: inherit;
-webkit-appearance: textfield;
-moz-appearance: textfield;
box-sizing: content-box;
border: none;
font-weight: 300;
}
form input[type="submit"] {
display: block;
margin: 0 auto;
padding: 11px 20px 9px
}
|