This is my codepen http://codepen.io/anon/pen/JGpdvW . And here the code:
<ons-list class="filtri">
<ons-list-item>
<ons-row>
<ons-col width="40px">
<ons-icon icon="fa-volume-down" class="lower"></ons-icon>
</ons-col>
<ons-col class="range-wrapper">
<input type="range" min="0" max="18" value="10" class="range">
</ons-col>
<ons-col width="40px">
<ons-icon icon="fa-volume-up"></ons-icon>
</ons-col>
</ons-row>
</ons-list-item>
<ons-list-item>
<ons-row>
<ons-col width="40px">
<ons-icon icon="fa-umbrella" class="lower"></ons-icon>
</ons-col>
<ons-col class="range-wrapper">
<input type="range" value="30" class="range">
</ons-col>
<ons-col width="40px">
<ons-icon icon="fa-umbrella"></ons-icon>
</ons-col>
</ons-row>
</ons-list-item>
</ons-list>
<ons-tabbar>
<ons-tab page="xxx.html">
<!--<ons-icon icon="ion-chevron-left" size="28px" class="tab-icon"></ons-icon>-->
</ons-tab>
<ons-tab page="xxx.html">
<!--<ons-icon icon="ion-android-call" size="28px" class="tab-icon"></ons-icon>-->
</ons-tab>
<ons-tab page="xxx.html">
<!--<ons-icon icon="ion-location" size="28px" class="tab-icon"></ons-icon>-->
</ons-tab>
<ons-tab page="xxx.html">
<ons-icon icon="ion-compose" size="28px" class="tab-icon"></ons-icon>
</ons-tab>
</ons-tabbar>
The problem is that I cannot move the range. After many many and many test I figure out that, if I delete the tabbar I can do that.
Is this a bug? How I can solve it?
Thanks!