mirror of
https://gitlab.crans.org/bde/nk20
synced 2025-06-23 19:06:37 +02:00
Styling and catching late registrations as old
This commit is contained in:
@ -3,6 +3,10 @@
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.underline {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* Opaque tooltip with white background */
|
||||
.tooltip.show {
|
||||
opacity: 1;
|
||||
|
@ -102,7 +102,7 @@ function displayStyle (note) {
|
||||
else if (balance < 0) { css += ' text-warning' }
|
||||
if (!note.email_confirmed) { css += ' bg-primary' }
|
||||
else if (!note.is_active || (note.membership && note.membership.date_end < new Date().toISOString())) { css += ' bg-info' }
|
||||
if (((Date.now() - Date.parse(note.created_at))/ms_per_year) > 3) { css += 'font-weight-bold' }
|
||||
if (((Date.now() - Date.parse(note.created_at))/ms_per_year) > 2.5) { css += ' font-weight-bold underline' }
|
||||
return css
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user