text-columns.html 1.2 KB

12345678910111213141516171819202122232425
  1. <h4 class="dialog-title">Columns</h4>
  2. <div id="type-columns" class="relative">
  3. <div class="dialog-section no-p">
  4. <div class="form-group no-m">
  5. <!-- <label class="label label-sm">Columns</label> -->
  6. <input class="input no-b no-p text-center text-large" spellcheck="false" type="text" pattern="[0-9]" maxlength="10" v-model="active_style.columns">
  7. <button class="btn-more btn btn-icon btn-transparent" v-on="click:increase_columns()"> </button>
  8. <button class="btn-less btn btn-icon btn-transparent" v-on="click:decrease_columns()"> </button>
  9. </div>
  10. </div>
  11. <div class="dialog-section no-p-b no-p-h">
  12. <div class="form-group no-m">
  13. <label class="label label-sm text-center">Gutter</label>
  14. <input class="input no-b no-p text-center" spellcheck="false" type="text" pattern="[0-9\.]" maxlength="3" v-model="active_style.gutter">
  15. <button tabindex="-1" class="input-drag btn btn-transparent btn-icon" style="cursor: ns-resize;" v-sd-fader="true" sd-fader-var-y="active_style.gutter" sd-fader-min-y="0" sd-fader-max-y="200" sd-fader-step="1">
  16. <span class="icon icon-triangles-vertical"></span>
  17. </button>
  18. <span class="input-unit">px</span>
  19. </div>
  20. </div>
  21. </div>