Changeset 64b90c0 in Klonkt


Ignore:
Timestamp:
06/16/2026 02:16:38 AM (3 months ago)
Author:
roboburr <roboburr@…>
Branches:
main
Children:
b960185
Parents:
d2c43f9
Message:

Circles: Solo/Circle as segmented switcher (specificity fix) + subheading 'my circle'

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@…>

Location:
src
Files:
2 edited

Legend:

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

    rd2c43f9 r64b90c0  
    23662366}
    23672367
    2368 /* Solo / Cirkel scope-toggle (alleen in circle-modus) — centraal in de bar */
    2369 .feed-scope { display: inline-flex; gap: .35rem; }
    2370 .feed-scope-btn {
    2371     display: inline-flex; align-items: center;
    2372     padding: .35rem .85rem; min-height: 32px;
    2373     background: transparent; border: 1px solid var(--rule); border-radius: 999px;
    2374     color: var(--ink-muted); font-family: var(--font-ui); font-size: .82rem;
    2375     text-decoration: none; cursor: pointer; transition: all .15s;
    2376 }
    2377 .feed-scope-btn:hover { color: var(--ink); border-color: var(--ink-muted); }
    2378 .feed-scope-btn.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
     2368/* Solo / Cirkel scope-switcher (alleen in circle-modus) — segmented toggle, centraal.
     2369   Hoge specificiteit (+ !important op tekst) zodat 'ie globale link-stijlen wint. */
     2370.view-switcher-wrap .feed-scope {
     2371    display: inline-flex;
     2372    background: var(--paper-2);
     2373    border: 1px solid var(--rule);
     2374    border-radius: 999px;
     2375    padding: 3px;
     2376}
     2377.view-switcher-wrap .feed-scope-btn {
     2378    display: inline-flex;
     2379    align-items: center;
     2380    padding: .32rem .95rem;
     2381    min-height: 30px;
     2382    border: none !important;
     2383    border-radius: 999px !important;
     2384    background: transparent !important;
     2385    color: var(--ink-muted) !important;
     2386    font-family: var(--font-ui);
     2387    font-size: .82rem;
     2388    font-weight: 500 !important;
     2389    text-decoration: none !important;
     2390    cursor: pointer;
     2391    transition: all .15s;
     2392}
     2393.view-switcher-wrap .feed-scope-btn:hover { color: var(--ink) !important; }
     2394.view-switcher-wrap .feed-scope-btn.is-active {
     2395    background: var(--ink) !important;
     2396    color: var(--paper) !important;
     2397}
    23792398
    23802399.grid-cols-picker {
  • src/views/pages/circle-feed.ejs

    rd2c43f9 r64b90c0  
    11<div class="container cirkel-head">
    22  <h1>Cirkel</h1>
    3   <p class="cirkel-sub">Wat er speelt bij de andere sites in deze cirkel.</p>
     3  <p class="cirkel-sub">Wat er speelt bij de andere sites in mijn cirkel.</p>
    44</div>
    55
Note: See TracChangeset for help on using the changeset viewer.