mirror of https://gitee.com/bigwinds/arangodb
Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel
This commit is contained in:
commit
6b6731e619
|
@ -6,9 +6,6 @@
|
|||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.add {
|
||||
font-size: 16px !important;
|
||||
}
|
||||
|
||||
.thumbnail, .navbar-inner, .btn, .btn-primary {
|
||||
border-radius:0;
|
||||
|
|
|
@ -26,10 +26,9 @@
|
|||
cursor: pointer;
|
||||
}
|
||||
|
||||
#deleteRow {
|
||||
#deleteRow, #addRow {
|
||||
border: medium none;
|
||||
margin-top: -4px;
|
||||
padding-left: 10px;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
|
@ -77,9 +76,9 @@
|
|||
border:1px solid #c1bdba;
|
||||
}
|
||||
|
||||
#documentTableID.dataTable td {
|
||||
/*#documentTableID.dataTable td {
|
||||
padding: 13px 10px;
|
||||
}
|
||||
}*/
|
||||
#documentTableID .odd,
|
||||
#documentTableID .even {
|
||||
-webkit-box-shadow: none;
|
||||
|
|
|
@ -96,12 +96,12 @@ var documentView = Backbone.View.extend({
|
|||
drawTable: function () {
|
||||
var self = this;
|
||||
$(self.table).dataTable().fnAddData([
|
||||
'<div class="notwriteable"></div>',
|
||||
'<div class="notwriteable"></div>',
|
||||
'<a class="add" class="notwriteable" id="addDocumentLine"> Add data</a>',
|
||||
'<div class="notwriteable"></div>',
|
||||
'<div class="notwriteable"></div>',
|
||||
'<div class="notwriteable"></div>',
|
||||
'<div class="notwriteable"></div>',
|
||||
'<img id="addDocumentLine" class="plusIcon" src="/_admin/html/img/plus_icon.png">'
|
||||
'<button class="enabled" id="addRow"><img id="addDocumentLine" class="plusIcon" src="/_admin/html/img/plus_icon.png"></button>'
|
||||
]);
|
||||
$.each(window.arangoDocumentStore.models[0].attributes, function(key, value) {
|
||||
if (arangoHelper.isSystemAttribute(key)) {
|
||||
|
|
Loading…
Reference in New Issue