Skip to content

Commit

Permalink
Remove(webui): icons at all
Browse files Browse the repository at this point in the history
  • Loading branch information
dnzbk committed Jul 4, 2024
1 parent f22837d commit 0ee2b0c
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions webui/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4401,14 +4401,9 @@ var SystemInfo = (new function($)
function renderAppVersion(version)
{
$SysInfo_AppVersion.text(version);
var updateIcon = $('<i class="material-icon">update</i>');
updateIcon.css('margin-right', '3px');
var updateBtn = $('<button type="button" class="btn btn-default"></>');
var updateBtn = $('<button type="button" class="btn btn-default">Updates</>');
updateBtn.css('margin-left', '5px');
updateBtn.css('padding-left', '3px');
updateBtn.on('click', function() { Config.checkUpdates(); });
updateBtn.append(updateIcon);
updateBtn.append('Updates');
updateBtn.on('click', Config.checkUpdates);
$SysInfo_AppVersion.append(updateBtn);
}

Expand Down Expand Up @@ -4456,13 +4451,8 @@ var SystemInfo = (new function($)
var tdName = $('<td>');
var tdActive = $('<td>');
var tdTests = $('<td>');
var testConnectionBtn = $('<button type="button" title="Connection" class="btn btn-default"></>');
var testConnectionIcon = $('<i class="material-icon">cell_tower</i>');
testConnectionIcon.css('margin-right', '3px');
testConnectionBtn.append(testConnectionIcon);
testConnectionBtn.append("Connection");
var testConnectionBtn = $('<button type="button" class="btn btn-default">Connection</>');
testConnectionBtn.attr({ 'data-multiid': server.id });
testConnectionBtn.css('padding-left', '3px');
testConnectionBtn.on('click', function ()
{
Config.testConnection(this, "Server", server.id);
Expand Down

0 comments on commit 0ee2b0c

Please sign in to comment.