font size/stroke visibility upgrade
for us old folks
This commit is contained in:
parent
ee5d0f8ac9
commit
5b5b1fbfce
2 changed files with 8 additions and 1 deletions
|
@ -144,4 +144,10 @@
|
|||
|
||||
.maskCanvasMonitor .overMaskCanvasMonitor .initImgCanvasMonitor {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.strokeText {
|
||||
-webkit-text-stroke: 1px #888;
|
||||
font-size: 150%;
|
||||
color: #000;
|
||||
}
|
|
@ -130,6 +130,7 @@ function startup() {
|
|||
changeOverMask();
|
||||
changeOverMaskPx();
|
||||
changeHiResFix();
|
||||
changeEnableErasing();
|
||||
document.getElementById("overlayCanvas").onmousemove = mouseMove;
|
||||
document.getElementById("overlayCanvas").onmousedown = mouseDown;
|
||||
document.getElementById("overlayCanvas").onmouseup = mouseUp;
|
||||
|
@ -197,7 +198,7 @@ function imageAcceptReject(x, y, data) {
|
|||
div.style.top = parseInt(y + data.parameters.height) + "px";
|
||||
div.style.width = "150px";
|
||||
div.style.height = "50px";
|
||||
div.innerHTML = "<button onclick=\"prevImg(this)\"><</button><button onclick=\"nextImg(this)\">></button><span id=\"currentImgIndex\"></span> of <span id=\"totalImgIndex\"></span><button onclick=\"accept(this)\">Y</button><button onclick=\"reject(this)\">N</button>"
|
||||
div.innerHTML = "<button onclick=\"prevImg(this)\"><</button><button onclick=\"nextImg(this)\">></button><span class=\"strokeText\" id=\"currentImgIndex\"></span><span class=\"strokeText\"> of </span><span class=\"strokeText\" id=\"totalImgIndex\"></span><button onclick=\"accept(this)\">Y</button><button onclick=\"reject(this)\">N</button>"
|
||||
document.getElementById("tempDiv").appendChild(div);
|
||||
document.getElementById("currentImgIndex").innerText = "1";
|
||||
document.getElementById("totalImgIndex").innerText = totalImagesReturned;
|
||||
|
|
Loading…
Reference in a new issue