Merge pull request #3226 from crazyserver/MOBILE-3833

Mobile 3833
main
Alfonso Salces 2022-04-04 11:19:35 +02:00 committed by GitHub
commit cfde1d8586
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<ion-button size="small" *ngIf="action == 'more'" fill="clear" (click)="viewEntry()" [attr.aria-label]="'addon.mod_data.more' | translate"> <ion-button size="small" *ngIf="action == 'more'" fill="clear" (click)="viewEntry()" [attr.aria-label]="'addon.mod_data.more' | translate">
<ion-icon name="fas-search" slot="icon-only" aria-hidden="true"></ion-icon> <ion-icon name="fas-search-plus" slot="icon-only" aria-hidden="true"></ion-icon>
</ion-button> </ion-button>
<ion-button size="small" *ngIf="action == 'edit'" fill="clear" (click)="editEntry()" [attr.aria-label]="'core.edit' | translate"> <ion-button size="small" *ngIf="action == 'edit'" fill="clear" (click)="editEntry()" [attr.aria-label]="'core.edit' | translate">

View File

@ -57,14 +57,17 @@ $grid-column-paddings: (
// Do not let block elements to define widths or heights. // Do not let block elements to define widths or heights.
address, article, aside, blockquote, canvas, dd, div, dl, dt, fieldset, figcaption, figure, footer, form, address, article, aside, blockquote, canvas, dd, div, dl, dt, fieldset, figcaption, figure, footer, form,
h1, h2, h3, h4, h5, h6, h1, h2, h3, h4, h5, h6,
header, hr, li, main, nav, noscript, ol, p, pre, section, table, tfoot, ul, video { header, li, main, nav, noscript, ol, p, pre, section, table, tfoot, ul, video {
width: auto !important; width: auto !important;
height: auto !important; height: auto !important;
min-width: auto !important; min-width: auto !important;
min-height: auto !important; min-height: auto !important;
// Avoid having one entry over another. // Avoid having one entry over another.
max-height: none !important; max-height: none !important;
}
hr {
border-top: 1px solid var(--stroke);
} }
} }
} }

View File

@ -218,6 +218,10 @@ core-rich-text-editor .core-rte-editor {
margin-block-start: 0; margin-block-start: 0;
} }
hr {
border-top: 1px solid var(--stroke);
}
.no-overflow { .no-overflow {
overflow: auto; overflow: auto;
} }