|
3 | 3 | <div id="wrapper"> |
4 | 4 | <header> |
5 | 5 | <div class="container"> |
6 | | - <div class="title">{{ selectedEvent||'' }} Issue 小精靈</div> |
7 | | - <p>幫你開 Issue 的小精靈</p> |
| 6 | + <div class="title">{{ selectedEvent||'' }} 開票小工具</div> |
| 7 | + <p>協助批次建立 GitLab 待辦事項的小精靈</p> |
8 | 8 | </div> |
9 | 9 | </header> |
10 | 10 | <main class="container" v-if="selectedEvent"> |
11 | 11 | <div class="box"> |
12 | 12 | <div class="title">小提醒</div> |
13 | | - <p>在 Title 或 Description 輸入 #{group} 會自動帶入組別名稱。</p> |
| 13 | + <p>在標題或內容輸入 <code>#{group}</code> 會自動帶入組別名稱。</p> |
14 | 14 | </div> |
15 | | - <label>Title</label> |
| 15 | + <label>標題</label> |
16 | 16 | <input v-model="title" @input="updateLinks" /> |
17 | | - <label>Description</label> |
| 17 | + <label>內容</label> |
18 | 18 | <v-md-editor |
19 | 19 | left-toolbar="undo redo | h bold italic strikethrough quote | ul ol table hr | name pancake" |
20 | 20 | right-toolbar="preview" |
|
27 | 27 | <div class="options"> |
28 | 28 | <div class="option"> |
29 | 29 | <input type="checkbox" v-model="options.autoAssign" @change="updateLinks" id="autoAssign" /> |
30 | | - <label for="autoAssign">自動 Assign 組長</label> |
| 30 | + <label for="autoAssign">自動指派給組長</label> |
31 | 31 | </div> |
32 | 32 | <div class="option"> |
33 | 33 | <input |
|
49 | 49 | /> |
50 | 50 | </div> |
51 | 51 | <button @click="createIssue" class="magic-button">🪄 來點魔法!</button> |
52 | | - <p class="text-center">若魔法施展失敗,請檢查瀏覽器是否封鎖了快顯視窗,或直接點擊下方連結。</p> |
| 52 | + <p class="text-center">若魔法施展失敗,請檢查瀏覽器是否封鎖了快顯視窗,或直接點選下方連結。</p> |
53 | 53 | <div class="links"> |
54 | 54 | <a |
55 | 55 | v-for="link in links" |
|
75 | 75 | </div> |
76 | 76 | </main> |
77 | 77 | <footer> |
78 | | - Developed by |
79 | | - <a href="https://gnehs.net" target="_blank">勝勝寶寶</a> | Made with |
80 | | - <span @click="randomThemeColor">🥞</span> in Taiwan | |
81 | | - <a href="https://github.com/gnehs/issue-generator" target="_blank">GitHub</a> |
| 78 | + Developed by 勝勝寶寶 | Made with |
| 79 | + <span @click="randomThemeColor">🥞</span> in Taiwan | Forked for g0v on |
| 80 | + <a href="https://github.com/g0v/gitlab-issue-generator" target="_blank">GitHub</a> |
82 | 81 | </footer> |
83 | 82 | </div> |
84 | 83 | </template> |
85 | 84 |
|
86 | 85 | <style lang="sass"> |
87 | 86 | \:root |
88 | | - --theme-color: 244, 169, 64 |
| 87 | + --theme-color: 199, 0, 0 |
89 | 88 | --border-color: #ddd |
90 | 89 | line-height: 1.5 |
91 | 90 | accent-color: rgb(var(--theme-color)) |
92 | | -body,html,.v-md-textarea-editor pre, .v-md-textarea-editor textarea,.vuepress-markdown-body |
93 | | - font-family: 'Ubuntu Mono', 'Noto Sans TC', sans-serif !important |
| 91 | +body,html |
| 92 | + font-family: Onest, Candara, 'Source Han Sans TC', 'Noto Sans TC', sans-serif !important |
| 93 | +.v-md-textarea-editor pre, .v-md-textarea-editor textarea,.vuepress-markdown-body |
| 94 | + font-family: 'Geist Mono', 'Source Han Sans TC', 'Noto Sans TC', monospace !important |
94 | 95 | * |
95 | 96 | box-sizing: border-box |
96 | 97 | transition: all 0.2s ease |
|
0 commit comments