Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions client/cat3/src/partials/global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ $imagePath : "../../../../../../cat3/images";
#section-name {
font-size: 14px;
font-weight: bold;
padding: 10px 0;
padding: 0;

.menu-icon {
float: left;
Expand All @@ -115,7 +115,6 @@ $imagePath : "../../../../../../cat3/images";
#breadcrumb-nav {
ul {
margin: 0px;
padding: 10px 0;
li {
list-style: none;
display: inline;
Expand Down Expand Up @@ -649,7 +648,7 @@ option.script {
background: #fcfcfc;
border-bottom-width: 1px;
@include theme-border-color;
min-height: 40px !important;
height: 40px;
padding: 5px 15px;
position:relative;
z-index:3;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@
}])
.controller('designCtrl',['$scope','$rootScope','$state','genericServices', function ($scope,$rootScope,$state,genericServices) {
var design= this;
$scope.isTreeOpen = false;
$rootScope.state = $state;
design.providersList= function () {
var params = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
<div id='navigPage-inner'>
<div id="treeParent">
<ul class="tree-ul">
<li ng-repeat="provider in desCtrl.providersMenu">
<li ng-repeat="provider in desCtrl.providersMenu">
<div class="liContents">
<i class="icon fa fa-building label-spacing"></i>
<span>{{provider.name}}</span>
<div data-ng-hide="node.collapsed" data-tree-id="relevancelab" data-analytics-tree-model="node.nodes" data-node-id="rowid" data-node-label="text" data-node-children="nodes">
<span class="cursor" ng-click="isTreeOpen = !isTreeOpen">{{provider.name}}</span>
<div ng-class="{'show-providers':isTreeOpen === true}" data-ng-hide="node.collapsed" data-tree-id="relevancelab" data-analytics-tree-model="node.nodes" data-node-id="rowid" data-node-label="text" data-node-children="nodes">
<ul class="tree-ul">
<li ng-repeat='tempType in desCtrl.templateTypes | inArray:provider.filterArray:"templatetype"' ui-sref="dashboard.design.list({providerName:provider.name,templateObj:tempType,view:'list'})" class="pointer-cursor" >
<div class="liContents">
Expand Down Expand Up @@ -81,4 +81,4 @@
<div ui-view></div>
</div>
</div>
</div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -418,4 +418,7 @@ ul.simple-list > li::after {
padding-left: 0px;
text-overflow: ellipsis;
white-space: nowrap;
}
.show-providers {
display: none;
}