Fixes for description display in item detail view to more closely match that of MSC 4.x

This commit is contained in:
Greg Neagle
2019-04-02 18:55:26 -07:00
parent fb4230fc8c
commit a5efb23eb0
2 changed files with 2 additions and 2 deletions

View File

@@ -131,7 +131,7 @@ class GenericItem: BaseItem {
my["developer"] = guess_developer()
}
if let description = my["description"] as? String {
my["raw_description"] = description
my["raw_description"] = filtered_html(description)
my["description"] = nil
}
my["icon"] = getIcon()

View File

@@ -58,7 +58,7 @@ body.product .product-detail .product-info .product-review h4 {
color: var(--text-color-subdued);
/*text-shadow: rgba(255,255,255,1) 0 1px 0*/
}
body.product .product-detail .product-info .product-review p,body.product .product-detail .product-info .product-review ul {
body.product .product-detail .product-info .product-review p,body.product .product-detail .product-info .product-review div,body.product .product-detail .product-info .product-review ul {
font-size: 12px;
line-height: 16px;
color: var(--text-color-normal);