mirror of https://gitee.com/bigwinds/arangodb
added shortcuts for docs editor, added scss shortcut class
This commit is contained in:
parent
d76c0dd6d3
commit
4b3829e3a8
|
@ -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>
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
|
@ -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; }
|
||||
|
|
|
@ -25,3 +25,5 @@
|
|||
@import 'modals';
|
||||
// dbSelection
|
||||
@import 'searchBar';
|
||||
// shortcuts info boxes
|
||||
@import 'shortcuts';
|
||||
|
|
Loading…
Reference in New Issue