mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-10 12:35:07 +00:00
Contact list checkbox rendering broken due to ripple
This commit is contained in:
parent
4cb8009c69
commit
e8449e340d
|
@ -1,6 +1,6 @@
|
||||||
@import "src/app/core/scss/fuse";
|
@import "src/app/core/scss/fuse";
|
||||||
|
|
||||||
:host {
|
fuse-contacts-contact-list {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
|
||||||
.mat-table {
|
.mat-table {
|
||||||
|
@ -9,6 +9,10 @@
|
||||||
|
|
||||||
.mat-column-checkbox {
|
.mat-column-checkbox {
|
||||||
flex: 0 1 48px;
|
flex: 0 1 48px;
|
||||||
|
|
||||||
|
.mat-checkbox-ripple {
|
||||||
|
display: none !important; //fix for broken rendering
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.mat-column-avatar {
|
.mat-column-avatar {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { Component, OnDestroy, OnInit, TemplateRef, ViewChild } from '@angular/core';
|
import { Component, OnDestroy, OnInit, TemplateRef, ViewChild, ViewEncapsulation } from '@angular/core';
|
||||||
import { ContactsService } from '../contacts.service';
|
import { ContactsService } from '../contacts.service';
|
||||||
import { Observable } from 'rxjs/Observable';
|
import { Observable } from 'rxjs/Observable';
|
||||||
import { FuseContactsContactFormDialogComponent } from '../contact-form/contact-form.component';
|
import { FuseContactsContactFormDialogComponent } from '../contact-form/contact-form.component';
|
||||||
|
@ -13,6 +13,7 @@ import { Subscription } from 'rxjs/Subscription';
|
||||||
selector : 'fuse-contacts-contact-list',
|
selector : 'fuse-contacts-contact-list',
|
||||||
templateUrl : './contact-list.component.html',
|
templateUrl : './contact-list.component.html',
|
||||||
styleUrls : ['./contact-list.component.scss'],
|
styleUrls : ['./contact-list.component.scss'],
|
||||||
|
encapsulation: ViewEncapsulation.None,
|
||||||
animations : fuseAnimations
|
animations : fuseAnimations
|
||||||
})
|
})
|
||||||
export class FuseContactsContactListComponent implements OnInit, OnDestroy
|
export class FuseContactsContactListComponent implements OnInit, OnDestroy
|
||||||
|
|
Loading…
Reference in New Issue
Block a user