Merge pull request #1307 from AleziaKurdis/placesAppAdiosBluryPictures
Some checks failed
Master API-docs CI Build and Deploy / Build and deploy API-docs (push) Has been cancelled
Master Doxygen CI Build and Deploy / Build and deploy Doxygen documentation (push) Has been cancelled

Places App.: Larger display and no more blurry effect in Places List.
This commit is contained in:
Julian Groß 2025-02-26 12:13:59 +01:00 committed by GitHub
commit c4fa5bf186
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 0 deletions

View file

@ -491,6 +491,10 @@ div.placeEntryLargeSize {
height: 220px;
}
div.placeEntryMediumSize {
height: 100px;
}
div.addMsEntry {
width: 85%;
height: 38px;

View file

@ -423,6 +423,9 @@
}
var maxCharNumber = 55;
if (currentListFormat === "PLACES" && placeRecords[i].category === "A") {
maxCharNumber = 110;
}
if (currentListFormat === "PLACES" && i === 0) {
maxCharNumber = 180;
}
@ -443,6 +446,11 @@
var promoted = "";
var placeTitlePromoted = "";
var prompotionDescHeight = "";
if (currentListFormat === "PLACES" && placeRecords[i].category === "A") {
promoted = " placeEntryMediumSize";
promotedblur = " promotedblur";
prompotionDescHeight = " style='height: 60px; '";
}
if (currentListFormat === "PLACES" && i === 0) {
promotedblur = " promotedblur";
promoted = " placeEntryLargeSize";