1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2025-01-09 00:20:08 +00:00

Username is no longer encapsulated in a <strong>

This commit is contained in:
Tim Düsterhus 2012-11-20 15:16:27 +01:00
parent e0f6b53b63
commit 92d63b9124
2 changed files with 5 additions and 1 deletions

View File

@ -91,7 +91,7 @@ public function getFormattedUsername() {
$username .= ' -> '.$message['username'];
}
return '<strong>'.$username.'</strong>';
return $username;
}
/**

View File

@ -40,6 +40,10 @@
}
}
.username {
font-weight: bold;
}
&.unloaded {
opacity: 0.4;
}