Skip to content

Commit 3568bac

Browse files
committed
icons
1 parent 055eefb commit 3568bac

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

services/static-webserver/client/source/class/osparc/po/UsersPending.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ qx.Class.define("osparc.po.UsersPending", {
7676
},
7777

7878
createInfoButton: function(infoMetadata) {
79-
const infoButton = new qx.ui.form.Button(null, "@MaterialIcons/info_outline/16");
79+
const infoButton = new qx.ui.form.Button(null, "@MaterialIcons/info_outline/14");
8080
infoButton.addListener("execute", () => {
8181
const container = new qx.ui.container.Scroll();
8282
container.add(new osparc.ui.basic.JsonTreeWidget(infoMetadata, "pendingUserInfo"));
@@ -206,7 +206,7 @@ qx.Class.define("osparc.po.UsersPending", {
206206
switch (pendingUser.accountRequestStatus) {
207207
case "PENDING": {
208208
statusImage.set({
209-
source: "@FontAwesome5Solid/hourglass-end/16",
209+
source: "@FontAwesome5Solid/hourglass-end/14",
210210
textColor: "warning-yellow",
211211
});
212212
const approveButton = this.__createApproveButton(pendingUser.email);
@@ -217,7 +217,7 @@ qx.Class.define("osparc.po.UsersPending", {
217217
}
218218
case "REJECTED": {
219219
statusImage.set({
220-
source: "@FontAwesome5Solid/times/16",
220+
source: "@FontAwesome5Solid/times/14",
221221
textColor: "danger-red",
222222
});
223223
const approveButton = this.__createApproveButton(pendingUser.email);
@@ -227,7 +227,7 @@ qx.Class.define("osparc.po.UsersPending", {
227227
}
228228
case "APPROVED": {
229229
statusImage.set({
230-
source: "@FontAwesome5Solid/check/16",
230+
source: "@FontAwesome5Solid/check/14",
231231
textColor: "product-color",
232232
});
233233
const resendEmailButton = this.self().createResendEmailButton(pendingUser.email);

0 commit comments

Comments
 (0)