diff options
| author | Adam <[email protected]> | 2026-01-16 13:13:27 -0600 |
|---|---|---|
| committer | Adam <[email protected]> | 2026-01-16 13:55:59 -0600 |
| commit | 086603494691fa832239d79bf844880f87f1299c (patch) | |
| tree | b9ddb2d20659af633d02b4b1fa09e1f8c207f50a /packages/ui/src/components/inline-input.css | |
| parent | 2ccaa10e7961657322beff670b5522f404278c33 (diff) | |
| download | opencode-086603494691fa832239d79bf844880f87f1299c.tar.gz opencode-086603494691fa832239d79bf844880f87f1299c.zip | |
feat(app): edit project and session titles
Diffstat (limited to 'packages/ui/src/components/inline-input.css')
| -rw-r--r-- | packages/ui/src/components/inline-input.css | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/ui/src/components/inline-input.css b/packages/ui/src/components/inline-input.css new file mode 100644 index 000000000..1d8a00e08 --- /dev/null +++ b/packages/ui/src/components/inline-input.css @@ -0,0 +1,17 @@ +[data-component="inline-input"] { + color: inherit; + background: transparent; + border: 0; + border-radius: var(--radius-md); + padding: 0; + min-width: 0; + font: inherit; + letter-spacing: inherit; + line-height: inherit; + box-sizing: border-box; + + &:focus { + outline: none; + box-shadow: 0 0 0 1px var(--border-interactive-focus); + } +} |
