chore: add ViewEncapsulation.None to components

Closes #5884
This commit is contained in:
Adam Bradley
2016-04-10 20:38:04 -05:00
parent 4e8ecae83c
commit acc6321d0d
25 changed files with 67 additions and 39 deletions

View File

@ -1,4 +1,4 @@
import {Directive, Component, ElementRef, Renderer, Optional, EventEmitter, Input, Output, HostListener, ContentChildren, QueryList} from 'angular2/core';
import {Directive, Component, ElementRef, Renderer, Optional, EventEmitter, Input, Output, HostListener, ContentChildren, QueryList, ViewEncapsulation} from 'angular2/core';
import {NgControl} from 'angular2/common';
import {isPresent} from '../../util/util';
@ -52,7 +52,8 @@ import {isPresent} from '../../util/util';
'tappable': '',
'class': 'segment-button',
'role': 'button'
}
},
encapsulation: ViewEncapsulation.None,
})
export class SegmentButton {