Merge pull request #686 from tcely/patch-3

Turn off the `text-transform` with a class
This commit is contained in:
meeb 2025-02-05 14:10:33 +11:00 committed by GitHub
commit 531be5f3ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 3 deletions

View File

@ -46,3 +46,7 @@ select {
background-color: $main-button-background-hover-colour !important;
}
}
.no-text-transform {
text-transform: none;
}

View File

@ -1,7 +1,7 @@
<!--<input type="{{ option.type }}" name="{{ option.name }}" value="{{ option.value }}" id="{{ option.value }}"><BR>
<label for="{{ option.value }}">{{option.label}}</label>-->
<div>
<label>
<input type="{{ option.type }}" name="{{ option.name }}" value="{{ option.value }}" id="{{ option.value }}" {% if option.selected %}checked{% endif %}>
<span>{{option.label}}</span>
</div>
<span class="no-text-transform">{{option.label}}</span>
</label>