-
Notifications
You must be signed in to change notification settings - Fork 13
/
old_style.css
122 lines (111 loc) · 2.9 KB
/
old_style.css
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
115
116
117
118
119
120
121
122
/*
* Admin specific styling are prefixed with body.change-form.
*/
.yourlabs-autocomplete
{
position: absolute;
left: 0;
z-index: 1000;
display: none;
float: left;
min-width: 160px;
padding: 5px 0;
margin: 2px 0 0;
list-style: none;
background-color: #ffffff;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.2);
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
}
.yourlabs-autocomplete .hilight
{
color: #ffffff !important;
text-decoration: none;
background-color: #0081c2;
background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
background-image: -o-linear-gradient(top, #0088cc, #0077b3);
background-image: linear-gradient(to bottom, #0088cc, #0077b3);
background-repeat: repeat-x;
outline: 0;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
}
.yourlabs-autocomplete .choice, .yourlabs-autocomplete [data-value], .yourlabs-autocomplete em
{
display: block;
padding: 3px 20px;
clear: both;
font-weight: normal;
line-height: 20px;
color: #333333;
white-space: nowrap;
color: black;
cursor: pointer;
}
/*
* You should use the "block" class because the "div" class is deprecated since
* 2.0. However, the "div" class is still supported for backward compatibility.
*/
.block,
.div
{
display: block;
}
/* admin specific */
body.change-form .autocomplete-light-widget
{
float: left;
}
.autocomplete-light-widget .deck [data-value]
{
list-style-type: none;
margin-bottom: 5px;
padding-right: 8px;
padding-bottom: 5px;
}
.autocomplete-light-widget .deck [data-value] .remove
{
background-image: url('../admin/img/inline-delete.png');
color: #fff;
cursor: pointer;
float: left;
height: 15px;
margin-right: 10px;
text-indent: -999px;
width: 15px;
}
.autocomplete-light-widget .deck [data-value] .remove:hover
{
background-position: -15px 0;
}
.yourlabs-autocomplete .choice-detail,
.yourlabs-autocomplete .choice-update
{
display: none;
}
/* grappelli specific */
fieldset.grp-module .grp-row {
overflow: visible !important;
}
/* credit: http://www.csslab.cl/2008/01/30/ventana-modal-solo-con-css/ */
#yourlabs_overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #000;
z-index:1001;
opacity:.75;
-moz-opacity: 0.75;
filter: alpha(opacity=75);
}