You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
585 B

  1. .modallayer#modal-editor-codeblock
  2. .modallayer-content
  3. .columns
  4. .column
  5. h3 Code Block
  6. .column.is-narrow
  7. p.control
  8. span.select
  9. select(style={width: '300px'}, v-model='modeSelected')
  10. option(v-for="mode in modes" v-bind:value='mode.name') {{ mode.caption }}
  11. .column.is-narrow
  12. .control.is-grouped
  13. p.control
  14. a.button.is-warning.is-outlined(v-on:click="cancel") Cancel
  15. p.control
  16. a.button.is-primary.is-outlined(v-on:click="insertCode") Insert Code Block
  17. .ace-container(style={'border-radius':'5px'})
  18. #codeblock-editor