File tree Expand file tree Collapse file tree 2 files changed +15
-7
lines changed
projects/igniteui-angular/src/lib
core/styles/components/dialog Expand file tree Collapse file tree 2 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 161161 color : --var ($theme , ' message-color' );
162162 max-width : 40ch ;
163163 padding : $dialog-message-padding ;
164+
165+ @media all and (-ms-high-contrast : none )
166+ {
167+ max-width : map-get ((
168+ material: 62ch ,
169+ fluent: 48ch ,
170+ bootstrap: 60ch ,
171+ ), $variant );
172+ }
164173 }
165174
166175 %igx-dialog-actions {
Original file line number Diff line number Diff line change @@ -3335,24 +3335,23 @@ export class IgxGridBaseDirective extends DisplayDensityBase implements
33353335 }
33363336
33373337 /**
3338- * Gets the outlet used to attach the grid's overlays to.
3338+ * Gets/Sets the outlet used to attach the grid's overlays to.
33393339 * @remark
33403340 * If set, returns the outlet defined outside the grid. Otherwise returns the grid's internal outlet directive.
33413341 */
3342+ @Input ( )
33423343 get outlet ( ) {
33433344 return this . resolveOutlet ( ) ;
33443345 }
33453346
3347+ set outlet ( val : IgxOverlayOutletDirective ) {
3348+ this . _userOutletDirective = val ;
3349+ }
3350+
33463351 protected resolveOutlet ( ) {
33473352 return this . _userOutletDirective ? this . _userOutletDirective : this . _outletDirective ;
33483353 }
33493354
3350- /**
3351- * Sets the outlet used to attach the grid's overlays to.
3352- */
3353- set outlet ( val : any ) {
3354- this . _userOutletDirective = val ;
3355- }
33563355
33573356 /**
33583357 * Gets the default row height.
You can’t perform that action at this time.
0 commit comments