diff --git a/scripts/system/places/places.css b/scripts/system/places/places.css
index 6b52dc2239..37eac2d002 100644
--- a/scripts/system/places/places.css
+++ b/scripts/system/places/places.css
@@ -487,6 +487,10 @@ div.placeEntry {
text-align: center;
}
+div.placeEntryLargeSize {
+ height: 220px;
+}
+
div.addMsEntry {
width: 85%;
height: 38px;
@@ -625,6 +629,10 @@ div.placeDetail-event {
border: 0px;
}
+.promotedblur {
+ backdrop-filter: blur(0px);
+}
+
.placeTitle {
color: #ffffff;
font-size: 21px;
@@ -633,6 +641,10 @@ div.placeDetail-event {
text-shadow: 1px 1px 3px #000000;
}
+.placeTitlePromoted {
+ font-size: 28px;
+ text-shadow: 1px 1px 4px #000000;
+}
.placeTable {
width: 100%;
}
diff --git a/scripts/system/places/places.html b/scripts/system/places/places.html
index 5dbb11b907..980d8f0f1f 100644
--- a/scripts/system/places/places.html
+++ b/scripts/system/places/places.html
@@ -415,8 +415,12 @@
} else if (placeRecords[i].category === "Z") {
moreStyle = " style='background-color: #364a6e;'";
}
-
- var shortenedDescription = placeRecords[i].description.substr(0, 55);
+
+ var maxCharNumber = 55;
+ if (currentListFormat === "PLACES" && i === 0) {
+ maxCharNumber = 180;
+ }
+ var shortenedDescription = placeRecords[i].description.substr(0, maxCharNumber);
if (shortenedDescription.slice(-1) !== ".") {
shortenedDescription = shortenedDescription + "...";
}
@@ -429,21 +433,31 @@
placeUrl = "file:///~/serverless/tutorial.json";
}
+ var promotedblur = "";
+ var promoted = "";
+ var placeTitlePromoted = "";
+ var prompotionDescHeight = "";
+ if (currentListFormat === "PLACES" && i === 0) {
+ promotedblur = " promotedblur";
+ promoted = " placeEntryLargeSize";
+ placeTitlePromoted = " placeTitlePromoted";
+ prompotionDescHeight = " style='height: 175px; '";
+ }
//Add the place to the list
- formatedList = formatedList + "
";
+ formatedList = formatedList + "