Merge pull request from crazyserver/MOBILE-3833

Mobile 3833
This commit is contained in:
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
src
addons/mod/data
theme/components

@ -1,5 +1,5 @@
<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 size="small" *ngIf="action == 'edit'" fill="clear" (click)="editEntry()" [attr.aria-label]="'core.edit' | translate">

@ -57,14 +57,17 @@ $grid-column-paddings: (
// Do not let block elements to define widths or heights.
address, article, aside, blockquote, canvas, dd, div, dl, dt, fieldset, figcaption, figure, footer, form,
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;
height: auto !important;
min-width: auto !important;
min-height: auto !important;
// Avoid having one entry over another.
max-height: none !important;
}
hr {
border-top: 1px solid var(--stroke);
}
}
}

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