Project

General

Profile

Download (1.89 KB) Statistics
| Branch: | Tag: | Revision:
1
/*   $Id: icons.css,v 1.2 2006/10/23 04:36:43 zirafa Exp $ */
2

    
3
/**
4
*   ICON STYLES 
5
*
6
*  Puts all the references to icon images in one place.
7
*/
8

    
9
/* Leaf, collapsed, and expanded icons used for navigation*/
10
.block li.leaf, ul.menu li.leaf {
11
  list-style-image: url(images/menu-leaf.gif);
12
}
13

    
14
.block li.collapsed, ul.menu li.collapsed {
15
  list-style-image: url(images/menu-collapsed.gif);
16
}
17

    
18
.block li.expanded, ul.menu li.expanded {
19
  list-style-image: url(images/menu-expanded.gif);
20
}
21

    
22
.block li a.active {
23
  text-decoration: none;
24
}
25

    
26
.block ul li {
27
  list-style-image: url(images/blue_bullet.gif);
28
}
29

    
30
/* Forum posts and recent blog posts */
31
.block-forum ul li {
32
  list-style-type:none;
33
  list-style-image: none;
34
  margin:0;
35
  padding:5px 0px 5px 20px;
36
  background-image: url(images/page_text.gif);
37
  background-repeat: no-repeat;
38
  background-position: 0 .5em;
39
}
40

    
41
.block-blog ul li {
42
  list-style-type:none;
43
  list-style-image: none;
44
  margin:0;
45
  padding:5px 0px 5px 20px;
46
  background-image: url(images/blog.png);
47
  background-repeat: no-repeat;
48
  background-position: 0 .7em;
49
}
50

    
51
/* Who's new & Who's online*/
52
#block-user-2 ul li, #block-user-3 ul li {
53
  list-style-type:none;
54
  list-style-image: none;
55
  margin:0;
56
  padding:5px 0px 5px 20px;
57
  background-image: url(images/icon_user.gif);
58
  background-repeat: no-repeat;
59
  background-position: 0 .5em;
60
}
61

    
62
/* Status and Error icons */
63
div.status {
64
  background-image: url(images/dialog-information_i.gif);
65
  background-repeat: no-repeat;
66
  background-position: .5em 50%;
67
}
68

    
69
div.error {
70
  background-image: url(images/dialog-warning.gif);
71
  background-repeat: no-repeat;
72
  background-position: .5em 50%;
73
}
74

    
75
/* Node links such as add comments, User's blog, etc */
76
#main .node div.links {
77
  padding:5px 0px 5px 13px;
78
  background: url(images/links.gif) no-repeat 0 .93em;
79
}
80

    
81
/* Administration panel */
82
.admin-panel h3{
83
  background: #6191C5 url(images/cog.png) no-repeat .5em .5em;
84
}
(7-7/17)