@progress/kendo-theme-bootstrap 9.0.0 → 9.0.1-dev.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/all.scss CHANGED
@@ -14496,8 +14496,8 @@ $kendo-utils: (
14496
14496
  /// @group height
14497
14497
  /// @contextType css
14498
14498
 
14499
- /// This is equivalent to `min-height: 100%;`.
14500
- /// @example min-height: 100%;
14499
+ /// This is equivalent to `height: 100%;`.
14500
+ /// @example height: 100%;
14501
14501
  /// @name .k-h-full
14502
14502
  /// @group height
14503
14503
  /// @contextType css
@@ -14666,8 +14666,8 @@ $kendo-utils: (
14666
14666
  /// @group width
14667
14667
  /// @contextType css
14668
14668
 
14669
- /// This is equivalent to `min-width: 100%;`.
14670
- /// @example min-width: 100%;
14669
+ /// This is equivalent to `width: 100%;`.
14670
+ /// @example width: 100%;
14671
14671
  /// @name .k-w-full
14672
14672
  /// @group width
14673
14673
  /// @contextType css
@@ -28287,7 +28287,7 @@ $kendo-form-sizes: (
28287
28287
 
28288
28288
 
28289
28289
  .k-edit-label {
28290
- margin: 0 0 k-spacing(4) 0;
28290
+ margin: 0 0 k-spacing(4);
28291
28291
  // TODO: do we need the input variable?
28292
28292
  padding: calc( #{$kendo-input-padding-y} + #{$kendo-input-border-width} ) 0;
28293
28293
  width: 30%;
@@ -28297,7 +28297,7 @@ $kendo-form-sizes: (
28297
28297
  clear: both;
28298
28298
  }
28299
28299
  .k-edit-field {
28300
- margin: 0 0 k-spacing(4) 0;
28300
+ margin: 0 0 k-spacing(4);
28301
28301
  width: 65%;
28302
28302
  float: right;
28303
28303
  clear: right;
@@ -41211,10 +41211,8 @@ $_kendo-module-meta: (
41211
41211
  overflow: hidden;
41212
41212
  cursor: default;
41213
41213
  flex: 1;
41214
- display: flex;
41215
- flex-flow: row nowrap;
41216
41214
 
41217
- &::before {
41215
+ &:empty::before {
41218
41216
  content: "\200b";
41219
41217
  }
41220
41218
  }
@@ -51540,7 +51538,8 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
51540
51538
  }
51541
51539
  }
51542
51540
 
51543
- .k-master-row .k-grid-content-sticky::before {
51541
+ .k-master-row .k-grid-content-sticky::before,
51542
+ .k-master-row.k-grid-row-sticky .k-table-td::before {
51544
51543
  content: "";
51545
51544
  width: 100%;
51546
51545
  height: 100%;
@@ -52389,7 +52388,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
52389
52388
  background-color: $kendo-grid-sticky-bg;
52390
52389
  }
52391
52390
 
52392
- .k-grid-row-sticky {
52391
+ &.k-grid-row-sticky > .k-table-td {
52393
52392
  border-top-color: $kendo-grid-sticky-border;
52394
52393
  border-bottom-color: $kendo-grid-sticky-border;
52395
52394
  background-color: $kendo-grid-sticky-bg;
@@ -52397,6 +52396,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
52397
52396
 
52398
52397
  &.k-table-alt-row {
52399
52398
  .k-grid-content-sticky,
52399
+ &.k-grid-row-sticky > .k-table-td,
52400
52400
  .k-grid-row-sticky {
52401
52401
  @include fill( $bg: $kendo-grid-sticky-alt-bg );
52402
52402
  }
@@ -52404,6 +52404,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
52404
52404
 
52405
52405
  // Selected state
52406
52406
  &.k-table-row.k-selected td.k-grid-content-sticky,
52407
+ &.k-table-row.k-selected.k-grid-row-sticky > .k-table-td,
52407
52408
  &.k-table-row.k-selected .k-table-td.k-grid-row-sticky,
52408
52409
  &.k-table-row td.k-grid-content-sticky.k-selected,
52409
52410
  &.k-table-row .k-table-td.k-grid-content-sticky.k-selected {
@@ -52419,6 +52420,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
52419
52420
  }
52420
52421
 
52421
52422
  &.k-selected.k-table-alt-row td.k-grid-content-sticky,
52423
+ &.k-selected.k-table-alt-row.k-grid-row-sticky > .k-table-td,
52422
52424
  &.k-selected.k-table-alt-row .k-table-td.k-grid-row-sticky,
52423
52425
  &.k-table-alt-row td.k-grid-content-sticky.k-selected,
52424
52426
  &.k-table-alt-row .k-table-td.k-grid-content-sticky.k-selected {
@@ -52437,8 +52439,10 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
52437
52439
  // Hovered state
52438
52440
  &:hover .k-grid-content-sticky,
52439
52441
  &:hover .k-grid-row-sticky,
52442
+ &:hover.k-grid-row-sticky > .k-table-td,
52440
52443
  &.k-hover .k-grid-content-sticky,
52441
- &.k-hover .k-grid-row-sticky {
52444
+ &.k-hover .k-grid-row-sticky,
52445
+ &.k-hover.k-grid-row-sticky > .k-table-td {
52442
52446
  background-color: $kendo-grid-sticky-hover-bg;
52443
52447
  }
52444
52448
 
@@ -52446,8 +52450,10 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
52446
52450
  // Selected hover
52447
52451
  &.k-selected:hover td.k-grid-content-sticky,
52448
52452
  &.k-selected:hover .k-table-td.k-grid-row-sticky,
52453
+ &.k-selected:hover.k-grid-row-sticky > .k-table-td,
52449
52454
  &.k-selected.k-hover td.k-grid-content-sticky,
52450
52455
  &.k-selected.k-hover .k-table-td.k-grid-row-sticky,
52456
+ &.k-selected.k-hover.k-grid-row-sticky > .k-table-td,
52451
52457
  &:hover td.k-grid-content-sticky.k-selected,
52452
52458
  &.k-hover td.k-grid-content-sticky.k-selected,
52453
52459
  &:hover .k-table-td.k-grid-content-sticky.k-selected,
@@ -52464,121 +52470,6 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
52464
52470
  }
52465
52471
  }
52466
52472
 
52467
- kendo-grid.k-grid {
52468
- .k-grid-content-sticky {
52469
- border-top-color: $kendo-grid-header-border;
52470
- border-left-color: $kendo-grid-sticky-border;
52471
- border-right-color: $kendo-grid-sticky-border;
52472
- background-color: $kendo-grid-sticky-bg;
52473
-
52474
- &:hover,
52475
- &.k-hover {
52476
- background-color: $kendo-grid-sticky-hover-bg;
52477
- }
52478
- }
52479
-
52480
- .k-grid-row-sticky {
52481
- td,
52482
- .k-table-td {
52483
- border-top-color: $kendo-grid-sticky-border;
52484
- border-bottom-color: $kendo-grid-sticky-border;
52485
- background-color: $kendo-grid-sticky-bg;
52486
- }
52487
-
52488
- &:hover td,
52489
- &.k-hover td,
52490
- &:hover .k-table-td,
52491
- &.k-hover .k-table-td {
52492
- background-color: $kendo-grid-sticky-hover-bg;
52493
- }
52494
- }
52495
-
52496
- .k-table-alt-row .k-grid-content-sticky,
52497
- .k-grid-row-sticky.k-table-alt-row td,
52498
- .k-grid-row-sticky.k-table-alt-row .k-table-td {
52499
- @include fill( $bg: $kendo-grid-sticky-alt-bg );
52500
- }
52501
-
52502
- // Selected state
52503
- .k-table-row.k-selected .k-grid-content-sticky,
52504
- .k-selected.k-grid-row-sticky td,
52505
- .k-grid-row-sticky td.k-selected,
52506
- .k-selected.k-grid-row-sticky .k-table-td,
52507
- .k-grid-row-sticky .k-table-td.k-selected,
52508
- .k-selected.k-grid-content-sticky {
52509
- @if($kendo-enable-color-system) {
52510
- @include fill( $bg: $kendo-grid-sticky-bg );
52511
-
52512
- &::before {
52513
- @include fill( $bg: $kendo-grid-sticky-selected-bg );
52514
- }
52515
- } @else {
52516
- @include fill( $bg: $kendo-grid-sticky-selected-bg );
52517
- }
52518
- }
52519
-
52520
- .k-table-row.k-selected.k-table-alt-row .k-grid-content-sticky,
52521
- .k-selected.k-table-alt-row.k-grid-row-sticky td,
52522
- .k-selected.k-table-alt-row.k-grid-row-sticky .k-table-td,
52523
- .k-table-alt-row .k-selected.k-grid-content-sticky {
52524
- @if($kendo-enable-color-system) {
52525
- @include fill( $bg: $kendo-grid-sticky-alt-bg );
52526
-
52527
- &::before {
52528
- @include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
52529
- }
52530
- } @else {
52531
- @include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
52532
- }
52533
- }
52534
-
52535
- // Hover state
52536
- .k-table-row:hover .k-grid-content-sticky,
52537
- .k-table-row.k-hover .k-grid-content-sticky,
52538
- .k-grid-row-sticky:hover td,
52539
- .k-grid-row-sticky.k-hover td,
52540
- .k-grid-row-sticky.k-table-alt-row:hover td,
52541
- .k-grid-row-sticky.k-table-alt-row.k-hover td,
52542
- .k-grid-row-sticky:hover .k-table-td,
52543
- .k-grid-row-sticky.k-hover .k-table-td,
52544
- .k-grid-row-sticky.k-table-alt-row:hover .k-table-td,
52545
- .k-grid-row-sticky.k-table-alt-row.k-hover .k-table-td,
52546
- .k-table-alt-row:hover .k-grid-content-sticky,
52547
- .k-table-alt-row.k-hover .k-grid-content-sticky {
52548
- background-color: $kendo-grid-sticky-hover-bg;
52549
- }
52550
-
52551
- // Selected + Hover
52552
- .k-table-row.k-selected:hover .k-grid-content-sticky,
52553
- .k-table-row.k-selected.k-hover .k-grid-content-sticky,
52554
- .k-selected.k-grid-row-sticky:hover td,
52555
- .k-selected.k-grid-row-sticky.k-hover td,
52556
- .k-selected.k-table-alt-row.k-grid-row-sticky:hover td,
52557
- .k-selected.k-table-alt-row.k-grid-row-sticky.k-hover td,
52558
- .k-selected.k-grid-row-sticky:hover .k-table-td,
52559
- .k-selected.k-grid-row-sticky.k-hover .k-table-td,
52560
- .k-selected.k-table-alt-row.k-grid-row-sticky:hover .k-table-td,
52561
- .k-selected.k-table-alt-row.k-grid-row-sticky.k-hover .k-table-td,
52562
- .k-table-row.k-selected.k-table-alt-row:hover .k-grid-content-sticky,
52563
- .k-table-row.k-selected.k-table-alt-row.k-hover .k-grid-content-sticky,
52564
- .k-grid-row-sticky:hover td.k-selected,
52565
- .k-grid-row-sticky.k-hover td.k-selected,
52566
- .k-grid-row-sticky:hover .k-table-td.k-selected,
52567
- .k-grid-row-sticky.k-hover .k-table-td.k-selected,
52568
- .k-table-row:hover .k-grid-content-sticky.k-selected,
52569
- .k-table-row.k-hover .k-grid-content-sticky.k-selected {
52570
- @if($kendo-enable-color-system) {
52571
- background-color: $kendo-grid-sticky-hover-bg;
52572
-
52573
- &::before {
52574
- background-color: $kendo-grid-sticky-selected-hover-bg;
52575
- }
52576
- } @else {
52577
- background-color: $kendo-grid-sticky-selected-hover-bg;
52578
- }
52579
- }
52580
- }
52581
-
52582
52473
  .k-grouping-row {
52583
52474
  .k-grid-content-sticky {
52584
52475
  @include fill( $bg: $kendo-grid-sticky-header-bg );
@@ -52881,7 +52772,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
52881
52772
  border-top-color: $kendo-grid-border;
52882
52773
  }
52883
52774
 
52884
- .k-grid-row-sticky {
52775
+ &.k-grid-row-sticky > .k-table-td {
52885
52776
  border-top-color: $kendo-grid-sticky-border;
52886
52777
  border-bottom-color: $kendo-grid-sticky-border;
52887
52778
  background-color: $kendo-grid-sticky-bg;
@@ -52889,6 +52780,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
52889
52780
 
52890
52781
  &.k-table-alt-row {
52891
52782
  .k-grid-content-sticky,
52783
+ &.k-grid-row-sticky > .k-table-td,
52892
52784
  .k-grid-row-sticky {
52893
52785
  @include fill( $bg: $kendo-grid-sticky-alt-bg );
52894
52786
  }
@@ -52896,6 +52788,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
52896
52788
 
52897
52789
  // Selected state
52898
52790
  &.k-table-row.k-selected td.k-grid-content-sticky,
52791
+ &.k-table-row.k-selected.k-grid-row-sticky > .k-table-td,
52899
52792
  &.k-table-row.k-selected .k-table-td.k-grid-row-sticky,
52900
52793
  &.k-table-row td.k-grid-content-sticky.k-selected,
52901
52794
  &.k-table-row .k-table-td.k-grid-content-sticky.k-selected {
@@ -52911,6 +52804,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
52911
52804
  }
52912
52805
 
52913
52806
  &.k-selected.k-table-alt-row td.k-grid-content-sticky,
52807
+ &.k-selected.k-table-alt-row.k-grid-row-sticky > .k-table-td,
52914
52808
  &.k-selected.k-table-alt-row .k-table-td.k-grid-row-sticky,
52915
52809
  &.k-table-alt-row td.k-grid-content-sticky.k-selected,
52916
52810
  &.k-table-alt-row .k-table-td.k-grid-content-sticky.k-selected {
@@ -52930,7 +52824,9 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
52930
52824
  &:hover .k-grid-content-sticky,
52931
52825
  &.k-hover .k-grid-content-sticky,
52932
52826
  &:hover .k-grid-row-sticky,
52933
- &.k-hover .k-grid-row-sticky {
52827
+ &.k-hover .k-grid-row-sticky,
52828
+ &:hover.k-grid-row-sticky > .k-table-td,
52829
+ &.k-hover.k-grid-row-sticky > .k-table-td {
52934
52830
  background-color: $kendo-grid-sticky-hover-bg;
52935
52831
  }
52936
52832
 
@@ -52940,6 +52836,8 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
52940
52836
  &.k-selected.k-hover .k-table-td.k-grid-content-sticky,
52941
52837
  &.k-selected:hover td.k-grid-row-sticky,
52942
52838
  &.k-selected.k-hover .k-table-td.k-grid-row-sticky,
52839
+ &.k-selected:hover.k-grid-row-sticky > .k-table-td,
52840
+ &.k-selected.k-hover.k-grid-row-sticky > .k-table-td,
52943
52841
  &:hover td.k-grid-content-sticky.k-selected,
52944
52842
  &.k-hover td.k-grid-content-sticky.k-selected,
52945
52843
  &:hover .k-table-td.k-grid-content-sticky.k-selected,
@@ -52956,119 +52854,6 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
52956
52854
  }
52957
52855
  }
52958
52856
 
52959
- kendo-grid.k-grid {
52960
- .k-grid-content-sticky {
52961
- border-top-color: $kendo-grid-border;
52962
- border-left-color: $kendo-grid-sticky-border;
52963
- border-right-color: $kendo-grid-sticky-border;
52964
- background-color: $kendo-grid-sticky-bg;
52965
-
52966
- &:hover,
52967
- &.k-hover {
52968
- background-color: $kendo-grid-sticky-hover-bg;
52969
- }
52970
- }
52971
-
52972
- .k-grid-row-sticky td,
52973
- .k-grid-row-sticky .k-table-td {
52974
- border-top-color: $kendo-grid-sticky-border;
52975
- border-bottom-color: $kendo-grid-sticky-border;
52976
- background-color: $kendo-grid-sticky-bg;
52977
-
52978
- &:hover td,
52979
- &.k-hover td,
52980
- &:hover .k-table-td,
52981
- &.k-hover .k-table-td {
52982
- background-color: $kendo-grid-sticky-hover-bg;
52983
- }
52984
- }
52985
-
52986
- .k-table-alt-row .k-grid-content-sticky,
52987
- .k-grid-row-sticky.k-table-alt-row td,
52988
- .k-grid-row-sticky.k-table-alt-row .k-table-td {
52989
- @include fill( $bg: $kendo-grid-sticky-alt-bg );
52990
- }
52991
-
52992
- // Selected state
52993
- .k-table-row.k-selected .k-grid-content-sticky,
52994
- .k-selected.k-grid-row-sticky td,
52995
- .k-grid-row-sticky td.k-selected,
52996
- .k-selected.k-grid-row-sticky .k-table-td,
52997
- .k-grid-row-sticky .k-table-td.k-selected,
52998
- .k-selected.k-grid-content-sticky {
52999
- @if($kendo-enable-color-system) {
53000
- @include fill( $bg: $kendo-grid-sticky-bg );
53001
-
53002
- &::before {
53003
- @include fill( $bg: $kendo-grid-sticky-selected-bg );
53004
- }
53005
- } @else {
53006
- @include fill( $bg: $kendo-grid-sticky-selected-bg );
53007
- }
53008
- }
53009
-
53010
- .k-table-row.k-selected.k-table-alt-row .k-grid-content-sticky,
53011
- .k-selected.k-table-alt-row.k-grid-row-sticky td,
53012
- .k-selected.k-table-alt-row.k-grid-row-sticky .k-table-td,
53013
- .k-table-alt-row .k-selected.k-grid-content-sticky {
53014
- @if($kendo-enable-color-system) {
53015
- @include fill( $bg: $kendo-grid-sticky-alt-bg );
53016
-
53017
- &::before {
53018
- @include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
53019
- }
53020
- } @else {
53021
- @include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
53022
- }
53023
- }
53024
-
53025
- // Hover state
53026
- .k-table-row:hover .k-grid-content-sticky,
53027
- .k-table-row.k-hover .k-grid-content-sticky,
53028
- .k-grid-row-sticky:hover td,
53029
- .k-grid-row-sticky.k-hover td,
53030
- .k-grid-row-sticky.k-table-alt-row:hover td,
53031
- .k-grid-row-sticky.k-table-alt-row.k-hover td,
53032
- .k-grid-row-sticky:hover .k-table-td,
53033
- .k-grid-row-sticky.k-hover .k-table-td,
53034
- .k-grid-row-sticky.k-table-alt-row:hover .k-table-td,
53035
- .k-grid-row-sticky.k-table-alt-row.k-hover .k-table-td,
53036
- .k-table-alt-row:hover .k-grid-content-sticky,
53037
- .k-table-alt-row.k-hover .k-grid-content-sticky {
53038
- background-color: $kendo-grid-sticky-hover-bg;
53039
- }
53040
-
53041
- // Selected + Hover
53042
- .k-table-row.k-selected:hover .k-grid-content-sticky,
53043
- .k-table-row.k-selected.k-hover .k-grid-content-sticky,
53044
- .k-selected.k-grid-row-sticky:hover td,
53045
- .k-selected.k-grid-row-sticky.k-hover td,
53046
- .k-selected.k-table-alt-row.k-grid-row-sticky:hover td,
53047
- .k-selected.k-table-alt-row.k-grid-row-sticky.k-hover td,
53048
- .k-selected.k-grid-row-sticky:hover .k-table-td,
53049
- .k-selected.k-grid-row-sticky.k-hover .k-table-td,
53050
- .k-selected.k-table-alt-row.k-grid-row-sticky:hover .k-table-td,
53051
- .k-selected.k-table-alt-row.k-grid-row-sticky.k-hover .k-table-td,
53052
- .k-table-row.k-selected.k-table-alt-row:hover .k-grid-content-sticky,
53053
- .k-table-row.k-selected.k-table-alt-row.k-hover .k-grid-content-sticky,
53054
- .k-grid-row-sticky:hover td.k-selected,
53055
- .k-grid-row-sticky.k-hover td.k-selected,
53056
- .k-grid-row-sticky:hover .k-table-td.k-selected,
53057
- .k-grid-row-sticky.k-hover .k-table-td.k-selected,
53058
- .k-table-row:hover .k-grid-content-sticky.k-selected,
53059
- .k-table-row.k-hover .k-grid-content-sticky.k-selected {
53060
- @if($kendo-enable-color-system) {
53061
- background-color: $kendo-grid-sticky-hover-bg;
53062
-
53063
- &::before {
53064
- background-color: $kendo-grid-sticky-selected-hover-bg;
53065
- }
53066
- } @else {
53067
- background-color: $kendo-grid-sticky-selected-hover-bg;
53068
- }
53069
- }
53070
- }
53071
-
53072
52857
  .k-grouping-row {
53073
52858
  .k-grid-content-sticky {
53074
52859
  @include fill( $bg: $kendo-grid-sticky-header-bg );
@@ -58528,6 +58313,12 @@ $kendo-editor-selectednode-outline-color: #88ccff !default;
58528
58313
  visibility: hidden;
58529
58314
  }
58530
58315
 
58316
+ // Resizable tables
58317
+ .k-editor-resize-wrap-element {
58318
+ display: inline-block;
58319
+ position: relative;
58320
+ }
58321
+
58531
58322
  .k-editor-resize-handle {
58532
58323
  width: $kendo-editor-resize-handle-size;
58533
58324
  height: $kendo-editor-resize-handle-size;
@@ -58613,7 +58404,7 @@ $kendo-editor-selectednode-outline-color: #88ccff !default;
58613
58404
 
58614
58405
  // Toolbar
58615
58406
  .k-editor-toolbar {
58616
- border-width: 0 0 $kendo-toolbar-border-width 0;
58407
+ border-width: 0 0 $kendo-toolbar-border-width;
58617
58408
  flex-shrink: 0;
58618
58409
 
58619
58410
  .k-editor-export {
@@ -58868,7 +58659,7 @@ $kendo-editor-selectednode-outline-color: #88ccff !default;
58868
58659
 
58869
58660
  // Filebrowser toolbar
58870
58661
  .k-filebrowser-toolbar {
58871
- margin: k-spacing(4) 0 0 0;
58662
+ margin: k-spacing(4) 0 0;
58872
58663
  }
58873
58664
 
58874
58665
  .k-upload {
@@ -58895,7 +58686,7 @@ $kendo-editor-selectednode-outline-color: #88ccff !default;
58895
58686
  flex-flow: row wrap;
58896
58687
  height: 390px;
58897
58688
  max-height: 50vh;
58898
- margin: 0 0 k-spacing(4) 0;
58689
+ margin: 0 0 k-spacing(4);
58899
58690
  padding-block: $kendo-padding-md-y;
58900
58691
  padding-inline: $kendo-padding-md-x;
58901
58692
  border-top-width: 0;