Skip to content

Commit

Permalink
MID-4897
Browse files Browse the repository at this point in the history
  • Loading branch information
skublik committed Sep 24, 2018
1 parent a39293b commit 3772284
Showing 1 changed file with 6 additions and 5 deletions.
Expand Up @@ -974,7 +974,7 @@ public String getObject() {

@Override
public String getObject() {
return logoModel.getObject() != null ? "background-color: " + GuiStyleConstants.DEFAULT_BG_COLOR + "; !important;" : null;
return logoModel.getObject() != null ? "background-color: " + GuiStyleConstants.DEFAULT_BG_COLOR + " !important;" : null;
}
}));

Expand Down Expand Up @@ -1084,11 +1084,12 @@ public String getObject() {
return null;
}

if (checkSkinUsage && StringUtils.isEmpty(info.getSkin())) {
return null;
}
// TODO fix for MID-4897
// if (checkSkinUsage && StringUtils.isEmpty(info.getSkin())) {
// return null;
// }

return "background-color: " + info.getHeaderColor() + "; !important;";
return "background-color: " + info.getHeaderColor() + " !important;";
}
});
}
Expand Down

0 comments on commit 3772284

Please sign in to comment.