commit | 087835dbad880420721aed7c8680081d4e935830 | [log] [tgz] |
---|---|---|
author | Gustaf Lundh <gustaf.lundh@sonymobile.com> | Mon Feb 09 15:36:11 2015 +0100 |
committer | Gustaf Lundh <gustaf.lundh@sonymobile.com> | Mon Feb 09 15:36:11 2015 +0100 |
tree | ec841f19c82ae3287dc6a5c57cc1a51d2b9bf486 | |
parent | e4fa5a50547466c79a55d598a4338a635b1d7e95 [diff] |
Replace Reviewer Label/Hashtag close image with better char The previous character: ☒ ...would look funny on certains OSes and missing on other. Replaced with: × Skipped the CSS-border. Looks better without. Change-Id: Ia3c3515365fd6dce4d9b15b1b37f587d6e17371d
diff --git a/gerrit-gwtui/src/main/java/com/google/gerrit/client/change/Hashtags.java b/gerrit-gwtui/src/main/java/com/google/gerrit/client/change/Hashtags.java index 072b78e..faba10d 100644 --- a/gerrit-gwtui/src/main/java/com/google/gerrit/client/change/Hashtags.java +++ b/gerrit-gwtui/src/main/java/com/google/gerrit/client/change/Hashtags.java
@@ -169,7 +169,7 @@ .openElement("button") .setAttribute("title", "Remove hashtag") .setAttribute("onclick", REMOVE + "(event)") - .append("☒") + .append("×") .closeElement("button") .closeSpan(); if (itr.hasNext()) {
diff --git a/gerrit-gwtui/src/main/java/com/google/gerrit/client/change/Labels.java b/gerrit-gwtui/src/main/java/com/google/gerrit/client/change/Labels.java index 849512b..a416894 100644 --- a/gerrit-gwtui/src/main/java/com/google/gerrit/client/change/Labels.java +++ b/gerrit-gwtui/src/main/java/com/google/gerrit/client/change/Labels.java
@@ -273,7 +273,7 @@ html.openElement("button") .setAttribute("title", Util.M.removeReviewer(name)) .setAttribute("onclick", REMOVE + "(event)") - .append("☒") + .append("×") .closeElement("button"); } html.closeSpan();