icons vs text

This commit is contained in:
Xavier Henner 2019-08-17 22:22:18 +02:00
parent aba0e5f73a
commit 6b2cbcb203
4 changed files with 6 additions and 4 deletions

File diff suppressed because one or more lines are too long

BIN
web/disconnect.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -200,8 +200,10 @@ select.interface {
line +='<td>'+infos['status']+'</td>';
}
line +='<td><a href="javascript:vpn_restart('+pid+')">Reload</a></td>';
line +='<td><a href="javascript:vpn_kill('+pid+')">Kill</a></td>';
line += '<td>';
line += '<a href="javascript:vpn_restart('+pid+')"><img width="24" height="24" src="refresh.png"/></a>';
line += '<a href="javascript:vpn_kill('+pid+')"><img width="24" height="24" src="disconnect.png"/></a></td>';
line += '</td>\n';
line += '</tr>\n';
$('#result>tbody').append(line);
});
@ -220,7 +222,7 @@ select.interface {
<th>Provider</th>
<th>VPN Server</th>
<th>Status</th>
<th colspan="2">&nbsp;</th>
<th>&nbsp;</th>
</tr>
</thead>
</table>

BIN
web/refresh.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB