Skip to content

Commit 474adf2

Browse files
committed
build.opensuse.org
1 parent 5aa49bf commit 474adf2

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

build.opensuse.org/index.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
const styles = `
2+
#content-area {
3+
background-color: rgb(95, 103, 111);
4+
}
5+
#breadcrumbs nav {
6+
background-color: #bbdcff;
7+
border-radius: 3px;
8+
}
9+
#footer strong, #footer a {
10+
color: white;
11+
}
12+
#sponsors, #footer-legal {
13+
display: none;
14+
}
15+
.card-body {
16+
background-color: #e6e6e6;
17+
}
18+
`;
19+
const sheet = document.createElement("style");
20+
sheet.type = "text/css";
21+
sheet.innerText = styles;
22+
document.head.appendChild(sheet);

index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ switch (location.host) {
2323
case "guidestar.org":
2424
case "npmjs.com":
2525
case "reddit.com":
26+
case "build.opensuse.org":
2627
case "youtube.com":
2728
target = domain;
2829
}

0 commit comments

Comments
 (0)