Add FA icons to sidebar and for edit connection
This commit is contained in:
989
bindata.go
989
bindata.go
File diff suppressed because it is too large
Load Diff
@@ -173,6 +173,10 @@
|
|||||||
background: #272c30;
|
background: #272c30;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#sidebar ul li i {
|
||||||
|
margin-right: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
#sidebar ul li span {
|
#sidebar ul li span {
|
||||||
padding: 0px 8px 0 12px;
|
padding: 0px 8px 0 12px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
@@ -362,6 +366,10 @@
|
|||||||
top: 10px;
|
top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#edit_connection i {
|
||||||
|
margin-right: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
#close_connection_window {
|
#close_connection_window {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta http-equiv="Content-Language" content="en">
|
<meta http-equiv="Content-Language" content="en">
|
||||||
<link rel="stylesheet" href="/static/css/bootstrap.css"></link>
|
<link rel="stylesheet" href="/static/css/bootstrap.css"></link>
|
||||||
|
<link rel="stylesheet" href="/static/css/font-awesome.css"></link>
|
||||||
<link rel="stylesheet" href="/static/css/app.css"></link>
|
<link rel="stylesheet" href="/static/css/app.css"></link>
|
||||||
<link rel="icon" type="image/x-icon" href="/static/img/icon.ico" />
|
<link rel="icon" type="image/x-icon" href="/static/img/icon.ico" />
|
||||||
<script type="text/javascript" src="/static/js/jquery.js"></script>
|
<script type="text/javascript" src="/static/js/jquery.js"></script>
|
||||||
@@ -25,7 +26,7 @@
|
|||||||
<li id="table_connection">Connection</li>
|
<li id="table_connection">Connection</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<a href="#" id="edit_connection" class="btn btn-primary btn-sm">Edit Connection</a>
|
<a href="#" id="edit_connection" class="btn btn-primary btn-sm"><i class="fa fa-gear"></i> Edit Connection</a>
|
||||||
</div>
|
</div>
|
||||||
<div id="sidebar">
|
<div id="sidebar">
|
||||||
<div class="tables-list">
|
<div class="tables-list">
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ function loadTables() {
|
|||||||
|
|
||||||
getTables(function(data) {
|
getTables(function(data) {
|
||||||
data.forEach(function(item) {
|
data.forEach(function(item) {
|
||||||
$("<li><span>" + item + "</span></li>").appendTo("#tables");
|
$("<li><span><i class='fa fa-table'></i> " + item + "</span></li>").appendTo("#tables");
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user