Move css around (#7311)

* Move css around

* typings

* Keep it in both
This commit is contained in:
Amir Omidi
2019-09-20 17:21:16 -07:00
committed by GitHub
parent c3bb7a66e0
commit 6f06ab440a
4 changed files with 8 additions and 3 deletions

View File

@@ -178,7 +178,7 @@ export class DashboardGridContainer extends DashboardTab implements OnDestroy {
@ViewChildren(DashboardWidgetWrapper) private _widgets: QueryList<DashboardWidgetWrapper>;
@ViewChildren(WebviewContent) private _webViews: QueryList<WebviewContent>;
@ContentChild(ScrollableDirective) private _scrollable;
@ContentChild(ScrollableDirective) private _scrollable: ScrollableDirective;
constructor(
@Inject(forwardRef(() => CommonServiceInterface)) protected dashboardService: CommonServiceInterface,
@Inject(forwardRef(() => ElementRef)) protected _el: ElementRef,

View File

@@ -22,3 +22,8 @@ dashboard-tab {
vertical-align: top;
padding: 7px;
}
.fullsize {
height: 100%;
width: 100%;
}

View File

@@ -37,7 +37,7 @@ import { ScrollbarVisibility } from 'vs/editor/common/standalone/standaloneEnums
export class DashboardHomeContainer extends DashboardWidgetContainer {
@Input() private properties: WidgetConfig;
@ViewChild('propertiesClass') private _propertiesClass: DashboardWidgetWrapper;
@ContentChild(ScrollableDirective) private _scrollable;
@ContentChild(ScrollableDirective) private _scrollable: ScrollableDirective;
private ScrollbarVisibility = ScrollbarVisibility;

View File

@@ -73,4 +73,4 @@
.horzBox {
border: 1px solid red;
}
*/
*/