Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
=<plex-layout main="8">
<plex-layout main="8">
<plex-layout-main>
<plex-title size="lg" titulo="Bienvenido a Plex">
<plex-help type="help" titulo="Ayuda de este panel" size="sm" title="este es un atributo [title]"
Expand Down
4 changes: 2 additions & 2 deletions src/lib/css/plex-box.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ plex-box > DIV {

& > .plex-box-content {
clear: both;
overflow-y: auto;
overflow-y: overlay;
overflow-x: hidden; // expandir a todo el alto del contenedor
flex: 1;
padding-right: 10px; // Distancia desde el scrollback
padding-right: 15px; // Distancia desde el scrollback
height: 0;
// Fix momentaneo
.plex-box-content {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/wrapper/wrapper.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Plex } from '../core/service';
template: `
<section class="hidden" [class.desplegado]="desplegado" responsive>
<plex-button class="btn-toogle" type="info" size="sm" *ngIf="hasCollapse"
[icon]="!desplegado ? 'chevron-down' : 'chevron-up'" (click)="toogle()">
[icon]="!desplegado ? 'chevron-down' : 'chevron-up'" (click)="toogle()">
</plex-button>
<ng-content></ng-content>
<ng-content select="[collapse]"></ng-content>
Expand Down