mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 09:02:15 -06:00
v1.2.5
This commit is contained in:
parent
cba9e5b669
commit
e34634f5af
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue