Allow force-loading incomplete matches in multi patchers

This commit is contained in:
Will Toohey
2019-02-17 14:31:02 +10:00
parent c2b1a2e385
commit acc15f0bf7
2 changed files with 64 additions and 12 deletions
+14 -2
View File
@@ -168,7 +168,7 @@ h1 a {
text-decoration: inherit;
}
button {
button, .fileLabel > strong {
transition-duration: 0.2s;
transition-timing-function: cubic-bezier(0.25, 0.5, 0.5, 1);
position: relative;
@@ -196,11 +196,23 @@ button:disabled {
cursor: default;
}
button:hover:enabled {
button:hover:enabled, .fileLabel > strong:hover {
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25), 0px 0px 4px rgba(0, 0, 0, 0.125);
background-color: #5dbe3c;
}
.matchPercent {
font-size: 15px;
font-style: italic;
color: red;
}
li > button {
height: 24px;
padding: 0 7px;
line-height: 0;
}
.patches {
margin: 1em auto;
}