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 ); + } }