-
Notifications
You must be signed in to change notification settings - Fork 5
/
jkeymagic.css
executable file
·46 lines (40 loc) · 1.12 KB
/
jkeymagic.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
.jkMenu {
background: rgb(220,220,220);
background: -moz-linear-gradient(top, rgba(220,220,220,.5), rgba(150,150,150,.5));
background: -webkit-gradient(linear, left top, left bottom, from(rgba(220,220,220,.5)), to(rgba(150,150,150,.5)));
border: 1px solid gray;
font-size: 11px;
height: 20px;
padding: 5px;
position: absolute;
text-align: center;
width: 180px;
margin: 0;
z-index: 999;
}
.jkMenu:hover {
background: -moz-linear-gradient(top, rgba(220,220,220,1), rgba(150,150,150,1));
background: -webkit-gradient(linear, left top, left bottom, from(rgba(220,220,220,1)), to(rgba(150,150,150,1)));
}
.jkMenu select {
border-radius: 2px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
background-color: rgba(220,220,220,.5);
border: 1px solid white;
height: 20px;
width: 140px;
}
.jkMenu:hover select {
background-color: rgba(220,220,220,1);
}
select option {
background-color: rgba(240,240,240,.9);
}
select option.alt {
background-color: rgba(250,250,250,.9);
}
select option.error {
text-decoration: line-through;
color: gray;
}