Vivaldi Forum mod
-
@Hadden89 said in Vivaldi Forum mod:
I see less emoji when I enter the ID topic in VFM settings. Kinda like 1/10 of the actual in the pages.
Figured it out - my RegExp was not permissive enough. It still seems to be missing stuff though. Almost there
-
@LonM Cool, I saw you add its own section and % loading. Very clean. I like it
I still see some overlap with bigger emotes/picture, but nothing critical. But I think this still helpyou can change the size of the emojis. In the forum mod's custom css area, I added this: span.vm-emoji { font-size: x-large; }
A lot of emojis now
-
@Hadden89 I figured out the 2nd real cause for gifs not loading.
For those interested, here is the commit that fixes it: https://github.com/LonMcGregor/vivaldi_forum_mod/commit/da0427959b8e89da07bf50e861626c8d46c139f3
-
-
@Catweazle said in Vivaldi Forum mod:
Saved when you previously shared, but forgot.
I'll give it a try.Thanks.
-
@LonM
The storage usage is disappeared but maybe you didn't update that portion yet
Nope, it is ininfo
section.
-
@Hadden89 I moved that into the info section. Things got too crowded on the main mod page.
-
@Hadden89 Be aware the storage is local, so it won’t sync.
-
@luetage I don't sync extensions or their data. Having them manually portable would be nice, but unsure if applicable at all, maybe when LonM version and your will converge can be done manually but who knows...
Guess I'll still keep a note with IDs topics for best emotes.
-
Hi,
Related to this:
@Hadden89 said in Vivaldi Forum mod:
Guess I'll still keep a note with IDs topics for best emotes.
How about to add a default list of Topics IDs "and other URLs?" to Subscribe?
That would help for First Installs and Sync despite the customs, at least to have some of them.--
For Favorites,
Somehow to pull the Data from a Topic's Post with for exampleUserName or PostID and Pin it as Favorites?
Each one could create its own Post and add there their Favorites being linked to the Extension Favs.
-
@Zalex108 Adding in the mod could be overwhelming and need more coding (but that's a LonM/Lue choice)
If you mean a thread with IDs suggested for the extension, I'm totally on board.
(Could be also the same thread of the emojis. After all, most emojiers use VFM too).
-
@Hadden89 said in Vivaldi Forum mod:
@Zalex108 Adding in the mod could be overwhelming and need more coding (but that's a LonM/Lue choose)
Just a list to Subscribe, like the AdBlocker, then pull those on the Machine.
If you mean a thread with IDs suggested for the extension, I'm totally on board.
That would be another way, maybe better for Devs to avoid update the list, just refreshing the list from the user side.
(Could be also the same thread of the emojis. After all, most emojiers use VFM too).
Yes,
I mean about that, currently there are 2 Topics if I'm not wrong.
Maybe it's better another one just with the ID Lists.
-
I'd call this a laziness request but nice if don't mean a lot of coding/permissions:
is possible to a "add this topic [id]" to VFM extension menu? Is faster than grabbing/[ID]/
portion > open settings > go to custom emotes and click on load button. [Would be bad also if increase RAM usage.]
-
@Hadden89 What for? You mean to add emotes from "this current topic"? Is that something you would frequently encounter?
(I'm trying to figure out the whole use case)
-
you mean add emotes from "this current topic"?
Exactly. "New emojis" could be spread on random topics and not on the main "emoji thread". I like saving clicks but if annoying to do is not a critical function at all, of course. It was just an idea.
Also, I'd put the storage usage before the changelog. Is the most
!important
info users may want to see ^^
-
@Hadden89 that sounds reasonable.
Storage usage will likely never be filled now its just using urls. I may remove that.
-
I don't know if someone will be able to guide me... I'm stuck with the following mod on the forum.
It works when the avatar contains no picture but doesn't when it does.
I tried by addingimg
,li
,ul
, different classes,z-index
, etc. but couldn't find a solution for this.
Does anyone have a hint?
Thanks in advance./* Line through avatar picture */ a .avatar.avatar-rounded::after /*, a img.avatar.avatar-rounded::before */ { content: ''; width: 100%; border-bottom: 2px solid transparent; top: 0; left: 0; overflow: hidden; position: absolute; height: 0; transition: 0.5s ease-in-out; } a .avatar.avatar-rounded:hover::after /*, a img.avatar.avatar-rounded:hover::before */ { border-bottom: 5px solid red; height: 100%; }
-
@Ornorm That’s a strange thing with
img
@potmeklecbohdan said in Vivaldi Forum mod:~ an hour after giving up I remembered that
img
s can’t have::before
&::after
or what…See also https://stackoverflow.com/a/6949190
-
@potmeklecbohdan Thank you for that!
I just feel betrayed by the god (if any) of CSS...
-
@Ornorm Not totally satisfied with the solution but I ended-up with this (double effect for avatars without
img
) :