forked from CIT/Vmeda.Online
		
	MOBILE-3320 rte: Minor RTE style fixes
This commit is contained in:
		
							parent
							
								
									b335b5123a
								
							
						
					
					
						commit
						b6e0bc2340
					
				@ -53,7 +53,7 @@
 | 
			
		||||
            </ion-item>
 | 
			
		||||
        </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">
 | 
			
		||||
        </core-empty-box>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -47,10 +47,6 @@
 | 
			
		||||
        @include margin(10px, 0, 0, 0);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .core-loading-content {
 | 
			
		||||
        display: contents;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    &.core-loading-noheight .core-loading-content {
 | 
			
		||||
        height: auto;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
@ -48,7 +48,7 @@
 | 
			
		||||
            </button>
 | 
			
		||||
        </ion-slide>
 | 
			
		||||
        <ion-slide>
 | 
			
		||||
            <button [disabled]="!rteEnabled" [attr.aria-pressed]="toolbarStyles.em" [title]=" 'core.editor.italic' | translate"
 | 
			
		||||
            <button [disabled]="!rteEnabled" [attr.aria-pressed]="toolbarStyles.em" [title]="'core.editor.italic' | translate"
 | 
			
		||||
                (click)="buttonAction($event, 'italic', 'em')" (keyup)="buttonAction($event, 'italic', 'em')"
 | 
			
		||||
                (mousedown)="downAction($event)" (keydown)="downAction($event)">
 | 
			
		||||
                <ion-icon name="fas-italic" aria-hidden="true"></ion-icon>
 | 
			
		||||
@ -129,14 +129,14 @@
 | 
			
		||||
            </button>
 | 
			
		||||
        </ion-slide>
 | 
			
		||||
        <ion-slide>
 | 
			
		||||
            <button [attr.aria-pressed]="!rteEnabled" [title]=" 'core.editor.toggle' | translate"
 | 
			
		||||
            <button [attr.aria-pressed]="!rteEnabled" [title]="'core.editor.toggle' | translate"
 | 
			
		||||
                (click)="toggleEditor($event)" (keyup)="toggleEditor($event)"
 | 
			
		||||
                (mousedown)="downAction($event)" (keydown)="downAction($event)">
 | 
			
		||||
                <ion-icon name="fas-code" aria-hidden="true"></ion-icon>
 | 
			
		||||
            </button>
 | 
			
		||||
        </ion-slide>
 | 
			
		||||
        <ion-slide *ngIf="isPhone">
 | 
			
		||||
            <button [title]=" 'core.editor.hidetoolbar' | translate"
 | 
			
		||||
            <button [title]="'core.editor.hidetoolbar' | translate"
 | 
			
		||||
                (click)="hideToolbar($event)" (keyup)="hideToolbar($event)"
 | 
			
		||||
                (mousedown)="downAction($event)" (keydown)="downAction($event)">
 | 
			
		||||
                <ion-icon name="fas-times" aria-hidden="true"></ion-icon>
 | 
			
		||||
 | 
			
		||||
@ -168,3 +168,7 @@
 | 
			
		||||
:host-context(.keyboard-is-open) {
 | 
			
		||||
    min-height: 200px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
:host-context(.item-label-stacked) {
 | 
			
		||||
    margin-top: 10px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -277,12 +277,21 @@ ion-button.button-clear {
 | 
			
		||||
.clickable {
 | 
			
		||||
    cursor: pointer;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    [disabled],
 | 
			
		||||
    [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 {
 | 
			
		||||
    text-transform: none;
 | 
			
		||||
    text-decoration: underline;
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user