1
0
Fork 0

added shortcuts for docs editor, added scss shortcut class

This commit is contained in:
Heiko Kernbach 2014-03-11 17:29:43 +01:00
parent d76c0dd6d3
commit 4b3829e3a8
4 changed files with 35 additions and 0 deletions

View File

@ -7,6 +7,9 @@
<div id="tableDiv">
<div id="documentEditor"></div>
<button id="saveDocumentButton" class="button-success pull-right">Save</button>
<div class="pull-left shortcuts">
<b>Insert:</b> Ctrl + Ins<b>Append:</b> Ctrl + Shift + Ins<b>Duplicate:</b> Ctrl + D<b>Remove:</b> Ctrl + Del
</div>
<div id="showSaveState">Saved...</div>
</div>

View File

@ -0,0 +1,16 @@
.shortcuts {
font-size: 11px;
font-weight: 200;
}
.shortcuts b {
border-left: 1px solid rgba(0, 0, 0, 0.34);
padding-left: 5px;
margin-left: 5px;
}
.shortcuts b:first-child {
border-left: 0;
padding-left: 0;
margin-left: 0;
}

View File

@ -1155,3 +1155,17 @@ div img.searchSubmitIcon {
.searchField {
margin-left: 15px; }
.shortcuts {
font-size: 11px;
font-weight: 200; }
.shortcuts b {
border-left: 1px solid rgba(0, 0, 0, 0.34);
padding-left: 5px;
margin-left: 5px; }
.shortcuts b:first-child {
border-left: 0;
padding-left: 0;
margin-left: 0; }

View File

@ -25,3 +25,5 @@
@import 'modals';
// dbSelection
@import 'searchBar';
// shortcuts info boxes
@import 'shortcuts';