Pages: 1
Hello/Hi/Greetings,
When you use the search tool and get some results. Then there is link "(xx) Albums found". When you click on it, you get this list of albums, but they are like grey text on grey background links.
Links work, also when you select the text with mouse you can read the names of albums found.
Also when the list is long enough, so it all doesn't fit into your screen and there appears this scrollable box with the results -- the top of it gets hidden behind the page header part.
The error part is then this "album-item" text color or more specifically it's background, which is the same color as the text on it.
<div class="albums-found-popin">
<div class="albums-found-popin-container">
<span class="gallery-icon-cancel albums-found-close"></span>
<div class="mcs-popin-title">Albums found</div>
<div class="mcs-popin-desc">Albums listed here match your search by word. Click on one to browse by album.</div>
<div class="albums-found-container">
<div class="album-item">
<a href="index.php?/category/123456">Actual title</a>
</div>(Copy here your environment details, found on your Piwigo page [Administration > Tools > Maintenance])
Piwigo 15.5.0
Operating system: Linux
Theme: Bootstrap Darkroom
EDIT:
the 2 CSS rules that apply to this part are:
.albums-found-container .album-item {background: var(--secondary)!important;}
.albums-found-container .album-item {color: var(--gray)!important;}
So in local files editor CSS section I created an overwrite which seem to fix the problem by making text white:
.albums-found-container .album-item {color: white !important;}
Still not sure what to do about the too long container popup getting hidden behind header.
Last edited by deemon (2025-06-25 09:42:18)
Offline
Hi,
For the colors, I added this in the css tab of Local Files Editor plugin, valid for the list of tags as well as the list of albums found:
.tags-found-container .tag-item, .albums-found-container .album-item {background-color:red !important;color:black !important;}(If you want black text on red background !!!)
For the popup partially hidden by the header, I haven't found yet, but one can scroll the background to display the popup completely.
@deemon : I just noticed we have posted at the same time, found the same css trick and are blocked at the same bug : the z-index css does not work the popup display above the header.
Last edited by Katryne (2025-06-25 10:17:26)
Offline
Pages: 1