Skip to content

Commit c25cdcd

Browse files
author
Nicole Koopmans
committed
small tweaks
1 parent 897b998 commit c25cdcd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

data/index.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@
374374
position: absolute;
375375
top: -20px;
376376
right: -20px;
377-
width: 50px;
377+
width: auto;
378378

379379
pointer-events: none;
380380
opacity: 0;
@@ -388,7 +388,7 @@
388388
font-size: 12px;
389389
line-height: 16px;
390390
background: #fefdcd;
391-
padding: 2px 2px;
391+
padding: 5px 2px;
392392
border: 1px solid #c0c0c0;
393393
box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.4);
394394
}

data/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,28 +257,28 @@
257257
var btn = document.createElement("div");
258258
btn.setAttribute("class", "piccolumn4");
259259
var a = document.createElement('a');
260+
a.setAttribute("data-tooltip", "Update");
260261
a.href = localURL+'/pic?action=refresh&name='+files[i].name+'&version='+files[i].version;
261262
var img = document.createElement('img');
262263
img.src = localURL+'/update.png';
263264
img.style.width = '16px';
264265
img.style.height = 'auto';
265266
img.setAttribute=("alt", "Update");
266267
a.appendChild(img);
267-
btn.setAttribute("data-tooltip", "Update");
268268
btn.appendChild(a);
269269
rowDiv.appendChild(btn);
270270
//--- flash to pic icon---
271271
var btn = document.createElement("div");
272272
btn.setAttribute("class", "piccolumn5");
273273
var a = document.createElement('a');
274274
a.href = localURL+'/pic?action=upgrade&name='+files[i].name+'&version='+files[i].version;
275+
a.setAttribute("data-tooltip", "Install");
275276
var img = document.createElement('img');
276277
img.src = localURL+'/system_update.png'
277278
img.style.width = '16px';
278279
img.style.height = 'auto';
279280
img.setAttribute=("alt", "Install");
280281
a.appendChild(img);
281-
btn.setAttribute("data-tooltip", "Install");
282282
btn.appendChild(a);
283283
rowDiv.appendChild(btn);
284284
tableDiv.appendChild(rowDiv);

0 commit comments

Comments
 (0)