-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmenu.css
More file actions
51 lines (42 loc) · 730 Bytes
/
menu.css
File metadata and controls
51 lines (42 loc) · 730 Bytes
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
.menu {
font-family: dosvga;
font-size: 16px;
color: #333;
background-color: #efefef;
text-align: left;
}
.rootmenu {
background-color: #efefef;
padding-left: 8px;
border-bottom: 1px solid #ddd;
}
.dropmenu {
position: absolute;
display: none;
border: 1px solid #999;
padding: 2px;
z-index: 100;
}
.menu-item {
padding: 4px 8px;
cursor: pointer;
}
.disabled { color: #999; }
.menu-separator {
border-top: 1px solid #999;
margin: 4px 2px;
}
.submenu:after {
content: " >"
}
.rootmenu .menu-item {
display: inline-block;
}
.menu-item:hover {
background-color: #336699;
color: #fff;
}
.disabled:hover {
background-color: #efefef;
color: #999;
}