RSS Git Download  Clone
Raw Blame History 1kB 35 lines
HTML rendered
<div class="p3xr-content-border">

<p3xr-database-header></p3xr-database-header>

<div id="p3xr-database-content" class="p3xr-database-content-area"
     style="background-color: var(--p3xr-content-bg); color: var(--mat-app-text-color, inherit);">

    <div *ngIf="hasConnection" class="p3xr-database-has-connection">

        <!-- Desktop layout -->
        <div *ngIf="!isXs">
            <p3xr-database-treecontrol-controls id="p3xr-database-treecontrol-controls-container"></p3xr-database-treecontrol-controls>
            <p3xr-database-tree id="p3xr-database-treecontrol-container"></p3xr-database-tree>
            <div id="p3xr-database-content-sizer" role="separator" aria-orientation="vertical" aria-label="Resize panels"
                 [class.p3xr-resizer-active]="resizeClicked"></div>
            <div id="p3xr-database-content-container">
                <router-outlet></router-outlet>
            </div>
        </div>

        <!-- Mobile layout -->
        <div *ngIf="isXs" style="display: flex; flex-direction: column;">
            <p3xr-database-treecontrol-controls style="flex: 1;"></p3xr-database-treecontrol-controls>
            <p3xr-database-tree style="flex: 1;" id="p3xr-database-treecontrol-container-directive-small"></p3xr-database-tree>
            <div style="flex: 1;">
                <router-outlet></router-outlet>
            </div>
        </div>

    </div>

</div>

</div>