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.

23 lines
768 B

  1. .modal#modal-editor-codeblock
  2. .modal-background
  3. .modal-container
  4. .modal-content.is-expanded
  5. header.is-green
  6. span Insert Code Block
  7. section.is-gapless
  8. .columns.is-stretched
  9. .column.is-one-quarter.modal-sidebar.is-green(style={'max-width':'350px'})
  10. .model-sidebar-header Language
  11. .model-sidebar-content
  12. p.control.is-fullwidth
  13. select(v-model='modeSelected')
  14. option(v-for='mode in modes', v-bind:value='mode.name') {{ mode.caption }}
  15. .column.ace-container
  16. #codeblock-editor
  17. footer
  18. a.button.is-grey.is-outlined(v-on:click='cancel') Discard
  19. a.button.is-green(v-on:click='insertCode') Insert Code Block