round-switch.tpl.html
Home
/
ui /
src /
app /
widget /
lib /
rpc /
round-switch.tpl.html
<div class="tb-round-switch" layout="column" ng-style="{'pointerEvents': vm.ctx.isEdit ? 'none' : 'all'}">
<div flex="20" class="title-container" layout="row" layout-align="center center" ng-show="vm.showTitle">
<span class="switch-title">{{vm.title}}</span>
</div>
<div flex="{{vm.showTitle ? 80 : 100}}" ng-style="{paddingTop: vm.showTitle ? '5px': '10px'}" id="switch-container" layout="column" layout-align="center center">
<div class="switch">
<input type="checkbox" id="{{vm.checkboxId}}" name="onoff" />
<div class="back">
<label class="but" for="{{vm.checkboxId}}">
<span class="on">I</span>
<span class="off">0</span>
</label>
</div>
</div>
</div>
<div class="error-container" ng-style="{'background': vm.error.length ? 'rgba(255,255,255,0.25)' : 'none'}"
layout="row" layout-align="center center">
<span class="switch-error">{{ vm.error }}</span>
</div>
<div id="text-measure"></div>
</div>