-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjquery.fancy_forms.css
More file actions
87 lines (81 loc) · 1.55 KB
/
jquery.fancy_forms.css
File metadata and controls
87 lines (81 loc) · 1.55 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
/* Fancy Selects
----------------------------------*/
.fancy-active {
opacity: 0;
filter: alpha(opacity=0);
min-height: 100%;
min-width: 100%;
height: 100%;
width: 100%;
position: absolute;
border: none;
margin: 0;
padding: 0;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 3;
cursor: pointer;
}
.fancy-select-wrap,
.fancy-checkbox-wrap,
.fancy-radio-wrap {
position: relative;
display: inline-block;
background: #ccc;
color: #444;
}
.fancy-select-wrap {
}
.fancy-select-visible {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding: 0 1.75em 0 .75em;
}
.fancy-select-wrap:before,
.fancy-select-fallback_button {
background: #444;
display: block;
content: ' ';
position: absolute;
right: 0;
top: 0;
bottom: 0;
width: 1.75em;
z-index: 2;
}
.fancy-checkbox-checked,
.fancy-radio-checked {
background: #999;
}
/* Themes
*
* Code examples for styling fancy elements
* Safe to delete after this point
----------------------------------*/
/* Select theme: button */
.CW_fancy_forms-select_theme-button {
width: 200px !important;
height: 20px !important;
background: transparent;
}
.CW_fancy_forms-select_theme-button:before,
.CW_fancy_forms-select_theme-button .fancy-select-fallback_button {
width: 20px;
height: 20px;
left: 0;
right: auto;
}
.CW_fancy_forms-select_theme-button .fancy-select-visible {
padding: 0 0 0 30px;
width: 170px;
overflow: visible;
}
/* Checkbox/Radio theme: button */
.CW_fancy_forms-check_theme-big,
.CW_fancy_forms-radio_theme-big {
width: 100px !important;
height: 100px !important;
}