mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 10:19:03 +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;
|
height: 220px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.placeEntryMediumSize {
|
||||||
|
height: 100px;
|
||||||
|
}
|
||||||
|
|
||||||
div.addMsEntry {
|
div.addMsEntry {
|
||||||
width: 85%;
|
width: 85%;
|
||||||
height: 38px;
|
height: 38px;
|
||||||
|
|
|
@ -423,6 +423,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;
|
||||||
}
|
}
|
||||||
|
@ -443,6 +446,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