blob: c6a94a8e2646b0b515f5d9f8b6022748c7274f20 (
plain)
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
.profile-content-menu a {
background-color: transparent;
}
.profile-admin-menu-wrapper {
background-color: #eee;
}
.profile-admin-menu-wrapper a:hover {
background-color: #333;
color: #eee;
text-decoration: none;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.profile-admin-menu-wrapper li a {
background: none;
color: #333;
}
#profile-details h2 {
font-weight: bold;
}
.elgg-access, .elgg-input-access > option {
padding-left: 19px;
background-image: url('<?php echo elgg_get_site_url(); ?>mod/n1_theme/_graphics/privacy.png');
background-repeat: no-repeat;
}
.elgg-access {
padding-top: 1px;
padding-bottom: 1px;
}
.elgg-access-private, .elgg-input-access > option[value="<?php echo ACCESS_PRIVATE; ?>"] {
background-position: 0 -65px;
}
.elgg-access-friends, .elgg-input-access > option[value="<?php echo ACCESS_FRIENDS; ?>"] {
background-position: 0 -51px;
}
.elgg-access-loggedin, .elgg-input-access > option[value="<?php echo ACCESS_LOGGED_IN; ?>"] {
background-position: 0 -34px;
}
.elgg-access-public, .elgg-input-access > option[value="<?php echo ACCESS_PUBLIC; ?>"] {
background-position: 0 -16px;
}
.elgg-access-group, .elgg-input-access > option {
background-position: 0 0;
}
.file-photo {
margin-top: 15px;
}
.tasklist-graph {
border: 1px solid #bbb;
}
.tasklist-graph div {
background-color: #444;
}
.elgg-task-icon {
box-shadow: none;
}
.treeview a.selected {
background-color: transparent !important;
}
.tidypics-heading {
color: #FF4C12;
}
.tidypics-heading:hover {
color: #333;
}
.tidypics-gallery .elgg-head {
margin: 10px;
}
#cboxTitle h3 {
color: #eee;
font-weight: bold;
font-size: 160%;
}
.groups-profile-icon {
border: 2px solid #F1F1F1;
box-shadow: 0px 1px 3px #666
}
.elgg-page .cke_skin_BootstrapCK-Skin .cke_contents, .cke_skin_BootstrapCK-Skin .cke_contents iframe {
background-color: #F7F7F7 !important;
border: none !important;
}
|