Skip to content
This repository has been archived by the owner on Jul 11, 2022. It is now read-only.

Commit

Permalink
patterfly: fixing typo in image name (_over -> _Over); increasing the…
Browse files Browse the repository at this point in the history
… size of icons for availability; decreasing the size of icons for event severities; removing unused images
  • Loading branch information
jkremser committed Jul 25, 2014
1 parent f8e474f commit c4eba02
Show file tree
Hide file tree
Showing 17 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public ArrayList<ListGridField> getListGridFields(boolean showResourceAncestry)
severityField.setCellFormatter(new CellFormatter() {
public String format(Object o, ListGridRecord listGridRecord, int i, int i1) {
String icon = ImageManager.getEventSeverityBadge(EventSeverity.valueOf(o.toString()));
return Canvas.imgHTML(icon);
return Canvas.imgHTML(icon, 24, 24);
}
});
severityField.setShowHover(true);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ private void show(EventComposite composite) {
id.setValue(composite.getEventId());

StaticTextItem severity = new StaticTextItem("severity", MSG.view_inventory_eventHistory_severity());
String severityValue = Canvas.imgHTML(ImageManager.getEventSeverityBadge(composite.getSeverity()));
String severityValue = Canvas.imgHTML(ImageManager.getEventSeverityBadge(composite.getSeverity()), 24, 24);
switch (composite.getSeverity()) {
case DEBUG:
severityValue += MSG.common_severity_debug();
Expand Down
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,6 @@ Button (also used as MenuButton base style)
.buttonSelectedOver,
.buttonSelectedDisabled {
margin: 0px;
font-weight : 600;
text-align: center;
vertical-align: middle;
cursor: pointer;
Expand Down

0 comments on commit c4eba02

Please sign in to comment.