File tree Expand file tree Collapse file tree 1 file changed +23
-3
lines changed
projects/igniteui-angular/src/lib/core/styles/components/grid Expand file tree Collapse file tree 1 file changed +23
-3
lines changed Original file line number Diff line number Diff line change 1476
1476
}
1477
1477
1478
1478
%igx-grid__td--editing {
1479
+ $editing-outline-width : rem (2px );
1479
1480
background : var-get ($theme , ' cell-editing-background' ) !important ;
1480
- box-shadow : inset 0 0 0 rem ( 2 px ) var-get ($theme , ' edit-mode-color' );
1481
+ box-shadow : inset 0 0 0 $editing-outline-width var-get ($theme , ' edit-mode-color' );
1481
1482
padding : 0 !important ;
1482
1483
1483
1484
// Have a more stable visual editing experience
1484
1485
igx-input-group ,
1485
1486
igx-select ,
1486
1487
igx-date-picker ,
1487
1488
igx-time-picker {
1488
- width : 100% ;
1489
- height : 100% ;
1489
+ height : calc (100% - (#{$editing-outline-width } * 2 ));
1490
+ width : calc (100% - (#{$editing-outline-width } * 2 ));
1491
+ margin-inline-start : $editing-outline-width ;
1492
+ overflow : hidden ;
1493
+
1494
+ igx-input-group {
1495
+ width : calc (100% - #{$editing-outline-width } ) !important ;
1496
+ margin-inline-start : 0 ;
1497
+ height : 100% !important ;
1498
+ }
1490
1499
}
1491
1500
1492
1501
igx-input-group {
1495
1504
}
1496
1505
1497
1506
.igx-input-group__bundle {
1507
+ height : 100% !important ;
1508
+ min-height : 100% !important ;
1498
1509
border : none !important ;
1499
1510
1500
1511
& ::before {
1501
1512
content : none !important ;
1502
1513
}
1514
+
1515
+ & ::after {
1516
+ display : none ;
1517
+ }
1503
1518
}
1504
1519
1505
1520
& .igx-grid__td--invalid {
1509
1524
1510
1525
igx-prefix ,
1511
1526
igx-suffix {
1527
+ border-radius : 0 !important ;
1512
1528
padding-top : 0 !important ;
1513
1529
padding-bottom : 0 !important ;
1514
1530
}
1535
1551
font-size : $grid-cell-fs !important ;
1536
1552
line-height : $grid-cell-lh !important ;
1537
1553
}
1554
+
1555
+ & %grid-cell-number {
1556
+ justify-content : flex-start !important ;
1557
+ }
1538
1558
}
1539
1559
1540
1560
%grid-cell--pinned {
You can’t perform that action at this time.
0 commit comments