-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjumpmenu.css.php
More file actions
70 lines (62 loc) · 1.45 KB
/
Copy pathjumpmenu.css.php
File metadata and controls
70 lines (62 loc) · 1.45 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
div.mod_jumpmenu_menu
{
text-align: left;
position: absolute;
padding: 2px;
background-color:#eee;
border:1px solid #777;
font-family: arial, helvetica, sans-serif;
display: none;
}
div.mod_jumpmenu_menu_content
{
}
a.mod_jumpmenu_menu_item
{
font-size: 12px;
float: none;
display: block;
padding: 3px 8px 3px 25px;
text-decoration: none;
white-space: nowrap;
}
a.mod_jumpmenu_menu_separator
{
font-size: 12px;
float: none;
display: block;
padding: 0 8px 0 25px;
text-decoration: none;
cursor: default;
background-image: url(<?php print $PHORUM['http_path'] ?>/mods/jumpmenu/templates/separator.gif);
background-position: center left;
background-repeat: repeat-x;
}
a.mod_jumpmenu_menu_item:link,
a.mod_jumpmenu_menu_item:active,
a.mod_jumpmenu_menu_item:visited
{
background-color: #f0f0f0;
color: black;
}
a.mod_jumpmenu_menu_item.mod_jumpmenu_highlighted
{
background-color: #666;
color: white;
text-decoration: none;
}
a.mod_jumpmenu_folder
{
background-image: url(<?php print $PHORUM['http_path'] ?>/mods/jumpmenu/templates/folder.gif);
background-position: 5px 1px;
background-repeat: no-repeat;
cursor: default;
color: black;
}
a.mod_jumpmenu_forum
{
background-image: url(<?php print $PHORUM['http_path'] ?>/mods/jumpmenu/templates/forum.gif);
background-position: 5px 1px;
background-repeat: no-repeat;
color: black;
}