diff --git a/scripts/system/places/places.css b/scripts/system/places/places.css index 684139a5b8..6d167772e0 100644 --- a/scripts/system/places/places.css +++ b/scripts/system/places/places.css @@ -491,6 +491,10 @@ div.placeEntryLargeSize { height: 220px; } +div.placeEntryMediumSize { + height: 100px; +} + div.addMsEntry { width: 85%; height: 38px; diff --git a/scripts/system/places/places.html b/scripts/system/places/places.html index 6b7727c2d4..8da25f0744 100644 --- a/scripts/system/places/places.html +++ b/scripts/system/places/places.html @@ -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";