mirror of
https://github.com/nextcloud/server.git
synced 2026-06-14 19:20:35 -04:00
Ensure that the user name is shown in bold in mentions
Different browsers use different font weights for strong elements (Chromium uses "bold", but Firefox uses "bolder", which is relative to the font weight of the parent), so now the user name in mentions is explicitly shown with a bold weight. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
This commit is contained in:
parent
63ab5d919e
commit
be5a1faf70
1 changed files with 5 additions and 0 deletions
|
|
@ -171,6 +171,11 @@
|
|||
margin-left: 0;
|
||||
margin-right: 2px;
|
||||
}
|
||||
strong {
|
||||
/* Ensure that the user name is shown in bold, as different browsers
|
||||
* use different font weights for strong elements. */
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue