|
7 | 7 | <!-- Text size --> |
8 | 8 | <div class="section"> |
9 | 9 | <p class="label">Text size</p> |
10 | | - <img class="adjustButton button" src="images/minus-button.svg" v-on="click: decreaseFontSize"> |
| 10 | + <span class="adjustButtonContainer"> |
| 11 | + <img class="adjustButton button" src="images/minus-button.svg" v-on="click: decreaseFontSize"> |
| 12 | + <label>Decrease</label> |
| 13 | + </span> |
11 | 14 | <input id="textAdjustInput" type="text" v-model="fontSize" size=3> |
12 | | - <img class="adjustButton button" src="images/plus-button.svg" v-on="click: increaseFontSize"> |
| 15 | + <span class="adjustButtonContainer"> |
| 16 | + <img class="adjustButton button" src="images/plus-button.svg" v-on="click: increaseFontSize"> |
| 17 | + <label>Increase</label> |
| 18 | + </span> |
13 | 19 | </div> |
14 | 20 |
|
15 | 21 | <!-- Indentation amount --> |
16 | 22 | <div id="indentation" class="section"> |
17 | 23 | <p class="label">Indentation amount</p> |
18 | | - <div id="indentationAmount"> |
| 24 | + <span class="adjustButtonContainer"> |
19 | 25 | <img class="adjustButton button" src="images/minus-button.svg" v-on="click: decreaseTabSize"> |
20 | | - <input id="tabSize" type="text" v-model="tabSizeDisplay" size=3 v-on="change: updateTabSize"> |
| 26 | + <label>Decrease</label> |
| 27 | + </span> |
| 28 | + <input id="tabSize" type="text" v-model="tabSizeDisplay" size=3 v-on="change: updateTabSize"> |
| 29 | + <span class="adjustButtonContainer"> |
21 | 30 | <img class="adjustButton button" src="images/plus-button.svg" v-on="click: increaseTabSize"> |
22 | | - </div> |
| 31 | + <label>Increase</label> |
| 32 | + </span> |
23 | 33 |
|
24 | 34 | <div id="indentOptions" class="hiddenRadio radioOptions"> |
25 | 35 | <input type="radio" value="spaces" id="tabTypeS" v-model="tabType"> |
26 | | - <label class="radioSelection" for="tabTypeS">spaces</label> |
| 36 | + <label class="radioSelection" for="tabTypeS">Spaces</label> |
27 | 37 | <input type="radio" value="tabs" id="tabTypeT" v-model="tabType"> |
28 | | - <label class="radioSelection" for="tabTypeT">tabs</label> |
| 38 | + <label class="radioSelection" for="tabTypeT">Tabs</label> |
29 | 39 | </div> |
30 | 40 | </div> |
31 | 41 |
|
|
34 | 44 | <p class="label">Word wrap</p> |
35 | 45 | <div id="wwOptions" class="hiddenRadio radioOptions"> |
36 | 46 | <input type="radio" value="true" id="wordWrapOn" v-model="wordWrap"> |
37 | | - <label class="radioSelection" for="wordWrapOn">on</label> |
| 47 | + <label class="radioSelection" for="wordWrapOn">On</label> |
38 | 48 | <input type="radio" value="false" id="wordWrapOff" v-model="wordWrap"> |
39 | | - <label class="radioSelection" for="wordWrapOff">off</label> |
| 49 | + <label class="radioSelection" for="wordWrapOff">Off</label> |
40 | 50 | </div> |
41 | 51 | </div> |
42 | 52 |
|
|
45 | 55 | <p class="label">Run in browser</p> |
46 | 56 | <div id="ribOptions" class="hiddenRadio radioOptions"> |
47 | 57 | <input type="radio" value=true id="runInBrowserOn" v-model="runInBrowser"> |
48 | | - <label class="radioSelection" for="runInBrowserOn">on</label> |
| 58 | + <label class="radioSelection" for="runInBrowserOn">On</label> |
49 | 59 | <input type="radio" value=false id="runInBrowserOff" v-model="runInBrowser"> |
50 | | - <label class="radioSelection" for="runInBrowserOff">off</label> |
| 60 | + <label class="radioSelection" for="runInBrowserOff">Off</label> |
51 | 61 | </div> |
52 | 62 | </div> |
53 | 63 |
|
|
71 | 81 | <p class="label">Show sidebar</p> |
72 | 82 | <div id="ssOptions" class="hiddenRadio radioOptions"> |
73 | 83 | <input type="radio" value="true" id="showSidebarOn" v-model="showSidebar"> |
74 | | - <label class="radioSelection" for="showSidebarOn">on</label> |
| 84 | + <label class="radioSelection" for="showSidebarOn">On</label> |
75 | 85 | <input type="radio" value="false" id="showSidebarOff" v-model="showSidebar"> |
76 | | - <label class="radioSelection" for="showSidebarOff">off</label> |
| 86 | + <label class="radioSelection" for="showSidebarOff">Off</label> |
77 | 87 | </div> |
78 | 88 | </div> |
79 | 89 |
|
|
0 commit comments