Fix centering of percent downloaded in snark light theme address bar. Point .priority* image url()s to new location in resources directory for icons clock.png clock_red.png and cancel.png

This commit is contained in:
idk
2021-02-11 12:16:36 -05:00
parent b2655dc86b
commit 69f48f49d1
2 changed files with 6 additions and 8 deletions

View File

@@ -2238,15 +2238,15 @@ hr.debug:last-child {
}
.priorityHigh {
background: url(images/icons/clock_red.png) left 24px center no-repeat;
background: url(/i2psnark/.resources/icons/solid/clock_red.png) left 24px center no-repeat;
}
.priorityNormal {
background: url(images/icons/clock.png) left 24px center no-repeat;
background: url(/i2psnark/.resources/icons/solid/clock.png) left 24px center no-repeat;
}
.prioritySkip {
background: url(images/icons/cancel.png) left 22px center no-repeat;
background: url(/i2psnark/.resources/icons/solid/cancel.png) left 22px center no-repeat;
}
/* configs */

View File

@@ -891,8 +891,6 @@ tr:hover .percentBarText {
.snarkDirInfo .percentBarText, .snarkDirInfo .percentBarOuter, .peerinfo .percentBarText, .peerinfo .percentBarOuter {
width: 80px !important;
margin-left: 30%;
margin-top: 5%;
}
/* end download bars */
@@ -1948,15 +1946,15 @@ hr.debug:last-child {
}
.priorityHigh {
background: url(images/icons/clock_red.png) left 24px center no-repeat;
background: url(/i2psnark/.resources/icons/solid/clock_red.png) left 24px center no-repeat;
}
.priorityNormal {
background: url(images/icons/clock.png) left 24px center no-repeat;
background: url(/i2psnark/.resources/icons/solid/clock.png) left 24px center no-repeat;
}
.prioritySkip {
background: url(images/icons/cancel.png) left 22px center no-repeat;
background: url(/i2psnark/.resources/icons/solid/cancel.png) left 22px center no-repeat;
}
/* end priorities */