# Inline edit

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

- **Live demo:** https://mighil.com/animations/inline-edit
- **Standalone HTML:** https://mighil.com/animations/inline-edit?download=1
- **This file:** https://mighil.com/animations/inline-edit/inline-edit.md
- **Technique:** `rename`

## What it does

Rename opens a field under the title.

## 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="inline-edit" id="inline-edit">
        <div class="ie-head">
          <button type="button" class="ie-title" id="ie-view">Q2 roadmap draft</button>
          <button type="button" class="ie-rename" id="ie-rename">Rename</button>
        </div>
        <div class="ie-panel">
          <div>
            <input class="ie-input" id="ie-edit" type="text" aria-label="Edit title" />
            <div class="ie-bar">
              <button type="button" class="ie-cancel" id="ie-cancel">Cancel</button>
              <button type="button" class="ie-save" id="ie-save">Save</button>
            </div>
          </div>
        </div>
      </div>
```

## CSS

```css
.inline-edit{
  width:min(100%,320px);display:flex;flex-direction:column;gap:0;
}

.inline-edit .ie-head{
  display:flex;align-items:baseline;justify-content:space-between;gap:12px;min-height:28px;
}

.inline-edit .ie-title{
  appearance:none;-webkit-appearance:none;margin:0;padding:0;border:0;background:transparent;
  font:inherit;font-size:1.05rem;font-weight:500;line-height:1.3;color:inherit;text-align:left;
  cursor:pointer;flex:1;min-width:0;
  transition:opacity .2s ease,transform .25s ease;
}

.inline-edit .ie-rename{
  appearance:none;-webkit-appearance:none;flex-shrink:0;margin:0;padding:0;border:0;background:transparent;
  font:inherit;font-size:.78rem;font-weight:500;color:color-mix(in srgb,var(--text-color) 45%,transparent);
  cursor:pointer;opacity:0;transform:translateX(4px);
  transition:opacity .2s ease,transform .25s ease,color .15s ease;
}

.inline-edit:hover .ie-rename,.inline-edit:focus-within .ie-rename{opacity:1;transform:none}

.inline-edit .ie-rename:hover{color:inherit}

.inline-edit .ie-panel{
  display:grid;grid-template-rows:0fr;opacity:0;
  transition:grid-template-rows .35s cubic-bezier(.22,1,.36,1),opacity .25s ease,margin .3s ease;
  margin-top:0;pointer-events:none;
}

.inline-edit .ie-panel > div{overflow:hidden;min-height:0}

.inline-edit.is-edit .ie-panel{
  grid-template-rows:1fr;opacity:1;margin-top:10px;pointer-events:auto;
}

.inline-edit.is-edit .ie-title{
  opacity:.4;transform:translateY(-2px) scale(.92);
  transform-origin:left center;pointer-events:none;
}

.inline-edit.is-edit .ie-rename{opacity:0;pointer-events:none}

.inline-edit .ie-input{
  width:100%;height:40px;padding:0;border:0;border-radius:0;box-sizing:border-box;
  font:inherit;font-size:1.05rem;font-weight:500;color:inherit;outline:none;background:transparent;
  border-bottom:1.5px solid color-mix(in srgb,var(--text-color) 18%,transparent);
  transition:border-color .2s ease;
}

.inline-edit .ie-input:focus{border-bottom-color:currentColor}

.inline-edit .ie-bar{
  display:flex;justify-content:flex-end;gap:6px;padding-top:10px;
  opacity:0;transform:translateY(-4px);
  transition:opacity .25s ease .08s,transform .3s cubic-bezier(.22,1,.36,1) .08s;
}

.inline-edit.is-edit .ie-bar{opacity:1;transform:none}

.inline-edit .ie-bar button{
  appearance:none;-webkit-appearance:none;height:30px;padding:0 12px;border-radius:6px;cursor:pointer;
  font:inherit;font-size:.78rem;font-weight:500;line-height:1;color:inherit;
  border:1px solid transparent;background:transparent;
}

.inline-edit .ie-cancel:hover{background:color-mix(in srgb,var(--text-color) 6%,transparent)}

.inline-edit .ie-save{
  border-color:color-mix(in srgb,var(--text-color) 14%,transparent);
  background:color-mix(in srgb,var(--text-color) 6%,transparent);
}

.inline-edit .ie-save:hover{background:color-mix(in srgb,var(--text-color) 10%,transparent)}

@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}

  .inline-edit.is-edit .ie-panel{grid-template-rows:1fr;opacity:1;margin-top:10px}

  .inline-edit.is-edit .ie-bar{opacity:1;transform:none}
}
```

## JavaScript

```js
// Inline edit
  const inlineEdit = document.querySelector('div.inline-edit');
  const ieView = document.getElementById('ie-view');
  const ieEdit = document.getElementById('ie-edit');
  const ieRename = document.getElementById('ie-rename');
  const ieSave = document.getElementById('ie-save');
  const ieCancel = document.getElementById('ie-cancel');
  let ieDraft = '';
  function openInline() {
    if (!inlineEdit || !ieView || !ieEdit) return;
    ieDraft = ieView.textContent;
    ieEdit.value = ieDraft;
    inlineEdit.classList.add('is-edit');
    requestAnimationFrame(() => {
      ieEdit.focus();
      ieEdit.select();
    });
  }
  function saveInline() {
    if (!inlineEdit || !ieView || !ieEdit) return;
    ieView.textContent = ieEdit.value.trim() || ieDraft;
    inlineEdit.classList.remove('is-edit');
  }
  function cancelInline() {
    if (!inlineEdit || !ieEdit) return;
    ieEdit.value = ieDraft;
    inlineEdit.classList.remove('is-edit');
  }
  if (inlineEdit && ieView && ieEdit) {
    ieView.addEventListener('click', openInline);
    if (ieRename) ieRename.addEventListener('click', openInline);
    if (ieSave) ieSave.addEventListener('click', saveInline);
    if (ieCancel) ieCancel.addEventListener('click', cancelInline);
    ieEdit.addEventListener('keydown', (e) => {
      if (e.key === 'Enter') { e.preventDefault(); saveInline(); }
      if (e.key === 'Escape') cancelInline();
    });
  }
```

---

_Source: https://mighil.com/animations/inline-edit_
