Changeset 7475ff3 in Klonkt


Ignore:
Timestamp:
06/29/2026 08:51:05 PM (2 months ago)
Author:
roboburr <roboburr@…>
Branches:
main
Children:
fb6819d
Parents:
0343a7a
Message:

style: drop the 0.4px blur on cover thumbnails

  • src/assets/css/style.css — remove filter:blur(.4px) from .grid-tile-img + .post-list-cover img; the server-side thumbnails are already crisp at ~2x display size, so the smoothing band-aid only softened them
  • src/views/shell.ejs — bump style.css buster v62 -> v63

Co-Authored-By: Claude <noreply@…>

Location:
src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/assets/css/style.css

    r0343a7a r7475ff3  
    19421942    display: block;
    19431943    background-color: #fff;            /* transparent logos sit on white once loaded */
    1944     filter: blur(.4px);               /* subtle smoothing of downscaled line-art covers */
    19451944    transition: opacity .4s ease;
    19461945}
     
    24002399   high-quality image pipeline, so high-res line-art covers don't go jagged when shrunk.
    24012400   Fades in on load (.is-loading removed) so the placeholder shows meanwhile. */
    2402 .grid-tile-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; filter: blur(.4px); transition: opacity .4s ease; }
     2401.grid-tile-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: opacity .4s ease; }
    24032402.grid-tile-img.is-loading { opacity: 0; }
    24042403.grid-tile:hover { transform: scale(0.98); }
  • src/views/shell.ejs

    r0343a7a r7475ff3  
    205205
    206206<!-- v9 stylesheet (full palette system) -->
    207 <link rel="stylesheet" href="/assets/css/style.css?v=62">
     207<link rel="stylesheet" href="/assets/css/style.css?v=63">
    208208<script>
    209209/* iOS safe-area, built by hand. env(safe-area-inset-top) resolves to 0 on this iOS in
Note: See TracChangeset for help on using the changeset viewer.