forked from akveo/blur-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(panel): refactor global panel styles
- Loading branch information
Showing
9 changed files
with
90 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/** | ||
* @author v.lugovksy | ||
* created on 16.12.2015 | ||
*/ | ||
(function () { | ||
'use strict'; | ||
|
||
angular.module('BlurAdmin.pages.dashboard') | ||
.service('dashboardCalendar', dashboardCalendar); | ||
|
||
/** @ngInject */ | ||
function dashboardCalendar() { | ||
|
||
} | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/** | ||
* @author v.lugovksy | ||
* created on 16.12.2015 | ||
*/ | ||
(function () { | ||
'use strict'; | ||
|
||
angular.module('BlurAdmin.pages.dashboard') | ||
.service('dashboardPieChart', dashboardPieChart); | ||
|
||
/** @ngInject */ | ||
function dashboardPieChart() { | ||
|
||
} | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/** | ||
* @author v.lugovksy | ||
* created on 16.12.2015 | ||
*/ | ||
(function () { | ||
'use strict'; | ||
|
||
angular.module('BlurAdmin.pages.dashboard') | ||
.service('popularApp1', popularApp1); | ||
|
||
/** @ngInject */ | ||
function popularApp1() { | ||
|
||
} | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/** | ||
* @author v.lugovksy | ||
* created on 16.12.2015 | ||
*/ | ||
(function () { | ||
'use strict'; | ||
|
||
angular.module('BlurAdmin.pages.dashboard') | ||
.service('dashboardTodo', dashboardTodo); | ||
|
||
/** @ngInject */ | ||
function dashboardTodo() { | ||
|
||
} | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.popular-app { | ||
.panel-content { | ||
.panel-body { | ||
padding: 0; | ||
} | ||
|
||
|