blob: 8b9f9a91414da47998b7e8d4ca218270ab500769 (
plain) (
blame)
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
|
ul {
list-style-type: none;
}
div.mainPanel {
}
/*logout button*/
.logoutButton
{
float:left;
width:70px;
height:40px;
margin-left:5px;
border:1px outset #708090;
background:#4169E1;
text-align:center;
}
.logoutButton a
{
display:block;
margin-top:13px;
color:#B0E0E6;
font:bold 12px/1 Verdana,arial;
}
/*list of application in the panel main action*/
.panelApplicationList
{
padding:0px;
}
.panelApplicationList li
{
display:block;
width:200px;
height:30px;
border:1px outset #708090;
margin:5px;
background:#4169E1;
padding-top:9px;
}
.panelApplicationList li a
{
margin:5px;
font: bold 14px/1 Verdana,arial;
color:#B0E0E6;
}
/*list of groups an user is inserted within*/
.groupsList
{
margin:20px 5px 5px 5px;
font:normal 14px/1 Verdana,arial;
}
.groupsList li
{
margin:5px 0px;
padding:0px;
font:bold 14px/1 Verdana,arial;
}
.groupsList ul
{
padding:10px;
}
/*list of logged users in panel*/
.usersLoggedList
{
margin:5px;
text-align:right;
font:normal 14px/1 Verdana,arial;
}
|