From e34634f5af034153801d2ca71f93835b9ba220cf Mon Sep 17 00:00:00 2001 From: ed Date: Fri, 15 Apr 2022 19:42:40 +0200 Subject: [PATCH] v1.2.5 --- copyparty/__version__.py | 4 ++-- copyparty/web/browser.css | 18 +++++++++++++++++- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/copyparty/__version__.py b/copyparty/__version__.py index 85cdbf1b..f9014ee8 100644 --- a/copyparty/__version__.py +++ b/copyparty/__version__.py @@ -1,8 +1,8 @@ # coding: utf-8 -VERSION = (1, 2, 4) +VERSION = (1, 2, 5) CODENAME = "ftp btw" -BUILD_DT = (2022, 4, 14) +BUILD_DT = (2022, 4, 15) S_VERSION = ".".join(map(str, VERSION)) S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT) diff --git a/copyparty/web/browser.css b/copyparty/web/browser.css index 9e030fa3..53dd21de 100644 --- a/copyparty/web/browser.css +++ b/copyparty/web/browser.css @@ -794,6 +794,7 @@ input.eq_gain { } .tgl.btn.on:hover { background: #fe8; + color: #400; } #detree { padding: .3em .5em; @@ -1275,6 +1276,12 @@ html.y .tgl.btn.on { html.y .tgl.btn.on:hover { background: #5c0; } +html.by .tgl.btn.on { + background: #04a; +} +html.by .tgl.btn.on:hover { + background: #05c; +} html.y #srv_info { color: #c83; background: #eaeaea; @@ -1462,6 +1469,9 @@ html.y #treepar { html.y #tree { scrollbar-color: #490 #ddd; } +html.by #tree { + scrollbar-color: #049 #ddd; +} html.y #tree::-webkit-scrollbar-track, html.y #tree::-webkit-scrollbar { background: #ddd; @@ -1469,6 +1479,9 @@ html.y #tree::-webkit-scrollbar { html.y #tree::-webkit-scrollbar-thumb { background: #490; } +html.by #tree::-webkit-scrollbar-thumb { + background: #049; +} @@ -1821,10 +1834,13 @@ html.y #bbox-overlay figcaption a { padding: .5em; } #u2err.msg { - color: #999; + color: #aaa; padding: .5em; font-size: .9em; } +html.y #u2err.msg { + color: #555; +} html.y #u2err.err { color: #f07; }