mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-20 09:35:38 -05:00
* 3240: Empty cells show thick border * 3240: Refactoring code and markdown css selection +output UI improvement
13 lines
751 B
HTML
13 lines
751 B
HTML
<!--
|
|
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
-->
|
|
<div style="overflow: hidden; width: 100%; height: 100%; display: flex; flex-flow: column">
|
|
<div class="notebook-text" style="flex: 0 0 auto;">
|
|
<code-component *ngIf="isEditMode" [cellModel]="cellModel" (onContentChanged)="handleContentChanged()" [activeCellId]="activeCellId"></code-component>
|
|
</div>
|
|
<div #preview style="flex: 0 0 auto;" (dblclick)="toggleEditMode()">
|
|
</div>
|
|
</div> |