cleaning up whitespace / unused css style.
Signed-off-by: Ryan Fletcher <ryan.fletcher@codepassion.ca>
This commit is contained in:
@@ -35,10 +35,6 @@ $color-darkgrey: nc-darken($color-main-background, 32%);
|
|||||||
* General styles
|
* General styles
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.center-text {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
button,
|
button,
|
||||||
.button,
|
.button,
|
||||||
.app-deck .icon {
|
.app-deck .icon {
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ var ListController = function ($scope, $location, $filter, BoardService, $elemen
|
|||||||
$scope.boardservice = BoardService;
|
$scope.boardservice = BoardService;
|
||||||
$scope.updatingBoard = null;
|
$scope.updatingBoard = null;
|
||||||
|
|
||||||
var filterData = function () {
|
var filterData = function () {
|
||||||
if($element.attr('id') === 'app-navigation') {
|
if($element.attr('id') === 'app-navigation') {
|
||||||
$scope.boardservice.sidebar = $scope.boardservice.getData();
|
$scope.boardservice.sidebar = $scope.boardservice.getData();
|
||||||
$scope.boardservice.sidebar = $filter('orderBy')($scope.boardservice.sidebar, 'title');
|
$scope.boardservice.sidebar = $filter('orderBy')($scope.boardservice.sidebar, 'title');
|
||||||
|
|||||||
@@ -31,7 +31,7 @@
|
|||||||
<td></td>
|
<td></td>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr data-ng-repeat="b in boardservice.sorted track by b.id" ng-class="{deleted: b.deletedAt > 0}">
|
<tr data-ng-repeat="b in boardservice.sorted track by b.id" ng-class="{deleted: b.deletedAt > 0}">
|
||||||
<td ng-click="gotoBoard(b)">
|
<td ng-click="gotoBoard(b)">
|
||||||
<div class="board-bullet" ng-style="{'background-color':'#'+b.color}"> </div>
|
<div class="board-bullet" ng-style="{'background-color':'#'+b.color}"> </div>
|
||||||
|
|||||||
Reference in New Issue
Block a user