feat(profile): verified links

This commit is contained in:
Evangelos Paterakis 2023-02-01 16:19:34 +02:00
parent a1accb5e81
commit faa879be59
No known key found for this signature in database
GPG Key ID: FE5185F095BFC8C9
3 changed files with 13 additions and 1 deletions

View File

@ -29,3 +29,8 @@
.ttl-status-action-bookmark:active {
color: @red_2;
}
.ttl-verified-field {
color: rgb(143,240,164);
background: rgba(143,240,164,0.1);
}

View File

@ -180,4 +180,9 @@ headerbar.flat.no-title .title {
.ttl-status-badge > button > label {
padding: 6px 12px;
}
}
.ttl-verified-field {
color: rgb(27,133,83);
background: rgba(27,133,83,0.1);
}

View File

@ -94,6 +94,8 @@ public class Tooth.Views.Profile : Views.Timeline {
row.add_suffix (val);
info.append (row);
if (f.verified_at != null) row.add_css_class("ttl-verified-field");
}
}
}