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
|
html,
body {
background: none !important;
}
[data-testid="issue-metadata-sticky"] {
background-color: var(--transparent-background-darker);
}
/* Styles by u/sameera_s_w */
div.feed-item-content.d-flex.flex-column.pt-2.pb-2.border.color-border-default.rounded-2.color-shadow-small.width-full.height-fit,
.feed-item-content,
.input-contrast,
.color-bg-default,
.Box-body,
.Box {
border-radius: 20px;
border: none;
}
div.color-bg-subtle.rounded-1.flex-justify-between.p-3,
section.dashboard-break-word.comment-body.markdown-body.m-0.p-3.color-bg-subtle.mb-0.rounded-1 {
border-radius: 10px;
border: none;
}
aside.feed-left-sidebar.col-md-4.col-lg-3.color-border-muted.border-bottom.hide-md.hide-sm.border-right.color-bg-default,
body,
div.d-md-flex,
.AppHeader-globalBar,
div.color-bg-subtle.rounded-1.flex-justify-between.p-3,
.comment-body,
.AppHeader-localBar {
border: none;
}
form.Box.position-relative.rounded-2.mb-4.p-3.js-notice-dismiss.overflow-hidden,
div.mb-3.dashboard-changelog.color-bg-default.border.color-border-muted.p-3.rounded-2,
div.d-flex.flex-items-between.footer.container-lg.my-5.px-0 {
display: none;
}
.ebYtvW,
.bAmAao,
.Counter,
.types__StyledButton-sc-ws60qy-0,
.TextInput-wrapper,
.feed-item-content,
.color-bg-default,
.input-contrast,
.Box-body,
.Box {
border: none;
}
td {
border: none;
}
tr:hover,
a:hover {
border-radius: 20px;
}
body {
--bgColor-default: transparent;
--bgColor-muted: var(--transparent-background);
--bgColor-inset: var(--transparent-background);
--borderColor-default: var(--transparent-background);
}
footer.footer.pt-8.pb-6.f6.color-fg-muted.p-responsive {
display: none;
}
div.prc-Dialog-Dialog-luvDS,
.Overlay,
.Overlay__StyledOverlay-sc-51280t-0,
details-menu {
background-color: var(--transparent-background-dark);
backdrop-filter: var(--backdrop-blur);
}
aside.feed-right-sidebar,
aside.feed-left-sidebar {
opacity: 0;
transition: all 0.3s ease-in-out;
&:hover {
opacity: 1;
}
}
.gh-header-sticky.is-stuck {
background-color: var(--transparent-background-dark);
border-radius: 1em;
}
|