@phenomlab oh no, that is 1 cent on the video, but you are right, symbols are similarโฆ I just converted it to $1 , since it is more intuitive in daily lifeโฆ
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.
-
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