forked from muan/github-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.css
77 lines (67 loc) · 2.34 KB
/
dashboard.css
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
#dashboard .news > div > .commit_comment,
#dashboard .news > div > .create,
#dashboard .news > div > .follow,
#dashboard .news > div > .fork,
#dashboard .news > div > .git-branch,
#dashboard .news > div > .gollum,
#dashboard .news > div > .issues_closed,
#dashboard .news > div > .issues_comment,
#dashboard .news > div > .issues_labeled,
#dashboard .news > div > .issues_opened,
#dashboard .news > div > .issues_reopened,
#dashboard .news > div > .public,
#dashboard .news > div > .push,
#dashboard .news > div > .release,
#dashboard .news > div > .repo,
#dashboard .news > div > .tag,
#dashboard .news > div > .team_add,
#dashboard .news > div > .member_add,
#dashboard .news > div > .watch_started {
display: none;
}
#dashboard.show_starred_and_followed_by .news > div > .watch_started.by_internet,
#dashboard.show_starred_and_followed_by .news > div > .follow.by_internet {
display: block;
}
#dashboard.show_forked_by .news > div > .fork.by_internet {
display: block;
}
#dashboard.show_stars_and_follows .news > div > .watch_started.by_followed_people,
#dashboard.show_stars_and_follows .news > div > .follow.by_followed_people {
display: block;
}
#dashboard.show_forks .news > div > .fork.by_followed_people {
display: block;
}
#dashboard.show_open_source .news > div > .repo.by_followed_people,
#dashboard.show_open_source .news > div > .create.by_followed_people,
#dashboard.show_open_source .news > div > .public.by_followed_people {
display: block;
}
#dashboard.show_releases .news > div > .tag,
#dashboard.show_releases .news > div > .release {
display: block;
}
#dashboard.show_code .news > div > .gollum,
#dashboard.show_code .news > div > .git-branch,
#dashboard.show_code .news > div > .push {
display: block;
}
#dashboard.show_conversations .news > div > .issues_comment,
#dashboard.show_conversations .news > div > .commit_comment,
#dashboard.show_conversations .news > div > .issues_opened,
#dashboard.show_conversations .news > div > .issues_labeled,
#dashboard.show_conversations .news > div > .issues_closed,
#dashboard.show_conversations .news > div > .issues_reopened {
display: block;
}
#dashboard.show_administration .news > div > .team_add,
#dashboard.show_administration .news > div > .member_add {
display: block;
}
.js-recent-activity-container + details {
float: left;
margin-bottom: -6px;
margin-right: 10px;
margin-top: -3px;
}