forked from cfoellmann/github-wide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub-wide.css
More file actions
130 lines (99 loc) · 2.21 KB
/
github-wide.css
File metadata and controls
130 lines (99 loc) · 2.21 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("github.com") {
.container {
width: 100% !important;
padding-left: 30px !important;
padding-right: 30px !important;
}
/* Repo Next layout */
.repository-content {
width: 100% !important;
}
.repository-with-sidebar {
padding-right: 60px !important;
}
.repository-with-sidebar .repository-sidebar {
margin-right: -60px !important;
}
.summary-stats,
.authors-and-code {
display: table;
width: 100%;
}
.summary-stats li {
width: 25%;
}
.authors-and-code .section {
width: 50%;
}
/* Repo Next Code page */
.with-full-navigation {
padding-right: 190px !important;
}
.with-full-navigation .repository-sidebar {
margin-right: -190px !important;
}
/* Issues/PRs */
.discussion-sidebar {
width: 220px !important;
}
.discussion-timeline {
width: calc(100% - 240px) !important;
}
/* Fix #18 - props: @auscompgeek */
.file-header::after {
clear: left !important;
}
/* New issues and Dashboard */
#dashboard,
.new-issue-form {
position: relative !important;
}
.dashboard-sidebar,
.new-issue-form .discussion-sidebar {
position: absolute !important;
top: 0 !important;
right: 0 !important;
}
button.discussion-sidebar-toggle {
width: 100% !important;
}
.timeline-new-comment {
max-width: none !important;
}
/* Dashboard */
/* Note that this won't be needed if we actually flipped the DOM order around. */
.news {
float: none !important;
margin-right: 360px !important;
}
/* Settings */
/* This should be refactored to use our grid.scss styles anyway, thus negating these styles. */
.settings-content,
.repo-settings-content {
float: none !important;
width: auto !important;
overflow: auto !important; /* required to clear the floats that the float avoided */
}
.container > .settings-content,
.repo-settings-content {
margin-left: 260px !important;
}
#repo-settings .menu-container {
width: 240px !important;
}
#js-flash-container .flash-messages {
width: 100% !important;
padding-left: 30px !important;
padding-right: 30px !important;
}
/* Profile page */
/* Profile avatar tooltip */
.vcard-avatar {
width: 230px !important;
}
/* Commits: extended message under "..." */
.commit-desc pre {
max-width: none;
}
}