Ember.TextField
, and the helper {{input type="text" ..}}
Handlebars uses the HTML class ember-text-field
. There are situations when it is permissible to change all instances of Ember.TextField
with one consistent style, for example, when your Ember application has only one Ember text field. Then you can change the layout associated with ember-text-field
via CSS, for example, as follows:
.ember-text-field { font-family: Amaranth, georgia, cursive; font-size: 1.2em !important; height: 1.2em !important; width: 70%; margin-left: 5%; margin-right: 5%; margin-top: 0.5em; margin-bottom: 0.5em; }
source share