# Comment resolve

Subtle web animation sketch from [https://mighil.com/animations](https://mighil.com/animations).

- **Live demo:** https://mighil.com/animations/comment-resolve
- **Standalone HTML:** https://mighil.com/animations/comment-resolve?download=1
- **This file:** https://mighil.com/animations/comment-resolve/comment-resolve.md
- **Technique:** `review`

## What it does

Resolve folds the thread away.

## Instructions for AI / coding agents

Implement this micro-interaction in the user's stack (vanilla HTML, React, Vue, Svelte, etc.).

1. Use the **HTML** as the DOM structure (adapt JSX/templates as needed; keep class names and ids).
2. Include the **Theme** CSS (or map the same variables into the host design system). It switches light/dark with `prefers-color-scheme`.
3. Apply the **CSS** as-is when possible. It uses `var(--text-color)`, `var(--heading-color)`, `var(--background-color)`, etc. from the theme so both modes work.
4. Run the **JavaScript** after the markup mounts. Prefer `DOMContentLoaded` or a framework `useEffect` / `onMount`.
5. Keep motion respectful of `prefers-reduced-motion` if the snippet already checks it.
6. Do not depend on mighil.com runtime or fonts. Theme variables are enough for color.
7. If porting to a component, expose the interactive root via a ref and preserve accessibility attributes (`aria-*`, `role`, `button` types).

## Theme (auto light / dark)

```css
/* Auto light / dark — follows prefers-color-scheme */
:root{
  color-scheme: light dark;
  --text-color: hsl(0, 0%, 18%);
  --heading-color: hsl(0, 0%, 18%);
  --background-color: hsl(0, 0%, 99%);
  --bg-color: hsl(0, 0%, 99%);
  --link-color: hsl(0, 0%, 18%);
  --visited-color: hsl(0, 0%, 18%);
  --blockquote-color: hsl(0, 0%, 18%);
  --code-bg-color: hsl(0, 0%, 95%);
  --code-color: hsl(0, 0%, 18%);
  --sub-color: hsl(0, 0%, 29%);
}
@media (prefers-color-scheme: dark){
:root{
  --text-color: hsl(35, 25%, 85%);
  --heading-color: hsl(35.2, 32.6%, 82.5%);
  --background-color: hsl(60, 2.2%, 8.8%);
  --bg-color: hsl(60, 2.2%, 8.8%);
  --link-color: hsl(34.7, 55.3%, 79.8%);
  --visited-color: hsla(34.7, 55.3%, 79.8%, 0.85);
  --blockquote-color: hsl(35, 30%, 75%);
  --code-bg-color: hsl(30, 5%, 7.8%);
  --code-color: limegreen;
  --sub-color: hsla(34.7, 24.7%, 84.9%, 0.78);
}
}
```

## HTML

```html
<div class="thread" id="thread">
        <div class="thread-head">
          <p>Can we ship without the banner?</p>
          <button type="button" class="thread-resolve" id="thread-resolve" aria-label="Resolve comment">
            <span class="thread-icos" aria-hidden="true">
              <svg class="thread-ico-idle" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3H14z"/><path d="M7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3"/></svg>
              <svg class="thread-ico-done" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.6" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12l5 5L20 7"/></svg>
            </span>
            <span class="thread-lbl">Resolve</span>
            <span class="thread-done-lbl">Resolved</span>
          </button>
        </div>
        <div class="thread-body"><div><p>Yes. Hide it behind the flag and merge after QA.</p></div></div>
      </div>
```

## CSS

```css
.thread{
  width:min(100%,340px);border-radius:8px;overflow:hidden;
  border:1px solid color-mix(in srgb,var(--text-color) 12%,transparent);
  background:color-mix(in srgb,var(--text-color) 2%,transparent);
  transition:border-color .25s ease,background .25s ease;
}

.thread.is-done{
  border-color:color-mix(in srgb,#2a8 30%,transparent);
  background:color-mix(in srgb,#2a8 5%,transparent);
}

.thread-head{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:10px 12px}

.thread-head p{margin:0;font-size:.84rem;line-height:1.35}

.thread-body{
  display:grid;grid-template-rows:1fr;
  transition:grid-template-rows .4s cubic-bezier(.22,1,.36,1);
}

.thread-body > div{overflow:hidden;min-height:0}

.thread-body p{
  margin:0;padding:0 12px 12px;font-size:.78rem;line-height:1.45;
  color:color-mix(in srgb,var(--text-color) 60%,transparent);
}

.thread.is-done .thread-body{grid-template-rows:0fr}

.thread-resolve{
  appearance:none;-webkit-appearance:none;height:28px;padding:0 10px;border-radius:6px;cursor:pointer;flex-shrink:0;
  font:inherit;font-size:.72rem;font-weight:500;line-height:1;color:inherit;
  border:1px solid color-mix(in srgb,var(--text-color) 14%,transparent);
  background:color-mix(in srgb,var(--text-color) 4%,transparent);
  display:inline-flex;align-items:center;gap:5px;
}

.thread-resolve svg{width:12px;height:12px;flex-shrink:0;display:block}

.thread-resolve .thread-ico-idle{opacity:1;transform:none;transition:opacity .18s ease,transform .22s ease}

.thread-resolve .thread-ico-done{
  position:absolute;opacity:0;transform:scale(.6);
  transition:opacity .2s ease,transform .25s cubic-bezier(.34,1.4,.64,1);
}

.thread-resolve{position:relative}

.thread-resolve .thread-icos{
  position:relative;width:12px;height:12px;flex-shrink:0;
}

.thread-resolve .thread-icos svg{position:absolute;left:0;top:0}

.thread.is-done .thread-resolve{
  color:color-mix(in srgb,#2a8 75%,var(--text-color));
  border-color:color-mix(in srgb,#2a8 55%,var(--text-color));
  background:transparent;
  cursor:default;
}

.thread.is-done .thread-resolve .thread-ico-idle{opacity:0;transform:scale(.6)}

.thread.is-done .thread-resolve .thread-ico-done{opacity:1;transform:scale(1)}

.thread.is-done .thread-resolve .thread-lbl{display:none}

.thread .thread-done-lbl{display:none}

.thread.is-done .thread-done-lbl{display:inline}

@media (prefers-reduced-motion: reduce){
  .grow-link::after,.wipe,.wipe .b,.shuffle .card,.odo-digit > b,.flap-reel,.step-node,.step-line > i,
  .switch,.switch::after,.copy-btn .c-idle,.copy-btn .c-done,.field label,.tip-bubble,.chip,.like-btn svg,
  .disc-btn svg,.disc-panel,.snack,.save-btn,.ux-box,.seg-pill,.soft-tabs-ink,.list-actions,.success-banner,.search-clear,.pin-btn svg,.submit-ring rect,
  .hold-btn .hold-fill,.toast,.menu-btn .menu-line,.stars button,.conn,.retry-btn,.sort-item,.mute-btn .wave,.mute-btn .x-line,.wizard-dots span,.cart-badge,.range-bubble,
  .filter-list li,.upload-bar > i,.quota-track > i,.quota-tip,.splitbtn-toggle svg,.splitbtn-menu,.presence-dot,
  .draft-banner,.tag-chip,.empty-state,.empty-item,.deadline,.deadline-clock,.deadline-track > i,.edge-fade-mask,.dirty-bar,.seen-ticks path,.nudge-field,.stack-card,
  .blur-line,.xface span,.magnet-chip,.confirm-btn,.confirm-btn span,.offline-banner,.sort-flip-btn svg,.sort-flip-list li,.react-fan,.react-fan button,.sticky-cta,
  .pw-toggle .pw-eye,.pw-toggle .pw-slash,.otp input,.exp-search,.exp-search input,.ok-field input,.ok-field .ok-check,.unread-dot,.unread-check,.unread-row,.sync-label,.sync-btn .sync-arrows,.sync-btn .sync-check,
  .inline-edit .ie-title,.inline-edit .ie-rename,.inline-edit .ie-panel,.inline-edit .ie-input,.inline-edit .ie-bar,
  .ghost-wrap .ghost-hint,.ghost-wrap .ghost-key,.cmd-palette,.cmd-palette li,.cmd-stage::before,.crumb-mid,.crumb-more,.diff-add,.diff-add > .diff-add-inner,.slot > i,.zoom-thumb,.zoom-full,.zoom-caption,
  .bulk-bar,.bulk-check svg,.bulk-row,.env-switch .env-ink,.env-switch button,.invite-btn .invite-idle,.invite-btn .invite-done,.flag-row,.flag-sw,.flag-sw::after,.deploy-node,.deploy-node i,.deploy-wire > b,.ws-ink,.ws-item .ws-check,.thread,.thread-body,.thread-resolve svg,
  .unfurl-card,.unfurl-thumb,.seat,.form-prog-bar > i,.form-prog-field,.form-prog-field svg,.mention b,.glyph-tile path,.glyph-tile line,.glyph-tile circle{transition:none!important}

  .thread.is-done .thread-body{grid-template-rows:0fr}

  .thread.is-done .thread-resolve .thread-ico-idle{opacity:0}

  .thread.is-done .thread-resolve .thread-ico-done{opacity:1;transform:scale(1)}
}
```

## JavaScript

```js
// Comment resolve
  const thread = document.getElementById('thread');
  const threadResolve = document.getElementById('thread-resolve');
  function resetThread() {
    if (thread) thread.classList.remove('is-done');
  }
  if (threadResolve && thread) {
    threadResolve.addEventListener('click', () => {
      if (thread.classList.contains('is-done')) return;
      thread.classList.add('is-done');
    });
  }

document.querySelectorAll('[data-act]').forEach((btn) => {
    btn.addEventListener('click', (e) => {
      e.stopPropagation();
      const act = btn.getAttribute('data-act');
      if (act === 'thread') resetThread();
    });
  });
```

---

_Source: https://mighil.com/animations/comment-resolve_
