mirror of
https://github.com/TakeV-Lambda/Tooth.git
synced 2024-11-21 22:44:25 +00:00
feat(profile): verified links
This commit is contained in:
parent
a1accb5e81
commit
faa879be59
3 changed files with 13 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue