diff options
author | codedust <codedust@users.noreply.github.com> | 2020-03-02 21:10:36 +0100 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2020-07-06 21:52:33 +0200 |
commit | 86420fdef11b2833fbc42549c8c5817031876d66 (patch) | |
tree | fb51349e7468d64f394901a4d177398865aae580 /main/data | |
parent | 23c021685364de19e64248d0411a7ed2f216700e (diff) | |
download | dino-86420fdef11b2833fbc42549c8c5817031876d66.tar.gz dino-86420fdef11b2833fbc42549c8c5817031876d66.zip |
Show bubble containing the number of unread messages in the conversation list (#764)
Co-authored-by: codedust <codedust@users.noreply.github.com>
Co-authored-by: fiaxh <git@lightrise.org>
Diffstat (limited to 'main/data')
-rw-r--r-- | main/data/conversation_row.ui | 28 | ||||
-rw-r--r-- | main/data/theme.css | 8 |
2 files changed, 35 insertions, 1 deletions
diff --git a/main/data/conversation_row.ui b/main/data/conversation_row.ui index 7772c907..8d257201 100644 --- a/main/data/conversation_row.ui +++ b/main/data/conversation_row.ui @@ -46,7 +46,7 @@ <child> <object class="GtkRevealer" id="time_revealer"> <property name="transition-type">slide-right</property> - <property name="transition-duration">100</property> + <property name="transition-duration">50</property> <property name="reveal-child">True</property> <property name="visible">True</property> <child> @@ -71,6 +71,7 @@ <object class="GtkLabel" id="nick_label"> <property name="max_width_chars">15</property> <property name="ellipsize">end</property> + <property name="valign">end</property> <property name="xalign">0</property> <style> <class name="dim-label"/> @@ -86,12 +87,36 @@ <property name="max_width_chars">1</property> <property name="ellipsize">end</property> <property name="expand">True</property> + <property name="valign">end</property> <property name="xalign">0</property> <attributes> <attribute name="scale" value="0.8"/> </attributes> </object> </child> + <child> + <object class="GtkRevealer" id="unread_count_revealer"> + <property name="transition-type">slide-right</property> + <property name="transition-duration">50</property> + <property name="reveal-child">True</property> + <property name="visible">True</property> + <child> + <object class="GtkLabel" id="unread_count_label"> + <property name="vexpand">False</property> + <property name="visible">False</property> + <property name="margin-start">15</property> + <property name="xalign">0.5</property> + <attributes> + <attribute name="scale" value="0.6"/> + <attribute name="weight" value="PANGO_WEIGHT_BOLD"/> + </attributes> + <style> + <class name="unread-count"/> + </style> + </object> + </child> + </object> + </child> </object> </child> </object> @@ -116,6 +141,7 @@ <object class="GtkButton" id="x_button"> <property name="vexpand">False</property> <property name="visible">True</property> + <property name="margin-start">5</property> <style> <class name="conversation_list_row_xbutton"/> <class name="circular"/> diff --git a/main/data/theme.css b/main/data/theme.css index fb6e2b11..09e282ec 100644 --- a/main/data/theme.css +++ b/main/data/theme.css @@ -42,6 +42,14 @@ window.dino-main .dino-conversation .message-box:hover { background: alpha(@theme_fg_color, 0.04); } +window.dino-main .unread-count { + background-color: alpha(@theme_fg_color, 0.8); + color: @theme_base_color; + font-family: monospace; + border-radius: 999em; + padding: .2em .41em; +} + window.dino-main .dino-sidebar > frame { background: @insensitive_bg_color; border-left: 1px solid @borders; |