display shortcuts in the menu

This commit is contained in:
Alex Adam 2018-01-20 15:29:53 +02:00
parent 1db3b504ec
commit 062f95f7c9
2 changed files with 42 additions and 9 deletions

View file

@ -30,7 +30,7 @@
font-family: sans-serif;
font-size: 14px;
width: 100%;
padding: 8px 0;
padding: 4px 0;
padding-left: 8px;
border: none;
background-color: white;
@ -119,6 +119,10 @@
#includeStyleCheck {
outline: none;
}
.shortcut {
font-size: 10px;
color: gray;
}
</style>
</head>
@ -138,11 +142,23 @@
</div>
</div>
<hr/>
<button id="savePage" type="button" name="button"></button>
<button id="saveSelection" type="button" name="button"></button>
<button id="savePage" type="button" name="button">
<div id="savePageLabel"></div>
<div id="savePageShortcut" class="shortcut"></div>
</button>
<button id="saveSelection" type="button" name="button">
<div id="saveSelectionLabel"></div>
<div id="saveSelectionShortcut" class="shortcut"></div>
</button>
<hr/>
<button id="pageChapter" type="button" name="button"></button>
<button id="selectionChapter" type="button" name="button"></button>
<button id="pageChapter" type="button" name="button">
<div id="pageChapterLabel"></div>
<div id="pageChapterShortcut" class="shortcut"></div>
</button>
<button id="selectionChapter" type="button" name="button">
<div id="selectionChapterLabel"></div>
<div id="selectionChapterShortcut" class="shortcut"></div>
</button>
<hr/>
<button id="editChapters" type="button" name="button"></button>
</div>