Page 2 of 2

Re: Label aligning/positioning

Posted: Sat Aug 02, 2025 1:39 pm
by Uzlander
and yeah, it just fits into ContentBox as expected ))

Re: Label aligning/positioning

Posted: Mon Aug 04, 2025 10:14 am
by kev1n
Uzlander wrote: Sat Aug 02, 2025 1:38 pm Here's some dummy workaround i'm going to use in some cases. Maybe someone else benefits from too :)

Code: Select all


Could you describe in which cases you use the "dummy workaround"? 
I also noticed another issue: the asterisks (*) indicating required fields are no longer aligned with the labels.

[attachment=0]Screenshot 2025-08-04 100136.png[/attachment]

Re: Label aligning/positioning

Posted: Wed Aug 06, 2025 7:35 am
by Uzlander
You're right, i stumpled upon it in a while. So let it be a workaround x 2 then, some css in the form:

Re: Label aligning/positioning

Posted: Wed Aug 06, 2025 7:40 am
by Uzlander

Code: Select all

label.nuBlank::after, label.nuDuplicateOrBlank::after { content: none; } 

label.nuBlank::before, label.nuDuplicateOrBlank::before { 
    content: "*";
    color: #e53600;
    margin-right: 6px;
}

label:not(.nuDuplicateOrBlank, .nuBlank)::before {
    content: " ";
    margin-right: 10px;
}


//

Re: Label aligning/positioning

Posted: Wed Aug 06, 2025 7:43 am
by Uzlander
screenshot