Skip to content

Commit 3c98f7c

Browse files
committed
aesthetics
1 parent f9e2bff commit 3c98f7c

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

services/static-webserver/client/source/class/osparc/jobs/JobsTable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ qx.Class.define("osparc.jobs.JobsTable", {
3737
Object.values(this.self().COLS).forEach(col => columnModel.setColumnWidth(col.column, col.width));
3838

3939
const fontButtonRenderer = new osparc.ui.table.cellrenderer.ImageButtonRenderer();
40-
fontButtonRenderer.setIconPath("osparc/offline.svg");
40+
fontButtonRenderer.setIconPath("osparc/circle-info-solid_text.svg");
4141
columnModel.setDataCellRenderer(this.self().COLS.INFO.column, fontButtonRenderer);
4242
},
4343

services/static-webserver/client/source/class/osparc/ui/table/cellrenderer/ButtonRenderer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ qx.Class.define("osparc.ui.table.cellrenderer.ButtonRenderer", {
4646
return `
4747
<div class="qx-material-button"
4848
data-action="${clickAction}" data-row="${cellInfo.row}"
49-
style="cursor:pointer; padding:2px 2px; width:29px; height:20px; display:flex; align-items:center; justify-content:center;"
49+
style="cursor:pointer; padding:2px 2px; width:26px; height:18px; display:flex; align-items:center; justify-content:center;"
5050
>
5151
${buttonContent}
5252
</div>

services/static-webserver/client/source/class/osparc/ui/table/cellrenderer/ImageButtonRenderer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ qx.Class.define("osparc.ui.table.cellrenderer.ImageButtonRenderer", {
3636
const resMgr = qx.util.ResourceManager.getInstance();
3737
const iconUrl = resMgr.toUri(iconPath); // Resolves to the correct URL of the asset
3838

39-
this.setButtonContent(`<img src="${iconUrl}" style="width:16px; height:16px;" alt="icon"/>`);
39+
this.setButtonContent(`<img src="${iconUrl}" style="width:14x; height:14px;" alt="icon"/>`);
4040
},
4141
}
4242
});
Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)