[openpgp] Use encrypted-color instead of success-color

This commit is contained in:
Daniel Brötzmann
2020-09-20 21:03:53 +02:00
parent 1ac5ac2d67
commit a82cdd785a
2 changed files with 3 additions and 4 deletions

View File

@@ -38,10 +38,10 @@ TRUST_DATA = {
'warning-color'), 'warning-color'),
Trust.BLIND: ('security-medium-symbolic', Trust.BLIND: ('security-medium-symbolic',
_('Blind Trust'), _('Blind Trust'),
'openpgp-dark-success-color'), 'encrypted-color'),
Trust.VERIFIED: ('security-high-symbolic', Trust.VERIFIED: ('security-high-symbolic',
_('Verified'), _('Verified'),
'success-color') 'encrypted-color')
} }
@@ -231,7 +231,7 @@ class VerifiedOption(MenuOption):
type_ = Trust.VERIFIED type_ = Trust.VERIFIED
icon = 'security-high-symbolic' icon = 'security-high-symbolic'
label = _('Verified') label = _('Verified')
color = 'success-color' color = 'encrypted-color'
def __init__(self): def __init__(self):
MenuOption.__init__(self) MenuOption.__init__(self)

View File

@@ -1,4 +1,3 @@
.openpgp-dark-success-color { color: darker(@success_color); }
.openpgp-inactive-color { color: @unfocused_borders; } .openpgp-inactive-color { color: @unfocused_borders; }
.openpgp-mono { font-size: 12px; font-family: monospace; } .openpgp-mono { font-size: 12px; font-family: monospace; }