@crazycells said in CSS code customization for the link preview plugin:
does OGProxy show the pdf previews as well?
Not yet, but it could with a bit of additional code.
@Panda nope. You’re not imagining it. I too have seen this and it’s pretty annoying. Looking in more detail, it should be easily fixed with a simple z-index
CSS value.
I’ll have a look at this later.
Yep in my dev env, popup background is transparent
@DownPW said in Difficult to move posts now, on mobile.:
Yep in my dev env, popup background is transparent
How do you achieve that? And can you click through transparent areas?
@Panda you can provided the index order places that specific element on the top.
Yep i select topic, topic tools, move topics and I have the transparent popup and I Can click through transparent area but I’m on an Android OS and it Can be different on IOS
@DownPW ok!
What and where do I put something to make the pop up transparent?
@Panda why would you want it transparent ? It’s probably like this for us because we have heavily customized themes.
@phenomlab if I was understanding correctly, by making that pop-up transparent I can click through an area of it and get to the move post box that is currently hidden?
@Panda Also happy to do it the way you suggest, making the back box z-index higher.
What would I type to do that?
@Panda no, you wouldn’t be able to. The issue is z-index
which is the stacking order of elements. The higher the value the higher the reference.
For example, -1
means place under everything else. By default, the index figure is 1
, so you’d need a much higher value to ensure it was always positioned over other elements.
@Panda said in Difficult to move posts now, on mobile.:
What would I type to do that?
I’ll provide some custom CSS for this once I’m in front of a pc.
Yes I understand the principal, just dont know how to make that CSS
Yep I have the same no transparency menu at first :
It’s just the popoup after select move topics who is transparent :
I have customcss code, maybe on your site this is not transparent.
I solved the problem with this code (to be adapted to your environment) :
/* BUGFIX: Popup topic tool transparency */
.card {
--bs-card-cap-bg: var(--bs-node-card-cap-bg);
background-color: var(--bs-node-card-cap-bg);
}
RESULT :
Arf I just realized that we don’t have the same problem at all
In fact you don’t see the popup name “Move Topics” at all whereas I see it transparent
The z-index
solution suggested by Mark is indeed the correct solution I think
Maybe this :
.tool-modal {
z-index: 1055;
}
@DownPW Yes, it is. It’s set far too low meaning other elements with a higher preference will sit over the top of it.