[Scummvm-git-logs] scummvm-web master -> e01b25782e42e14627e4f87a36291abd2b00becc
Thunderforge
noreply at scummvm.org
Tue Mar 15 21:18:53 UTC 2022
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm-web' repo located at https://github.com/scummvm/scummvm-web .
Summary:
e01b25782e IMAGES: Removing pixelated rendering class for thumbnails (#220)
Commit: e01b25782e42e14627e4f87a36291abd2b00becc
https://github.com/scummvm/scummvm-web/commit/e01b25782e42e14627e4f87a36291abd2b00becc
Author: Thunderforge (wjherrmann at gmail.com)
Date: 2022-03-15T16:18:50-05:00
Commit Message:
IMAGES: Removing pixelated rendering class for thumbnails (#220)
It's still preserved for the monkey at the bottom of the menu.
Changed paths:
scss/components/_card.scss
templates/pages/screenshots_category.tpl
diff --git a/scss/components/_card.scss b/scss/components/_card.scss
index 10ab3ada..91485c1d 100644
--- a/scss/components/_card.scss
+++ b/scss/components/_card.scss
@@ -20,9 +20,6 @@
max-width: 100%;
height: auto;
max-height: 250px;
- &.pixelated {
- image-rendering: pixelated;
- }
}
}
diff --git a/templates/pages/screenshots_category.tpl b/templates/pages/screenshots_category.tpl
index c2dfaa37..279ae8b0 100644
--- a/templates/pages/screenshots_category.tpl
+++ b/templates/pages/screenshots_category.tpl
@@ -7,7 +7,7 @@
<div class="card">
<div class="image">
<a href="{$smarty.const.DIR_SCREENSHOTS}/{$fdata.filename}_full.png" title="{$fdata.caption}">
- <img class="pixelated" src="{$smarty.const.DIR_SCREENSHOTS}/{$fdata.filename}.jpg" alt="{$g->getName()} screenshot #{$smarty.foreach.cat_loop.iteration}">
+ <img src="{$smarty.const.DIR_SCREENSHOTS}/{$fdata.filename}.jpg" alt="{$g->getName()} screenshot #{$smarty.foreach.cat_loop.iteration}">
</a>
</div>
<div class="caption">{$fdata.caption}</div>
More information about the Scummvm-git-logs
mailing list