MOBILE-3320 rte: Minor RTE style fixes
parent
b335b5123a
commit
b6e0bc2340
|
@ -53,7 +53,7 @@
|
||||||
</ion-item>
|
</ion-item>
|
||||||
</ion-card>
|
</ion-card>
|
||||||
|
|
||||||
<core-empty-box *ngIf="!filteredEvents || !filteredEvents.length" icon="fas-calendar"
|
<core-empty-box *ngIf="!filteredEvents || !filteredEvents.length" icon="fas-calendar" inline="true"
|
||||||
[message]="'addon.calendar.noevents' | translate">
|
[message]="'addon.calendar.noevents' | translate">
|
||||||
</core-empty-box>
|
</core-empty-box>
|
||||||
|
|
||||||
|
|
|
@ -47,10 +47,6 @@
|
||||||
@include margin(10px, 0, 0, 0);
|
@include margin(10px, 0, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
.core-loading-content {
|
|
||||||
display: contents;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.core-loading-noheight .core-loading-content {
|
&.core-loading-noheight .core-loading-content {
|
||||||
height: auto;
|
height: auto;
|
||||||
}
|
}
|
||||||
|
|
|
@ -168,3 +168,7 @@
|
||||||
:host-context(.keyboard-is-open) {
|
:host-context(.keyboard-is-open) {
|
||||||
min-height: 200px;
|
min-height: 200px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
:host-context(.item-label-stacked) {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
|
@ -277,12 +277,21 @@ ion-button.button-clear {
|
||||||
.clickable {
|
.clickable {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
|
|
||||||
[disabled],
|
[disabled],
|
||||||
[aria-disabled="true"] {
|
[aria-disabled="true"] {
|
||||||
cursor: auto;
|
cursor: default;
|
||||||
|
opacity: .4;
|
||||||
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
button[disabled] {
|
||||||
|
cursor: default;
|
||||||
|
opacity: .4;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
ion-button.core-button-as-link {
|
ion-button.core-button-as-link {
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
|
|
Loading…
Reference in New Issue