images, html
After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 5.0 KiB |
|
@ -3,7 +3,8 @@
|
|||
<nav class="navbar">
|
||||
<div class="primary">
|
||||
<div class="navlogo">
|
||||
<a class="logo" href="#"><img class="arangodbLogo" src="img/DEVLOGO.png"/></a>
|
||||
<a class="logo big" href="#"><img class="arangodbLogo" src="img/arangodb_logo_big.png"/></a>
|
||||
<a class="logo small" href="#"><img class="arangodbLogo" src="img/arangodb_logo_small.png"/></a>
|
||||
</div>
|
||||
<!-- <div id="progressPlaceholderIcon"></div> -->
|
||||
<div class="statmenu" id="statisticBar">
|
||||
|
|
Before Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
|
@ -1,6 +1,7 @@
|
|||
<script id="collectionsItemView.ejs" type="text/template">
|
||||
<div class="paddingBox">
|
||||
<div class="borderBox"></div>
|
||||
<!--
|
||||
<div class="iconSet">
|
||||
<span id="editCollection_<%=model.get('name')%>" class="icon_arangodb_settings2" alt="Edit collection properties" title="Edit collection properties"></span>
|
||||
<% if(model.get('status') === "loaded") { %>
|
||||
|
@ -9,7 +10,7 @@
|
|||
<span class="icon_arangodb_info disabled" alt="disabled"></span>
|
||||
<%}%>
|
||||
</div>
|
||||
|
||||
-->
|
||||
<i class="collection-type-icon fa <%= model.get('picture') %>"></i>
|
||||
<!--<img src="<%= model.get('picture') %>" height="50" width="50" alt="" class="icon">-->
|
||||
<div class="tileBadge">
|
||||
|
|
|
@ -27,7 +27,8 @@
|
|||
var callback = function(error, lockedCollections) {
|
||||
var self = this;
|
||||
if (error) {
|
||||
arangoHelper.arangoError("Collections", "Could not check locked collections");
|
||||
//arangoHelper.arangoError("Collections", "Could not check locked collections");
|
||||
console.log("Could not check locked collections");
|
||||
}
|
||||
else {
|
||||
this.collection.each(function(model) {
|
||||
|
|
|
@ -91,6 +91,10 @@ $navbar-size: 150px;
|
|||
@extend %pull-left;
|
||||
height: 60px;
|
||||
width: 100%;
|
||||
|
||||
.small {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.navmenu {
|
||||
|
|
|
@ -29,6 +29,19 @@
|
|||
}
|
||||
|
||||
// NAVIGATION LEFT
|
||||
|
||||
.navlogo {
|
||||
.big {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.small {
|
||||
display: block;
|
||||
height: auto;
|
||||
width: 28px;
|
||||
}
|
||||
}
|
||||
|
||||
.navbar,
|
||||
.navmenu,
|
||||
.primary,
|
||||
|
|