This repository was archived by the owner on Nov 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.css
More file actions
54 lines (48 loc) · 1.3 KB
/
main.css
File metadata and controls
54 lines (48 loc) · 1.3 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
/**
* Do not display the left sidebar.
*/
.team-left-column div[data-team-hovercards-enabled],
.team-left-column div[data-repository-hovercards-enabled] {
display: none;
}
/**
* Hide visibility of the right sidebar and retain it's width
* so that the news feed doesn't take all the space.
*/
.team-left-column.col-12.col-md-3 {
visibility: hidden;
}
/**
* Remove gray background color and set it to white.
*/
.d-flex.bg-gray {
background-color: #ffffff !important;
}
/**
* Remove border and padding from items in feed.
*/
.dashboard .d-flex > .Box,
.dashboard .d-flex > div > .Box {
border: none !important;
padding: 0px !important;
}
/**
* Remove padding from starred repositories.
*/
.dashboard .d-flex .flex-items-baseline .border-bottom .border-gray .py-3 {
padding: 0px !important;
}
/**
* Remove star, unstar, follow and unfollow buttons from the feed.
*/
.dashboard .float-right.d-inline-block.js-toggler-container.starring-container,
.dashboard .float-right.d-inline-block.user-following-container.js-toggler-container.js-social-container {
display: none !important;
}
/**
* Smaller font size for followed user's name and starred repositories.
*/
.dashboard .f4.text-bold.link-gray-dark.no-underline,
.dashboard .f4.lh-condensed.text-bold.text-gray-dark {
font-size: 14px !important;
}