mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 04:09:14 +02:00
Merge pull request #1307 from AleziaKurdis/placesAppAdiosBluryPictures
Places App.: Larger display and no more blurry effect in Places List.
This commit is contained in:
commit
c4fa5bf186
2 changed files with 12 additions and 0 deletions
|
@ -491,6 +491,10 @@ div.placeEntryLargeSize {
|
|||
height: 220px;
|
||||
}
|
||||
|
||||
div.placeEntryMediumSize {
|
||||
height: 100px;
|
||||
}
|
||||
|
||||
div.addMsEntry {
|
||||
width: 85%;
|
||||
height: 38px;
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue