app

Local-first trade for farms and co-ops
git clone https://radroots.dev/git/app.git
Log | Files | Refs | README | LICENSE

commit 3261291817a8464193f07ee5e40724ec13e2eec8
parent d55ae6e81909a72769b6da6a283f22c6b589692f
Author: triesap <triesap@radroots.dev>
Date:   Thu, 22 Jan 2026 22:52:22 +0000

app: restore legacy utility parity

- reintroduce legacy el-input utility wrapper
- restore legacy el-textarea utility layering
- revert apps-base root background to legacy value
- keep downstream utility class ordering intact

Diffstat:
Mapp/stylesheets/apps-base.css | 2+-
Mapp/stylesheets/apps-ui.css | 10+++++++++-
2 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/app/stylesheets/apps-base.css b/app/stylesheets/apps-base.css @@ -1,5 +1,5 @@ :root { - background-color: var(--bg-app); + background-color: #000000; } html { diff --git a/app/stylesheets/apps-ui.css b/app/stylesheets/apps-ui.css @@ -44,6 +44,10 @@ @apply flex flex-row w-full px-2 items-center; } +@utility el-textarea { + @apply w-full p-0 pl-2 py-3 rounded-touch; +} + .el-textarea-ly1:focus { border-color: hsl(var(--ly1-focus)); } @@ -60,6 +64,10 @@ } @utility el-input { + @apply input w-full p-0; +} + +@utility el-input { @apply flex flex-row w-full p-0 justify-center items-center border-0 focus:border-0 outline-0 focus:outline-0 bg-transparent disabled:bg-transparent font-sans font-[400] placeholder:font-[400] text-form_base; } @@ -68,7 +76,7 @@ } @utility el-textarea { - @apply flex flex-row w-full p-0 pl-2 py-3 justify-center items-center border-0 focus:border-0 outline-0 focus:outline-0 bg-transparent disabled:bg-transparent font-sans font-[400] placeholder:font-[400] text-form_base rounded-touch; + @apply flex flex-row w-full p-0 justify-center items-center border-0 focus:border-0 outline-0 focus:outline-0 bg-transparent disabled:bg-transparent font-sans font-[400] placeholder:font-[400] text-form_base; } @utility el-select-centered {