From fc20f60b1bf8b0c9051208c6642750520ddda395 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 18 May 2026 16:13:07 +0200 Subject: [PATCH] Add styling for map components, dense select inputs, and material items --- src/app/app.css | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/src/app/app.css b/src/app/app.css index 93f40fbf..eb03bdcc 100644 --- a/src/app/app.css +++ b/src/app/app.css @@ -382,6 +382,11 @@ button:disabled { border-radius: 12px; } +.select-input--dense { + padding: 0.65rem 0.75rem; + border-radius: 10px; +} + .color-input { width: 100%; min-height: 46px; @@ -460,6 +465,10 @@ button:disabled { grid-template-columns: repeat(2, minmax(0, 1fr)); } +.vector-inputs--three { + grid-template-columns: repeat(3, minmax(0, 1fr)); +} + .placeholder-list { display: flex; flex-direction: column; @@ -844,6 +853,11 @@ button:disabled { border: 1px solid rgba(255, 255, 255, 0.14); } +.material-item__preview--default { + background: + linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(230, 235, 239, 0.98)); +} + .material-item__text { display: flex; flex-direction: column; @@ -861,6 +875,36 @@ button:disabled { font-size: 0.76rem; } +.material-map-list { + display: flex; + flex-direction: column; + gap: 10px; +} + +.material-map-row { + display: flex; + flex-direction: column; + gap: 8px; + padding: 10px; + background: rgba(255, 255, 255, 0.03); + border: 1px solid rgba(255, 255, 255, 0.08); + border-radius: 12px; +} + +.material-map-row__header { + display: flex; + align-items: center; + justify-content: space-between; + gap: 10px; +} + +.toolbar__button--file { + display: inline-flex; + align-items: center; + justify-content: center; + cursor: pointer; +} + .face-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));