i2psnark: CSS fix for disabled edit torrent button

This commit is contained in:
zzz
2022-08-12 09:42:22 -04:00
parent e35d173982
commit 3d65f93277
2 changed files with 12 additions and 0 deletions

View File

@@ -1667,6 +1667,12 @@ input.reload[name="recheck"], input.reload[name="recheck"]:active, input.disable
margin-left: 2px !important
}
input.disabled[name="showEdit"] {
background: #989 url(images/restore.png);
background: url(images/restore.png), linear-gradient(to bottom, #989 0%, #878 100%);
margin-left: 2px !important
}
input.disabled[name="recheck"]:hover {
background-blend-mode: initial;
}

View File

@@ -1566,6 +1566,12 @@ input.reload[name="recheck"], input.disabled[name="recheck"] {
margin: 6px 2px;
}
input.disabled[name="showEdit"] {
background: url(images/restore.png) no-repeat 5px center, linear-gradient(to bottom, #eeecea 50%, #ded9d5 50%);
padding: 5px 5px 5px 21px !important;
margin: 6px 2px;
}
input.reload[name="recheck"]:hover, input.reload[name="recheck"]:focus {
background: url(images/recheck.png) no-repeat 5px center, linear-gradient(to bottom, #fff7ef 51%, #cfc1b5 52%);
}