From 6c9d305c67a6af2d1ce94083e25af38ca9db3f08 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Thu, 2 Apr 2026 23:25:57 +0200 Subject: [PATCH] Add styles for asset item actions and content --- src/app/app.css | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/app/app.css b/src/app/app.css index 6d7c8b7e..ccebc7ae 100644 --- a/src/app/app.css +++ b/src/app/app.css @@ -431,6 +431,36 @@ button:disabled { gap: 6px; } +.asset-item--action { + display: flex; + flex-direction: row; + align-items: center; + justify-content: space-between; +} + +.asset-item__content { + display: flex; + align-items: baseline; + gap: 8px; + min-width: 0; + flex: 1 1 auto; +} + +.asset-item--action .outliner-item__title { + min-width: 0; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.asset-item__plus { + flex: 0 0 auto; + color: var(--color-accent-strong); + font-size: 1.1rem; + font-weight: 800; + line-height: 1; +} + .material-browser { display: flex; flex-direction: column;