Styles chat messages in Boardgame Online to be more visible. Chat messages will display as a block with a an inset shadow. The shadow appears black by default, but is changed to light gray for spectator messages and green for team chat messages.
BGO Chat Style by vizlox
Details
Authorvizlox
LicenseNo License
Categoryuserstyles
Created
Updated
Size965 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name BGO Chat Style
@version 20220118.04.19
@namespace userstyles.world/user/vizlox
@description Styles chat messages in Boardgame Online to be more visible. Chat messages will display as a block with a an inset shadow. The shadow appears black by default, but is changed to light gray for spectator messages and green for team chat messages.
@author vizlox
@license No License
==/UserStyle== */
@-moz-document domain("boardgame-online.com") {
/* Default */
.chat_ChatMessage {
padding: 8px;
margin: 3px 0 8px;
border-radius: 8px;
box-shadow: inset 0 0 5px 1px #000c;
display: block;
}
/* Spectator */
b[style*="color: rgb(102, 102, 102);"] ~ .chat_ChatMessage {
box-shadow: inset 0 0 5px 1px #8888;
}
/* Team chat */
b[style*="color: rgb(0, 85, 0);"] ~ .chat_ChatMessage {
box-shadow: inset 0 0 5px 1px #080;
}
/* Enemy
.chat_ChatMessage {
box-shadow: inset 0 0 5px 1px #a00;
}*/
}