Skip to content

Commit

Permalink
fixing style for projections tab
Browse files Browse the repository at this point in the history
  • Loading branch information
KaterynaHonchar committed Jun 7, 2016
1 parent 1dc11f6 commit 747818d
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -22,6 +22,7 @@
import javax.xml.namespace.QName;

import org.apache.commons.lang.Validate;
import org.apache.wicket.AttributeModifier;
import org.apache.wicket.Component;
import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.ajax.markup.html.form.AjaxCheckBox;
Expand Down Expand Up @@ -179,6 +180,9 @@ protected void onClickPerformed(AjaxRequestTarget target) {
target.add(shadows);
}
};
if (item.getModel().getObject().getStatus().equals(UserDtoStatus.DELETE)) {
shadowHeader.add(new AttributeModifier("class", "box-header with-border delete"));
}
item.add(shadowHeader);
}
};
Expand Down

0 comments on commit 747818d

Please sign in to comment.