@DownPW said in Threaded chat support for NodeBB:
Better like this : add shadow and border-left on self answer
Of course - you style to your own requirements and taste š Iāll commit that CSS we discussed yesterday also
Nope no problem mark @phenomlab
I have another request that should take less time for you.
I open it in another thread.
@phenomlab said in nodebb chat roll dice game:
@DownPW sounds like the plugin author is responsive and open to requests etc. I think taking this route is going to be quicker, but happy to review of you think otherwise.
hi @phenomlab
Have you got an idea for improve that bug ? :
Hello @oplik0
Itās appear when the result of a roll appear on 2 lines in the timeline (Example: lot of dice roll)
Example here with no bugs on 1 line :
thanks for your futur replies
@DownPW is there a url where I can see this ?
You can test on my VM test as usual
MP
I have test some CSS code but itās difficult for me.
I just manage to remove the span time but it also removes it for other system events appearing on the timeline.
span.timeago.timeline-text {
display: none;
}
I canāt figure out why the username and timestamp display correctly on one line and not on 2. Itās almost the same thing finally
@DownPW This isnāt going to be a simple fix you can resolve with CSS. The issue here is how the plugin injects new code into an existing HTML structure, but doesnāt provide any means of identifying elements by ID rather than using a shared class name. Based on this, ābest effortā is all that can be offered without directly changing any code.
For example
.dice-event-text {
display: inline-block;
align-items: center;
flex-wrap: wrap;
max-width: 800px;
width: 800px;
}
This yields
Not perfect of course, but certainly better than what you have.
indeed it is better but it also modifies the result on 1 lineā¦
As you say, we canāt do much until the plugin is modified
@DownPW Yes, itās not very elegant sadly, and there is an impact to other elements. You could write a jQuery function that only modifies the CSS when there are more than x of the same element in that div
ā¦
Why not @phenomlab but like you know, iām not a good JS develloper lol
I have not the skills for that
@phenomlab do you think it is difficult to do?
@DownPW said in nodebb chat roll dice game:
do you think it is difficult to do?
No, but judging by this
https://github.com/NodeBB/NodeBB/pull/10837/commits/e7404fd7c3d401e6adb6246c23e5567cda136dec
It might be best to wait - or if you canāt, you could easily patch that file, or overwrite it (public/src/modules/helpers.common.js
)
@phenomlab said in nodebb chat roll dice game:
It might be best to wait - or if you canāt, you could easily patch that file, or overwrite it
ok but I donāt understand what the correction do for my problem ?
The interpretation of HTML is better ?
@DownPW yes, exactly. Itāll enable better element styling meaning a greater flexibility in terms of being able to target specific components
I will test to see if itās better out of curiosity but I donāt think that will be enoughā¦
That is what I thought. patching the file is not enough. Same result
@DownPW did you rebuild and restart after patching?
@DownPW from what Iāve read, the patch appears in core v2.5.0
and even then, this plugin would still need to be modified so that targeting classes is then available.
Yes I see that and the correctif with type event ID
@DownPW I still think you could do something much quicker with jQuery.