Black

Extra space before Bot name - Black

Extra space before Bot name

by Shaos » Wed Jan 01, 2025 6:10 am

I like Black style very much (and its flavors), but it's having one little problem - in the list of active users it shows extra space before Bot names:
Screenshot from 2024-12-31 21-55-43.png
This is how it looks in prosilver for example:
Screenshot from 2024-12-31 21-55-25.png
Last edited by Shaos on Sun Jan 05, 2025 8:37 pm
Shaos
Registered User
Posts: 6
Joined: Wed Jan 01, 2025 6:02 am

Re: Extra space before Bot name

by Shaos » Thu Jan 02, 2025 3:04 am

Another style from Arty has the same problem - see Elegance:

https://www.phpbb.com/customise/db/styl ... elegance2/
Shaos
Registered User
Posts: 6
Joined: Wed Jan 01, 2025 6:02 am

Re: Extra space before Bot name

by cabot » Thu Jan 02, 2025 9:22 am

Hello,

Open Ouvrez theme/common/_links.scss

Remove (line ~21):

Code: Select all

span.username-coloured {
		margin-left: 10px;
}
Compile the code (using the SCSS Compiler extension, for example).

This change will be made in the next release. ;)
User avatar
cabot
Jr. Style Validator
Posts: 990
Joined: Sat Jan 07, 2012 4:16 pm

Re: Extra space before Bot name

by Shaos » Thu Jan 02, 2025 3:27 pm

It works, thanks! :)

(I simply edited stylesheet.css)
Shaos
Registered User
Posts: 6
Joined: Wed Jan 01, 2025 6:02 am

Re: Extra space before Bot name

by Shaos » Sun Jan 05, 2025 8:42 pm

Another suggestion - to make attachbox header ATTACHMENTS instead of Attachments (to match original prosilver style) text-transform: uppercase should be added back:

Code: Select all

 .attachbox dt {
   font-family: "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
   font-size: 12px;
   line-height: 1.6;
   font-weight: 500;
   text-transform: uppercase;
 }
Shaos
Registered User
Posts: 6
Joined: Wed Jan 01, 2025 6:02 am