From 1a062a8f4ec235e8236ce91062562aaaa4d516b9 Mon Sep 17 00:00:00 2001 From: alistair3149 Date: Tue, 7 Jan 2025 21:09:41 -0500 Subject: [PATCH] =?UTF-8?q?feat(UploadWizard):=20=E2=9C=A8=20clean=20up=20?= =?UTF-8?q?spacing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../UploadWizard/ext.uploadWizard.less | 30 +++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/skinStyles/extensions/UploadWizard/ext.uploadWizard.less b/skinStyles/extensions/UploadWizard/ext.uploadWizard.less index fa69b1b0..865de7a8 100644 --- a/skinStyles/extensions/UploadWizard/ext.uploadWizard.less +++ b/skinStyles/extensions/UploadWizard/ext.uploadWizard.less @@ -93,8 +93,14 @@ &-deeds { &-thumbnails { - border: 1px solid var( --border-color-subtle ); - border-radius: var( --border-radius-base ); + &:empty { + margin-block: 0; + } + + &:not( :empty ) { + border: 1px solid var( --border-color-subtle ); + border-radius: var( --border-radius-base ); + } } // Style as message box @@ -209,6 +215,7 @@ &-custom-multiple-intro { padding-top: var( --space-xs ); padding-bottom: var( --space-md ); + margin-bottom: var( --space-md ); font-size: var( --font-size-small ); border-bottom-width: 1px; border-bottom-right-radius: var( --border-radius-base ); @@ -217,6 +224,17 @@ } } + &-deeds { + &-individual { + padding-block: var( --space-xl ); + gap: var( --space-lg ); + + .mwe-upwiz-deeds-individual-thumbnail { + margin-right: 0; + } + } + } + &-deed { &-forms { .mwe-upwiz-deed { @@ -242,6 +260,10 @@ } } + &-option-title:first-child { + margin-top: 0; + } + &-subgroup { padding: var( --space-md ); margin-block: var( --space-sm ); @@ -249,4 +271,8 @@ border-radius: var( --border-radius-base ); } } + + &-label-extra { + font-size: var( --font-size-small ); + } }