File tree Expand file tree Collapse file tree 10 files changed +31
-1
lines changed
packages/core/scss/components Expand file tree Collapse file tree 10 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 379379 height : 100% ;
380380 }
381381 }
382+
383+ .k-icon-wrap ::before ,
384+ .k-checkbox-wrap ::before {
385+ height : calc (var (--kendo-font-size-lg ) * var (--kendo-line-height ));
386+ }
382387 }
383388
384389
Original file line number Diff line number Diff line change 101101 & ::before {
102102 content : " " ;
103103 width : 0px ;
104+ height : calc (var (--kendo-font-size ) * var (--kendo-line-height ));
104105 overflow : hidden ;
105106 flex : none ;
106107 display : inline-block ;
Original file line number Diff line number Diff line change 3535 font-size : $_font-size ;
3636 line-height : $_line-height ;
3737 }
38+
39+ .k-checkbox-wrap ::before {
40+ height : calc ($_font-size * $_line-height );
41+ }
3842 }
3943
4044 .k-group-menu-#{$size } {
Original file line number Diff line number Diff line change 1+ @use " sass:map" ;
12@use " ./variables.scss" as * ;
3+ @use " ../input/_variables.scss" as * ;
24
35@mixin kendo-dropdown-tree--layout-base () {
46
3638 }
3739 }
3840
41+ @each $size , $size-props in $kendo-input-sizes {
42+ $_font-size : map .get ( $size-props , font-size );
43+ $_line-height : map .get ( $size-props , line-height );
44+
45+ :where (.k-multiselecttree.k-input-#{$size} ) {
46+
47+ .k- input- inner::before {
48+ height : calc ( $_font-size * $_line-height );
49+ }
50+ }
51+ }
3952}
4053
4154
Original file line number Diff line number Diff line change 2222 & ::before {
2323 content : " " ;
2424 width : 0 ;
25+ height : calc (var (--kendo-font-size ) * var (--kendo-line-height ));
2526 overflow : hidden ;
2627 flex : none ;
2728 display : inline-block ;
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ $kendo-input-sm-calc-size: null !default;
3030$kendo-input-md-calc-size : null !default ;
3131$kendo-input-lg-calc-size : null !default ;
3232
33- $kendo-input-sizes : null !default ;
33+ $kendo-input-sizes : () !default ;
3434
3535$kendo-input-bg : null !default ;
3636$kendo-input-text : null !default ;
Original file line number Diff line number Diff line change 9595 & ::before {
9696 content : " " ;
9797 width : 0px ;
98+ height : calc (var (--kendo-font-size ) * var (--kendo-line-height ));
9899 overflow : hidden ;
99100 flex : none ;
100101 display : inline-block ;
Original file line number Diff line number Diff line change 1313
1414 & :empty ::before {
1515 content : " " ;
16+ display : inline-block ;
1617 }
1718 }
1819
Original file line number Diff line number Diff line change 146146 width : 0 ;
147147 display : block ;
148148 overflow : hidden ;
149+ box-sizing : border-box ;
149150 }
150151
151152 .k-table-th {
249250 .k-table-#{$size } .k-table-list .k-table-group-row ::before {
250251 padding-block : $_cell-padding-y ;
251252 padding-inline : 0 ;
253+ height : calc ( $_font-size * $_line-height + ( $_cell-padding-y * 2 ) );
252254 }
253255 }
254256
Original file line number Diff line number Diff line change 7777
7878 & :empty ::before {
7979 content : " " ;
80+ display : block ;
81+ height : calc ($kendo-window-title-font-size * $kendo-window-title-line-height );
8082 }
8183 }
8284
You can’t perform that action at this time.
0 commit comments