mirror of https://gitee.com/bigwinds/arangodb
added tooltip help for importing documents
This commit is contained in:
parent
15dafec073
commit
8f62bd4e24
|
@ -70,6 +70,7 @@
|
|||
<button id="confirmDocImport" class="button-success btn-old-padding" style="float:right">
|
||||
<img id="uploadIndicator" class="upload-indicator" src="img/ajax-loader.gif"/>Import JSON
|
||||
</button>
|
||||
<div title='Example input data:</br></br> I. Line-wise: </br> { "_key": "key1", ... } { "_key": "key2", ... } or </br></br> II. JSON documents embedded into a list: </br> [ </br> { "_key": "key1", ... }, </br> { "_key": "key2", ... }, </br> ... </br> ]' class="upload-info" style="float:left; margin-top:7px; margin-right: 10px;"><i style="font-size: 13pt;" class="fa fa-info-circle"></i></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -942,6 +942,7 @@
|
|||
this.uploadSetup();
|
||||
|
||||
$("[data-toggle=tooltip]").tooltip();
|
||||
$('.upload-info').tooltip();
|
||||
|
||||
arangoHelper.fixTooltips(".icon_arangodb, .arangoicon", "top");
|
||||
this.drawTable();
|
||||
|
|
|
@ -122,6 +122,12 @@
|
|||
width: 115px;
|
||||
}
|
||||
|
||||
.queryline {
|
||||
.fa-info-circle:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
.ace_error {
|
||||
background: none !important;
|
||||
}
|
||||
|
|
|
@ -6131,6 +6131,9 @@ table .sorting {
|
|||
margin-top: -58px;
|
||||
width: 115px; }
|
||||
|
||||
.queryline .fa-info-circle:hover {
|
||||
cursor: pointer; }
|
||||
|
||||
.ace_error {
|
||||
background: none !important; }
|
||||
|
||||
|
|
Loading…
Reference in New Issue