Commit 20fa07f2 authored by Evren Kutar's avatar Evren Kutar

v0.0.3.1

add footer to sidebar
parent b6a8bbae
...@@ -81,6 +81,7 @@ button.brand-bg:hover { ...@@ -81,6 +81,7 @@ button.brand-bg:hover {
} }
.brand { .brand {
height:98px;
border-bottom:1px solid #ccc; border-bottom:1px solid #ccc;
} }
...@@ -786,6 +787,10 @@ table.dataTable thead .sorting:after { ...@@ -786,6 +787,10 @@ table.dataTable thead .sorting:after {
font-family: 'robotolight'; font-family: 'robotolight';
} }
.dashboard .major-buttons a button:focus {
color:#fff;
}
/* END OF DASHBOARD */ /* END OF DASHBOARD */
...@@ -944,6 +949,28 @@ table.dataTable thead .sorting:after { ...@@ -944,6 +949,28 @@ table.dataTable thead .sorting:after {
.manager-view { .manager-view {
height:100%; height:100%;
} }
.sidebar .sidebar-nav.navbar-collapse {
overflow-x: visible;
overflow-y: scroll;
position: absolute;
width: 100%;
max-height: calc(85% - 139px);
border-bottom: 2px solid #ccc;
}
footer {
position: absolute;
bottom: 35px;
padding: 15px;
width:100%;
text-align:center;
}
footer span {
font-family:'robotobold';
color:#777;
}
} }
@media (max-width: 767px) { @media (max-width: 767px) {
...@@ -1077,13 +1104,6 @@ table.dataTable thead .sorting:after { ...@@ -1077,13 +1104,6 @@ table.dataTable thead .sorting:after {
top:auto; top:auto;
} }
.sidebarscroll{
overflow-x: visible;
overflow-y: scroll;
height: 700px;
}
/* /*
* metismenu - v1.1.3 * metismenu - v1.1.3
* Easy menu jQuery plugin for Twitter Bootstrap 3 * Easy menu jQuery plugin for Twitter Bootstrap 3
......
...@@ -194,7 +194,7 @@ angular.module("components/crud/templates/show.html", []).run(["$templateCache", ...@@ -194,7 +194,7 @@ angular.module("components/crud/templates/show.html", []).run(["$templateCache",
angular.module("components/dashboard/dashboard.html", []).run(["$templateCache", function($templateCache) { angular.module("components/dashboard/dashboard.html", []).run(["$templateCache", function($templateCache) {
$templateCache.put("components/dashboard/dashboard.html", $templateCache.put("components/dashboard/dashboard.html",
"<div ng-app=\"ulakbus.dashboard\">\n" + "<div ng-app=\"ulakbus.dashboard\" class=\"dashboard\">\n" +
" <div class=\"starter-template\">\n" + " <div class=\"starter-template\">\n" +
"\n" + "\n" +
" <div class=\"row\">\n" + " <div class=\"row\">\n" +
...@@ -935,11 +935,11 @@ angular.module("shared/templates/directives/sidebar-search.html", []).run(["$tem ...@@ -935,11 +935,11 @@ angular.module("shared/templates/directives/sidebar-search.html", []).run(["$tem
angular.module("shared/templates/directives/sidebar.html", []).run(["$templateCache", function($templateCache) { angular.module("shared/templates/directives/sidebar.html", []).run(["$templateCache", function($templateCache) {
$templateCache.put("shared/templates/directives/sidebar.html", $templateCache.put("shared/templates/directives/sidebar.html",
"<div class=\"navbar-default sidebar\" role=\"navigation\">\n" + "<div class=\"navbar-default sidebar\" role=\"navigation\">\n" +
" <div class=\"sidebar-nav navbar-collapse\">\n" +
" <div class=\"brand\">\n" + " <div class=\"brand\">\n" +
" <a href=\"\" class=\"logo\"><img src=\"/img/brand-logo.png\" /></a>\n" + " <a href=\"\" class=\"logo\"><img src=\"/img/brand-logo.png\" /></a>\n" +
" </div>\n" + " </div>\n" +
" <ul class=\"nav in sidebarscroll\" id=\"side-menu\" ng-class=\"{hidden: $root.loggedInUser != true}\">\n" + " <div class=\"sidebar-nav navbar-collapse\">\n" +
" <ul class=\"nav in\" id=\"side-menu\" ng-class=\"{hidden: $root.loggedInUser != true}\">\n" +
" <!--<sidebar-search></sidebar-search>-->\n" + " <!--<sidebar-search></sidebar-search>-->\n" +
" <li ui-sref-active=\"active\">\n" + " <li ui-sref-active=\"active\">\n" +
" <a href=\"#/dashboard\" ng-click=\"breadcrumb(['Panel'])\"><i class=\"fa fa-dashboard fa-fw\"></i>\n" + " <a href=\"#/dashboard\" ng-click=\"breadcrumb(['Panel'])\"><i class=\"fa fa-dashboard fa-fw\"></i>\n" +
...@@ -956,6 +956,9 @@ angular.module("shared/templates/directives/sidebar.html", []).run(["$templateCa ...@@ -956,6 +956,9 @@ angular.module("shared/templates/directives/sidebar.html", []).run(["$templateCa
" </ul>\n" + " </ul>\n" +
" </div>\n" + " </div>\n" +
" <!-- /.sidebar-collapse -->\n" + " <!-- /.sidebar-collapse -->\n" +
" <footer>\n" +
" <span>v 0.0.3 ® Lorem Ipsum</span>\n" +
" </footer>\n" +
"</div>\n" + "</div>\n" +
""); "");
}]); }]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment