I use custom CSS to turn turn-based game notes font to Courier New (fixed width font makes tile counts clearer in Azul).
With this custom CSS I can't open any bug report. There's just an unexpected error "You cannot access this section because you are using some custom CSS (see Preferences > Advanced)." That seems very odd to me. If the bug reports aren't meant to support custom CSS, then why don't they just load without it?
Code: Select all
#turnbased_notes_content {
font-family:"Courier New";
font-size:inherit;
font-size:120%;
font-weight:inherit
}