Browse Source

Make guideline editable

pull/10/head
Hironsan 6 years ago
parent
commit
cfd7c7707b
3 changed files with 6 additions and 3 deletions
  1. 5
      doccano/app/server/static/forum.css
  2. 2
      doccano/app/server/templates/index.html
  3. 2
      doccano/app/server/templates/main.js

5
doccano/app/server/static/forum.css

@ -62,7 +62,10 @@ article.post:last-child {
background-color: #eee;
color: #666;
}
p {
font-family: "游ゴシック体", YuGothic, "YuGothic M", sans-serif;
}
.box {
border-top-left-radius: 0px;
border-top-right-radius: 0px;
}

2
doccano/app/server/templates/index.html

@ -97,7 +97,7 @@
<div class="media">
<div class="media-content">
<div class="content">
<p>
<p role="textbox" contenteditable="true">
[[ guideline ]]
</p>
</div>

2
doccano/app/server/templates/main.js

@ -67,7 +67,7 @@ Vue.component('tab', {
});
new Vue({
var vm = new Vue({
el: '#root',
delimiters: ['[[', ']]'],
data: {

Loading…
Cancel
Save