Skip to content
This repository has been archived by the owner on May 7, 2021. It is now read-only.

Commit

Permalink
fix(styles): Work item children flex display modified
Browse files Browse the repository at this point in the history
  • Loading branch information
dgutride authored and joshuawilson committed Mar 1, 2017
1 parent c71ae93 commit 097f335
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 11 deletions.
21 changes: 19 additions & 2 deletions src/app/work-item/work-item.component.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
@import '../../assets/stylesheets/base';

.fill-container
{
position:absolute;
top:0;
bottom:0;
left:0;
right:0;
padding:0;
margin:0;
border-width:0;
}

.work-item-page {
display: flex;
flex: 1;
Expand Down Expand Up @@ -102,8 +115,10 @@
background-color: $color-pf-black-200;
border-right: 1px solid $color-pf-black-300;
position: relative;
align-items: stretch;
.contents {
@include fill-container;
//@extend .fill-container;
flex: 1;
display: flex;
overflow: auto;
align-items: stretch;
Expand All @@ -115,8 +130,10 @@
flex-direction: column;
border: solid 0px red;
position: relative;
align-items: stretch;
.contents {
@include fill-container;
//@extend .fill-container;
flex: 1;
display: flex;
overflow: auto;
align-items: stretch;
Expand Down
10 changes: 1 addition & 9 deletions src/app/work-item/work-item.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,7 @@ import {
TreeListModule,
WidgetsModule
} from 'ngx-widgets';
import {
ProcessTemplate,
Space,
SpaceAttributes,
SpaceService,
Team,
WIT_API_URL
} from 'ngx-fabric8-wit';

import { UserService } from 'ngx-login-client';

import { AlmFilterBoardList } from '../pipes/alm-board-filter.pipe';
Expand Down Expand Up @@ -72,7 +65,6 @@ import { WorkItemService } from './work-item.service';
IterationsResolve,
UserService,
UsersResolve,
SpaceService,
MockDataService,
GlobalSettings,
WorkItemService
Expand Down

0 comments on commit 097f335

Please sign in to comment.