mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-05 21:12:40 +02:00
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 ...
This commit is contained in:
parent
7a59a27eec
commit
295c25ab49
2 changed files with 14 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
||||||
// places.css
|
// places.css
|
||||||
//
|
//
|
||||||
// Created by Alezia Kurdis, January 1st, 2022.
|
// 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.
|
// css for the ui of the Places application.
|
||||||
//
|
//
|
||||||
|
@ -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;
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
// places.html
|
// places.html
|
||||||
//
|
//
|
||||||
// Created by Alezia Kurdis, January 1st, 2022.
|
// 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.
|
// html for the ui of the Places application.
|
||||||
//
|
//
|
||||||
|
@ -421,6 +421,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;
|
||||||
}
|
}
|
||||||
|
@ -441,6 +444,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";
|
||||||
|
|
Loading…
Reference in a new issue