sencha touch2 の selectfield に色を付けるための特定の CSS はありますか?
現在の私のselectfieldコードは次のとおりです。
{
xtype: 'selectfield',
options: [
{text: 'AI', value: 'first'},
{text: 'AK', value: 'second'},
{text: 'BR', value: 'third'}
]
}
sencha touch2 の selectfield に色を付けるための特定の CSS はありますか?
現在の私のselectfieldコードは次のとおりです。
{
xtype: 'selectfield',
options: [
{text: 'AI', value: 'first'},
{text: 'AK', value: 'second'},
{text: 'BR', value: 'third'}
]
}
選択フィールドに別の css クラスを使用できます。「xtype」値の後に「 css: 'yourclassname' 」を使用し、クラスを次のように定義します。
.yourclassname{ background-color:#000;color:#fff;font:normal 12px Arial;}
だからあなたのコードは
xtype: 'selectfield',
cls: 'yourclassname',
options: [
{text: 'AI', value: 'first'},
{text: 'AK', value: 'second'},
{text: 'BR', value: 'third'}
]
ありがとう
確認してください: http://docs.sencha.com/touch/2-0/#!/guide/theming
Sass & Compass を使用することは、アプリのスタイルを設定するための正しい方法です!