-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyles.css
More file actions
69 lines (55 loc) · 1.63 KB
/
styles.css
File metadata and controls
69 lines (55 loc) · 1.63 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
/*
Curriculum Admin Menu
*/
/* The spacer link seems to jump to the top of the page */
/* Changed display: none; (broken in IE8) to outline: 0;
.block_elisadmin .ygtvspacer {
outline: 0;
}
/* General display settings */
.block_elisadmin .tree_icon {
display: inline-block;
margin-left: 3px;
}
.block_elisadmin .tree_icon a {
}
.block_elisadmin .block_elisadmin_nonjs .categorytext {
margin-left: 22px;
}
.block_elisadmin .block_elisadmin_nonjs {
padding-left: 0px;
margin-left: 0px;
margin: 0px;
}
.block_elisadmin .block_elisadmin_nonjs ul {
padding-left: 20px;
}
/* Category image */
.block_elisadmin .block_elisadmin_nonjs .category {
background: transparent url([[pix:block_elisadmin|folder]]) no-repeat;
display: block;
}
.block_elisadmin .curr_integrationpoint {
background: transparent url([[pix:local_elisprogram|integrationpoint]]) no-repeat;
}
.block_elisadmin .curr_managetags {
background: transparent url([[pix:local_elisprogram|tag]]) no-repeat;
}
.block_elisadmin .curr_manageenvironments {
background: transparent url([[pix:local_elisprogram|environment]]) no-repeat;
}
.block_elisadmin [class*='elisicon-']:before {
font-size: 16px;
opacity: 0.45;
margin-right: 3px;
vertical-align: middle;
/* IE8 */
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=45)";
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=45);
}
.block_elisadmin [class*='elisicon-']:hover:before {
opacity: 1;
/* IE8 */
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}