aboutsummaryrefslogtreecommitdiff
path: root/main/src
diff options
context:
space:
mode:
Diffstat (limited to 'main/src')
-rw-r--r--main/src/ui/conversation_content_view/message_widget.vala6
-rw-r--r--main/src/ui/util/helper.vala7
2 files changed, 2 insertions, 11 deletions
diff --git a/main/src/ui/conversation_content_view/message_widget.vala b/main/src/ui/conversation_content_view/message_widget.vala
index a2325797..2b5fd793 100644
--- a/main/src/ui/conversation_content_view/message_widget.vala
+++ b/main/src/ui/conversation_content_view/message_widget.vala
@@ -216,10 +216,8 @@ public class MessageItemWidget : SizeRequestBin {
markup_text = @"<span size=\'$size_str\'>" + markup_text + "</span>";
}
- string gray_color = Util.rgba_to_hex(Util.get_label_pango_class_color(label, "dim-label"));
-
if (message.edit_to != null) {
- markup_text += " <span size='small' color='%s'>(%s)</span>".printf(gray_color, _("edited"));
+ markup_text += " <span size='small' alpha='70%'>(%s)</span>".printf(_("edited"));
theme_dependent = true;
}
@@ -228,7 +226,7 @@ public class MessageItemWidget : SizeRequestBin {
if (message.direction == Message.DIRECTION_SENT && (message.marked == Message.Marked.SENDING || message.marked == Message.Marked.UNSENT)) {
// Append "pending..." iff message has not been sent yet
if (message.time.compare(new DateTime.now_utc().add_seconds(-10)) < 0) {
- markup_text += " <span size='small' color='%s'>%s</span>".printf(gray_color, _("pending…"));
+ markup_text += " <span size='small' alpha='70%'>%s</span>".printf(_("pending…"));
theme_dependent = true;
additional_info = AdditionalInfo.PENDING;
} else {
diff --git a/main/src/ui/util/helper.vala b/main/src/ui/util/helper.vala
index ecfb777d..c1c32048 100644
--- a/main/src/ui/util/helper.vala
+++ b/main/src/ui/util/helper.vala
@@ -161,13 +161,6 @@ public static Gdk.RGBA get_label_pango_color(Label label, string css_color) {
return color_rgba;
}
-public static Gdk.RGBA get_label_pango_class_color(Label label, string css_class) {
- label.get_style_context().add_class(css_class);
- Gdk.RGBA color_rgba = label.get_style_context().get_color(StateFlags.NORMAL);
- label.get_style_context().remove_class(css_class);
- return color_rgba;
-}
-
public static string rgba_to_hex(Gdk.RGBA rgba) {
return "#%02x%02x%02x%02x".printf(
(uint)(Math.round(rgba.red*255)),