html - Selection bar implementation in xtype-selectfield same as datepickerfield -


in sencha touch version 2.3.0 have xtype:'datepickerfield' have default bar indicates selected date.

blue line indicates selected date

this selection blue bar can modified using following css property.

.x-picker-bar {   background: rgba(247, 109, 48, 0.6); } 

datepickerfield changed css

now have component xtype:'selectfield'. want implement bar component well. how can implemented? suggestions?

enter image description here

below css serve purpose pushkar:

.x-picker-slot .x-dataview-item.x-item-selected {     background: rgba(247, 109, 48, 0.6) !important; } 

let me know helps or not.


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -