Merge pull request #1307 from AleziaKurdis/placesAppAdiosBluryPictures

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; height: 220px;
} }
div.placeEntryMediumSize {
height: 100px;
}
div.addMsEntry { div.addMsEntry {
width: 85%; width: 85%;
height: 38px; height: 38px;

View file

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