Skip to content
Snippets Groups Projects
Commit 1956885a authored by Philipp Hörist's avatar Philipp Hörist Committed by Philipp Hörist
Browse files

Fix colors and icons

parent 30442be2
No related branches found
No related tags found
No related merge requests found
......@@ -1285,12 +1285,12 @@ class ConversationTextview(GObject.GObject):
# Message was not encrypted
if not self.encryption_enabled:
return
icon = 'security-low-symbolic'
color = 'error-color'
icon = 'channel-insecure-symbolic'
color = 'unencrypted-color'
tooltip = _('Not encrypted')
else:
icon = 'security-high-symbolic'
color = 'success-color'
icon = 'channel-secure-symbolic'
color = 'encrypted-color'
name, fingerprint = details
if fingerprint is None:
tooltip = name
......
......@@ -215,6 +215,10 @@ button.flat.link { padding: 0; border: 0; }
.error-color { color: @error_color; }
.warning-color { color: @warning_color; }
/*Encryption*/
.encrypted-color { color: rgb(75, 181, 67) }
.unencrypted-color { color: @error_color }
/*Dataforms*/
.field-fixed { font-size: 16px; font-weight: bold; padding-top:5px;}
.data-form-title { font-size: 16px; font-weight: bold; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment