mirror of
https://github.com/meeb/tubesync.git
synced 2025-06-22 13:06:34 +00:00
Merge pull request #686 from tcely/patch-3
Turn off the `text-transform` with a class
This commit is contained in:
commit
531be5f3ab
@ -46,3 +46,7 @@ select {
|
||||
background-color: $main-button-background-hover-colour !important;
|
||||
}
|
||||
}
|
||||
|
||||
.no-text-transform {
|
||||
text-transform: none;
|
||||
}
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user