Demonstrates how you can create your own theme of MDL text fields.
The Material Design Lite Ext (MDLEXT) bordered fields component is a method for decorating contained MDL textfields and MDLEXT selectfields without affecting the original MDL design. You can apply the mdlext-bordered-fields
class to any HTML block element and use that as a container for the bordered fields.
1. Code a block element, as the "outer" container, intended to hold all of the bordered fields.
<div> </div>
2. Add the mdlext-bordered-fields
MDLEXT class to the block element using the class
attribute.
<div class="mdlext-bordered-fields"> </div>
3. Add the MDL and MDLEXT fields you want to decorate.
<div class="mdlext-bordered-fields"> <div class="mdl-textfield mdl-js-textfield"> <input class="mdl-textfield__input" type="text" id="sample1"> <label class="mdl-textfield__label" for="sample1">Text ...</label> </div> <div class="mdlext-selectfield mdlext-js-selectfield"> <select class="mdlext-selectfield__select" id="nordic-countries" name="nordic-countries"> <option value=""></option> <option value="option1">Norway</option> <option value="option2">Sweden</option> <option value="option3">Suomi</option> <option value="option4">Denmark</option> <option value="option5">Iceland</option> </select> <label class="mdlext-selectfield__label" for="nordic-countries">Where do you want to go</label> </div> ..... </div>
4. Optionally embed icons and/or buttons into a bordered field by adding the CSS classes mdlext-bordered-fields__icon-left
and mdlext-bordered-fields__icon-right
respectively.
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label mdlext-bordered-fields__icon-left mdlext-bordered-fields__icon-right"> <i class="material-icons">radio</i> <input class="mdl-textfield__input" type="text" id="icon-button1"> <label class="mdl-textfield__label">Text...</label> <label class="mdl-button mdl-js-button mdl-button--icon" for="icon-button1"> <i class="material-icons">settings_voice</i> </label> </div> <div class="mdlext-selectfield mdlext-js-selectfield mdlext-bordered-fields__icon-left"> <i class="material-icons">radio</i> <select class="mdlext-selectfield__select" id="nordic-countries" name="nordic-countries"> <option value=""></option> <option value="option1">Norway</option> <option value="option2">Sweden</option> <option value="option3">Suomi</option> <option value="option4">Denmark</option> <option value="option5">Iceland</option> </select> <label class="mdlext-selectfield__label" for="nordic-countries">Where do you want to go</label> </div>
Note: The
mdlext-selectfield
component can only embed an icon at the left hand side.
See the example code.
The MDLEXT CSS classes apply various predefined visual and behavioral enhancements to text fields and select fields. The table below lists the available classes and their effects.
MDLEXT class | Effect | Remarks |
---|---|---|
mdlext-bordered-fields | Defines container as an MDL bordered fields component | Required on an "outer" block element |
mdlext-bordered-fields__icon-left | Add class on mdl-textfield or mdlext-selectfield container if you want to embedd a left aligned icon or a button into the bordered field | |
mdlext-bordered-fields__icon-right | Add class on mdl-textfield or mdlext-selectfield container if you want to embedd a right aligned icon or a button into the bordered field |
See: variables.scss
See: bordered-fields.scss
The Bordered Fields component is based on this CodePen