From 295c25ab49b09bab4f559658b2b7bedc5ada1fc8 Mon Sep 17 00:00:00 2001 From: Alezia Kurdis <60075796+AleziaKurdis@users.noreply.github.com> Date: Sat, 8 Feb 2025 22:05:57 -0500 Subject: [PATCH] Change the tile display in Place list Change the tile display in Place list: for the place with picture, the tile are increased from 60px height to 100px height The blury effect has been removed (on the place list only) display 100 char instead of 55 before truncate with ... --- scripts/system/places/places.css | 6 +++++- scripts/system/places/places.html | 10 +++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/scripts/system/places/places.css b/scripts/system/places/places.css index 37eac2d002..7d03e39af2 100644 --- a/scripts/system/places/places.css +++ b/scripts/system/places/places.css @@ -3,7 +3,7 @@ // places.css // // Created by Alezia Kurdis, January 1st, 2022. -// Copyright 2022 Overte e.V. +// Copyright 2022-2025 Overte e.V. // // css for the ui of the Places application. // @@ -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 fda67f4066..58cbf72211 100644 --- a/scripts/system/places/places.html +++ b/scripts/system/places/places.html @@ -4,7 +4,7 @@ // places.html // // Created by Alezia Kurdis, January 1st, 2022. -// Copyright 2022 Overte e.V. +// Copyright 2022-2025 Overte e.V. // // html for the ui of the Places application. // @@ -421,6 +421,9 @@ } var maxCharNumber = 55; + if (currentListFormat === "PLACES" && placeRecords[i].category === "A") { + maxCharNumber = 110; + } if (currentListFormat === "PLACES" && i === 0) { maxCharNumber = 180; } @@ -441,6 +444,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";