File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
core/src/components/textarea Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 8282// Textarea Within An Item
8383// --------------------------------------------------
8484
85- :host-context(ion -item) {
85+ :host ( .in -item ) {
8686 align-self : baseline ;
8787}
8888
89- :host-context(ion -item) [slot = " start" ],
90- :host-context(ion -item) [slot = " end" ] {
89+ :host ( .in -item [slot = " start" ]) ,
90+ :host ( .in -item [slot = " end" ]) {
9191 width : auto ;
9292}
9393
311311
312312 width : 100% ;
313313 min-height : inherit ;
314+
315+ box-sizing : border-box ;
314316}
315317
316318// Textarea Highlight
Original file line number Diff line number Diff line change @@ -854,6 +854,7 @@ export class Textarea implements ComponentInterface {
854854 [ `textarea-shape-${ shape } ` ] : shape !== undefined ,
855855 [ `textarea-size-${ size } ` ] : true ,
856856 [ `textarea-label-placement-${ labelPlacement } ` ] : true ,
857+ 'in-item' : inItem ,
857858 'textarea-disabled' : disabled ,
858859 'textarea-readonly' : readonly ,
859860 } ) }
You can’t perform that action at this time.
0 commit comments