mirror of
https://github.com/meeb/tubesync.git
synced 2025-06-22 21:16:38 +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;
|
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>
|
<!--<input type="{{ option.type }}" name="{{ option.name }}" value="{{ option.value }}" id="{{ option.value }}"><BR>
|
||||||
<label for="{{ option.value }}">{{option.label}}</label>-->
|
<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 %}>
|
<input type="{{ option.type }}" name="{{ option.name }}" value="{{ option.value }}" id="{{ option.value }}" {% if option.selected %}checked{% endif %}>
|
||||||
<span>{{option.label}}</span>
|
<span class="no-text-transform">{{option.label}}</span>
|
||||||
</div>
|
</label>
|
||||||
|
Loading…
Reference in New Issue
Block a user