From 1f59c94ec30093e47580560fedb640228b6b1b96 Mon Sep 17 00:00:00 2001 From: reds Date: Sat, 6 May 2017 18:56:50 +0100 Subject: [PATCH 1/2] Changed night-mode item colors(remake, trusted, aplus) --- css/style-night.css | 15 +++++++++++---- templates/index.html | 4 +++- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/css/style-night.css b/css/style-night.css index b89441c5..6a727ccf 100644 --- a/css/style-night.css +++ b/css/style-night.css @@ -1,12 +1,12 @@ /* Torrent status colors */ .remake { - background-color: #a05013; + background-color: #795c46; } .trusted { - background-color: #238025; + background-color: #3d743e; } .aplus { - background-color: #0777ab; + background-color: #487589; } /* modified copy of NyaaTorrent theme */ @@ -59,7 +59,7 @@ body { /* Links, Text */ a { - color: #1cb093; + color: #13cba6; text-decoration : none; } @@ -146,4 +146,11 @@ div.container div.blockBody:nth-of-type(2) table tr:first-of-type th:last-of-typ .table > tbody > tr > td { border: none; } + #container.cont-home { + background: #29363d url(/img/megumin.png) no-repeat; + } + #container.cont-view { + background: #29363d url(/img/megumin.png) no-repeat; + background-size: 75px, 100px; + } } diff --git a/templates/index.html b/templates/index.html index 50abe86b..24d7411a 100755 --- a/templates/index.html +++ b/templates/index.html @@ -11,7 +11,9 @@ + + @@ -42,7 +44,7 @@ From edfca56753f00a64e0fcd1e306cd8a76677bf58d Mon Sep 17 00:00:00 2001 From: yiiT Date: Sat, 6 May 2017 16:41:56 -0500 Subject: [PATCH 2/2] Additional trackers Added tracker.pirateparty.gr, tracker.internetwarriors.net, eddie4.nl, and mgtracker.org --- config/trackers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/trackers.go b/config/trackers.go index a3c74e62..67ca8c98 100644 --- a/config/trackers.go +++ b/config/trackers.go @@ -1,5 +1,5 @@ package config const ( - Trackers = "&tr=udp://tracker.coppersurfer.tk:6969&tr=udp://zer0day.to:1337/announce&tr=udp://tracker.leechers-paradise.org:6969&tr=udp://explodie.org:6969&tr=udp://tracker.opentrackr.org:1337&tr=http://tracker.baka-sub.cf/announce" + Trackers = "&tr=udp://tracker.coppersurfer.tk:6969&tr=udp://zer0day.to:1337/announce&tr=udp://tracker.leechers-paradise.org:6969&tr=udp://explodie.org:6969&tr=udp://tracker.opentrackr.org:1337&tr=udp://tracker.pirateparty.gr:6969/announce&tr=udp://tracker.internetwarriors.net:1337/announce&tr=udp://eddie4.nl:6969/announce&tr=http://mgtracker.org:6969/announce&tr=http://tracker.baka-sub.cf/announce" )