@progress/kendo-theme-bootstrap 4.43.1-dev.6 → 4.43.1-dev.7
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.css +85 -43
- package/dist/all.scss +62 -23
- package/modules/@progress/kendo-theme-default/package.json +2 -2
- package/modules/@progress/kendo-theme-default/scss/button/_layout.scss +20 -1
- package/modules/@progress/kendo-theme-default/scss/button/_variables.scss +6 -3
- package/modules/@progress/kendo-theme-default/scss/list/_layout.scss +0 -15
- package/modules/@progress/kendo-theme-default/scss/slider/_layout.scss +35 -4
- package/modules/@progress/kendo-theme-default/scss/timeselector/_layout.scss +1 -0
- package/package.json +3 -3
- package/scss/button/_variables.scss +6 -3
package/dist/all.css
CHANGED
|
@@ -10791,15 +10791,6 @@ kendo-list > .k-group-header,
|
|
|
10791
10791
|
width: 100%;
|
|
10792
10792
|
}
|
|
10793
10793
|
|
|
10794
|
-
.k-dropdown-button .k-popup .k-item {
|
|
10795
|
-
cursor: pointer;
|
|
10796
|
-
}
|
|
10797
|
-
|
|
10798
|
-
.k-split-button .k-list .k-item:focus,
|
|
10799
|
-
.k-dropdown-button .k-list .k-item:focus {
|
|
10800
|
-
outline: none;
|
|
10801
|
-
}
|
|
10802
|
-
|
|
10803
10794
|
.k-virtual-content {
|
|
10804
10795
|
overflow-y: scroll;
|
|
10805
10796
|
-webkit-overflow-scrolling: touch;
|
|
@@ -13532,6 +13523,20 @@ kendo-badge-container {
|
|
|
13532
13523
|
position: relative;
|
|
13533
13524
|
}
|
|
13534
13525
|
|
|
13526
|
+
.k-button-arrow {
|
|
13527
|
+
padding-left: 0.375rem;
|
|
13528
|
+
padding-right: 0.375rem;
|
|
13529
|
+
flex: none;
|
|
13530
|
+
display: inline-flex;
|
|
13531
|
+
align-items: center;
|
|
13532
|
+
justify-content: center;
|
|
13533
|
+
}
|
|
13534
|
+
|
|
13535
|
+
.k-button > .k-button-arrow {
|
|
13536
|
+
margin-inline-start: -0.375rem;
|
|
13537
|
+
margin-inline-end: -0.75rem;
|
|
13538
|
+
}
|
|
13539
|
+
|
|
13535
13540
|
.k-text-button > .k-icon,
|
|
13536
13541
|
.k-text-button > .k-button-icon {
|
|
13537
13542
|
display: none;
|
|
@@ -13557,6 +13562,11 @@ kendo-badge-container {
|
|
|
13557
13562
|
min-height: 1.5rem;
|
|
13558
13563
|
}
|
|
13559
13564
|
|
|
13565
|
+
.k-icon-button > .k-button-arrow {
|
|
13566
|
+
margin-inline-start: 0;
|
|
13567
|
+
margin-inline-end: -0.375rem;
|
|
13568
|
+
}
|
|
13569
|
+
|
|
13560
13570
|
.k-button.k-button-icon {
|
|
13561
13571
|
padding: 0.375rem;
|
|
13562
13572
|
width: calc(1.5em + 0.75rem + 2px);
|
|
@@ -13642,7 +13652,7 @@ kendo-badge-container {
|
|
|
13642
13652
|
}
|
|
13643
13653
|
|
|
13644
13654
|
.k-split-button .k-split-button-arrow {
|
|
13645
|
-
padding: 0.375rem;
|
|
13655
|
+
padding: 0.375rem 0.375rem;
|
|
13646
13656
|
width: auto;
|
|
13647
13657
|
flex: none;
|
|
13648
13658
|
}
|
|
@@ -13803,8 +13813,9 @@ kendo-badge-container {
|
|
|
13803
13813
|
}
|
|
13804
13814
|
|
|
13805
13815
|
.k-button.k-state-selected {
|
|
13806
|
-
border-color: #
|
|
13807
|
-
|
|
13816
|
+
border-color: #0252c9;
|
|
13817
|
+
color: white;
|
|
13818
|
+
background-color: #0257d5;
|
|
13808
13819
|
}
|
|
13809
13820
|
|
|
13810
13821
|
.k-button-solid.k-button-solid-primary, .k-button-solid.k-button.k-primary {
|
|
@@ -16465,17 +16476,28 @@ textarea.k-textarea {
|
|
|
16465
16476
|
right: 0;
|
|
16466
16477
|
}
|
|
16467
16478
|
|
|
16479
|
+
.k-slider-wrap {
|
|
16480
|
+
width: 100%;
|
|
16481
|
+
height: 100%;
|
|
16482
|
+
box-sizing: border-box;
|
|
16483
|
+
display: flex;
|
|
16484
|
+
flex-flow: inherit;
|
|
16485
|
+
align-items: inherit;
|
|
16486
|
+
gap: inherit;
|
|
16487
|
+
position: relative;
|
|
16488
|
+
}
|
|
16489
|
+
|
|
16468
16490
|
.k-slider {
|
|
16469
16491
|
width: min-content;
|
|
16470
16492
|
height: min-content;
|
|
16471
16493
|
gap: 7px;
|
|
16472
16494
|
}
|
|
16473
16495
|
|
|
16474
|
-
.k-slider
|
|
16496
|
+
.k-slider .k-button {
|
|
16475
16497
|
flex: none;
|
|
16476
16498
|
}
|
|
16477
16499
|
|
|
16478
|
-
.k-slider
|
|
16500
|
+
.k-slider .k-slider-track-wrap {
|
|
16479
16501
|
flex: 1 1 auto;
|
|
16480
16502
|
display: flex;
|
|
16481
16503
|
flex-flow: inherit;
|
|
@@ -16483,7 +16505,10 @@ textarea.k-textarea {
|
|
|
16483
16505
|
touch-action: none;
|
|
16484
16506
|
}
|
|
16485
16507
|
|
|
16486
|
-
.k-slider
|
|
16508
|
+
.k-slider .k-slider-track-wrap .k-slider-items {
|
|
16509
|
+
margin: 0;
|
|
16510
|
+
padding: 0;
|
|
16511
|
+
list-style: none;
|
|
16487
16512
|
flex: 1 1 100%;
|
|
16488
16513
|
display: flex;
|
|
16489
16514
|
flex-flow: inherit;
|
|
@@ -16493,97 +16518,97 @@ textarea.k-textarea {
|
|
|
16493
16518
|
user-select: none;
|
|
16494
16519
|
}
|
|
16495
16520
|
|
|
16496
|
-
.k-slider
|
|
16521
|
+
.k-slider .k-slider-track-wrap .k-tick {
|
|
16497
16522
|
flex: 0 0 1px;
|
|
16498
16523
|
}
|
|
16499
16524
|
|
|
16500
|
-
.k-slider
|
|
16525
|
+
.k-slider .k-slider-track-wrap .k-draghandle {
|
|
16501
16526
|
position: absolute;
|
|
16502
16527
|
}
|
|
16503
16528
|
|
|
16504
|
-
.k-slider-horizontal
|
|
16529
|
+
.k-slider-horizontal .k-slider-track-wrap {
|
|
16505
16530
|
height: 26px;
|
|
16506
16531
|
}
|
|
16507
16532
|
|
|
16508
|
-
.k-slider-horizontal
|
|
16533
|
+
.k-slider-horizontal .k-slider-track-wrap .k-slider-track {
|
|
16509
16534
|
width: 100%;
|
|
16510
16535
|
}
|
|
16511
16536
|
|
|
16512
|
-
.k-slider-horizontal
|
|
16537
|
+
.k-slider-horizontal .k-slider-track-wrap .k-draghandle {
|
|
16513
16538
|
top: 50%;
|
|
16514
16539
|
transform: translate(-50%, -50%);
|
|
16515
16540
|
}
|
|
16516
16541
|
|
|
16517
|
-
.k-slider-horizontal
|
|
16518
|
-
.k-slider-horizontal
|
|
16542
|
+
.k-slider-horizontal .k-slider-track-wrap .k-draghandle:focus,
|
|
16543
|
+
.k-slider-horizontal .k-slider-track-wrap .k-draghandle:active {
|
|
16519
16544
|
transform: translate(-50%, -50%) scale(1);
|
|
16520
16545
|
}
|
|
16521
16546
|
|
|
16522
|
-
.k-slider-horizontal
|
|
16547
|
+
.k-slider-horizontal .k-slider-track-wrap .k-slider-selection {
|
|
16523
16548
|
width: calc((var(--kendo-slider-end, 0) - var(--kendo-slider-start, 0))*1%);
|
|
16524
16549
|
left: calc(var(--kendo-slider-start, 0)*1%);
|
|
16525
16550
|
}
|
|
16526
16551
|
|
|
16527
|
-
.k-slider-horizontal
|
|
16552
|
+
.k-slider-horizontal .k-slider-track-wrap .k-draghandle-start {
|
|
16528
16553
|
left: calc(var(--kendo-slider-start, 0)*1%);
|
|
16529
16554
|
}
|
|
16530
16555
|
|
|
16531
|
-
.k-slider-horizontal
|
|
16556
|
+
.k-slider-horizontal .k-slider-track-wrap .k-draghandle-end {
|
|
16532
16557
|
left: calc(var(--kendo-slider-end, 0)*1%);
|
|
16533
16558
|
}
|
|
16534
16559
|
|
|
16535
|
-
[dir="rtl"] .k-slider-horizontal
|
|
16560
|
+
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-slider-selection {
|
|
16536
16561
|
left: unset;
|
|
16537
16562
|
right: calc(var(--kendo-slider-start, 0)*1%);
|
|
16538
16563
|
}
|
|
16539
16564
|
|
|
16540
|
-
[dir="rtl"] .k-slider-horizontal
|
|
16565
|
+
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle-start {
|
|
16541
16566
|
left: unset;
|
|
16542
16567
|
right: calc(var(--kendo-slider-start, 0)*1%);
|
|
16543
16568
|
}
|
|
16544
16569
|
|
|
16545
|
-
[dir="rtl"] .k-slider-horizontal
|
|
16570
|
+
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle-end {
|
|
16546
16571
|
left: unset;
|
|
16547
16572
|
right: calc(var(--kendo-slider-end, 0)*1%);
|
|
16548
16573
|
}
|
|
16549
16574
|
|
|
16550
|
-
[dir="rtl"] .k-slider-horizontal
|
|
16575
|
+
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle {
|
|
16551
16576
|
transform: translate(50%, -50%);
|
|
16552
16577
|
}
|
|
16553
16578
|
|
|
16554
|
-
[dir="rtl"] .k-slider-horizontal
|
|
16555
|
-
[dir="rtl"] .k-slider-horizontal
|
|
16579
|
+
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle:focus,
|
|
16580
|
+
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle:active {
|
|
16556
16581
|
transform: translate(50%, -50%) scale(1);
|
|
16557
16582
|
}
|
|
16558
16583
|
|
|
16559
|
-
.k-slider-vertical
|
|
16584
|
+
.k-slider-vertical .k-slider-track-wrap {
|
|
16560
16585
|
width: 26px;
|
|
16561
16586
|
}
|
|
16562
16587
|
|
|
16563
|
-
.k-slider-vertical
|
|
16588
|
+
.k-slider-vertical .k-slider-track-wrap .k-slider-track {
|
|
16564
16589
|
height: 100%;
|
|
16565
16590
|
}
|
|
16566
16591
|
|
|
16567
|
-
.k-slider-vertical
|
|
16592
|
+
.k-slider-vertical .k-slider-track-wrap .k-draghandle {
|
|
16568
16593
|
left: 50%;
|
|
16569
16594
|
transform: translate(-50%, 50%);
|
|
16570
16595
|
}
|
|
16571
16596
|
|
|
16572
|
-
.k-slider-vertical
|
|
16573
|
-
.k-slider-vertical
|
|
16597
|
+
.k-slider-vertical .k-slider-track-wrap .k-draghandle:focus,
|
|
16598
|
+
.k-slider-vertical .k-slider-track-wrap .k-draghandle:active {
|
|
16574
16599
|
transform: translate(-50%, 50%) scale(1);
|
|
16575
16600
|
}
|
|
16576
16601
|
|
|
16577
|
-
.k-slider-vertical
|
|
16602
|
+
.k-slider-vertical .k-slider-track-wrap .k-slider-selection {
|
|
16578
16603
|
bottom: calc(var(--kendo-slider-start, 0)*1%);
|
|
16579
16604
|
height: calc((var(--kendo-slider-end, 0) - var(--kendo-slider-start, 0))*1%);
|
|
16580
16605
|
}
|
|
16581
16606
|
|
|
16582
|
-
.k-slider-vertical
|
|
16607
|
+
.k-slider-vertical .k-slider-track-wrap .k-draghandle-start {
|
|
16583
16608
|
bottom: calc(var(--kendo-slider-start, 0)*1%);
|
|
16584
16609
|
}
|
|
16585
16610
|
|
|
16586
|
-
.k-slider-vertical
|
|
16611
|
+
.k-slider-vertical .k-slider-track-wrap .k-draghandle-end {
|
|
16587
16612
|
bottom: calc(var(--kendo-slider-end, 0)*1%);
|
|
16588
16613
|
}
|
|
16589
16614
|
|
|
@@ -16899,6 +16924,20 @@ textarea.k-textarea {
|
|
|
16899
16924
|
margin-top: -0.2rem;
|
|
16900
16925
|
}
|
|
16901
16926
|
|
|
16927
|
+
.k-slider kendo-resize-sensor {
|
|
16928
|
+
position: absolute;
|
|
16929
|
+
}
|
|
16930
|
+
|
|
16931
|
+
.k-slider-horizontal .k-slider-wrap:not(.k-slider-buttons) {
|
|
16932
|
+
padding-left: 7px;
|
|
16933
|
+
padding-right: 7px;
|
|
16934
|
+
}
|
|
16935
|
+
|
|
16936
|
+
.k-slider-vertical .k-slider-wrap:not(.k-slider-buttons) {
|
|
16937
|
+
padding-top: 7px;
|
|
16938
|
+
padding-bottom: 7px;
|
|
16939
|
+
}
|
|
16940
|
+
|
|
16902
16941
|
.k-slider {
|
|
16903
16942
|
color: #212529;
|
|
16904
16943
|
}
|
|
@@ -17654,6 +17693,7 @@ textarea.k-textarea {
|
|
|
17654
17693
|
flex: 1;
|
|
17655
17694
|
position: relative;
|
|
17656
17695
|
z-index: 1;
|
|
17696
|
+
outline: 0;
|
|
17657
17697
|
overflow: hidden;
|
|
17658
17698
|
}
|
|
17659
17699
|
|
|
@@ -30321,8 +30361,9 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
30321
30361
|
|
|
30322
30362
|
.k-pivot-toolbar .k-button.k-state-selected,
|
|
30323
30363
|
.k-fieldselector .k-list li.k-item.k-state-selected {
|
|
30324
|
-
border-color: #
|
|
30325
|
-
|
|
30364
|
+
border-color: #0252c9;
|
|
30365
|
+
color: white;
|
|
30366
|
+
background-color: #0257d5;
|
|
30326
30367
|
}
|
|
30327
30368
|
|
|
30328
30369
|
.k-pivot-toolbar .k-button:focus, .k-pivot-toolbar .k-button.k-state-focus, .k-pivot-toolbar .k-button.k-state-focused,
|
|
@@ -34378,8 +34419,9 @@ ul.k-scheduler-views li:hover, ul.k-scheduler-views li.k-state-hover {
|
|
|
34378
34419
|
}
|
|
34379
34420
|
|
|
34380
34421
|
ul.k-scheduler-views li.k-state-selected {
|
|
34381
|
-
border-color: #
|
|
34382
|
-
|
|
34422
|
+
border-color: #0252c9;
|
|
34423
|
+
color: white;
|
|
34424
|
+
background-color: #0257d5;
|
|
34383
34425
|
}
|
|
34384
34426
|
|
|
34385
34427
|
ul.k-scheduler-views li:focus, ul.k-scheduler-views li.k-state-focus, ul.k-scheduler-views li.k-state-focused {
|
package/dist/all.scss
CHANGED
|
@@ -8753,21 +8753,6 @@ $checkbox-ripple-opacity: .25 !default;
|
|
|
8753
8753
|
}
|
|
8754
8754
|
}
|
|
8755
8755
|
|
|
8756
|
-
.k-dropdown-button .k-popup {
|
|
8757
|
-
.k-item {
|
|
8758
|
-
cursor: pointer;
|
|
8759
|
-
}
|
|
8760
|
-
}
|
|
8761
|
-
|
|
8762
|
-
// SplitButton
|
|
8763
|
-
// TODO: Wait for final design + revise
|
|
8764
|
-
.k-split-button,
|
|
8765
|
-
.k-dropdown-button {
|
|
8766
|
-
.k-list .k-item:focus {
|
|
8767
|
-
outline: none;
|
|
8768
|
-
}
|
|
8769
|
-
}
|
|
8770
|
-
|
|
8771
8756
|
.k-virtual-content {
|
|
8772
8757
|
overflow-y: scroll;
|
|
8773
8758
|
-webkit-overflow-scrolling: touch;
|
|
@@ -9574,6 +9559,9 @@ $button-calc-size: calc( #{$button-line-height * 1em} + #{$button-padding-y * 2}
|
|
|
9574
9559
|
/// @group button
|
|
9575
9560
|
$button-inner-calc-size: calc( #{$button-line-height * 1em} + #{$button-padding-y * 2} ) !default;
|
|
9576
9561
|
|
|
9562
|
+
$button-arrow-padding-x: $button-padding-y !default;
|
|
9563
|
+
$button-arrow-padding-y: $button-padding-y !default;
|
|
9564
|
+
|
|
9577
9565
|
/// Theme colors map for the button.
|
|
9578
9566
|
/// @group button
|
|
9579
9567
|
$button-theme-colors: (
|
|
@@ -9633,13 +9621,13 @@ $button-active-shadow: null !default;
|
|
|
9633
9621
|
|
|
9634
9622
|
/// The background color of selected buttons.
|
|
9635
9623
|
/// @group button
|
|
9636
|
-
$button-selected-bg:
|
|
9624
|
+
$button-selected-bg: try-darken( $primary, 10% ) !default;
|
|
9637
9625
|
/// The text color of selected buttons.
|
|
9638
9626
|
/// @group button
|
|
9639
|
-
$button-selected-text: $button-
|
|
9627
|
+
$button-selected-text: contrast-wcag( $button-selected-bg ) !default;
|
|
9640
9628
|
/// The border color of selected buttons.
|
|
9641
9629
|
/// @group button
|
|
9642
|
-
$button-selected-border:
|
|
9630
|
+
$button-selected-border: try-darken( $primary, 12.5% ) !default;
|
|
9643
9631
|
/// The background gradient of selected buttons.
|
|
9644
9632
|
/// @group button
|
|
9645
9633
|
$button-selected-gradient: null !default;
|
|
@@ -13511,6 +13499,21 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13511
13499
|
.k-button .k-button-text {}
|
|
13512
13500
|
|
|
13513
13501
|
|
|
13502
|
+
// Button arrow
|
|
13503
|
+
.k-button-arrow {
|
|
13504
|
+
padding-left: $button-arrow-padding-y;
|
|
13505
|
+
padding-right: $button-arrow-padding-y;
|
|
13506
|
+
flex: none;
|
|
13507
|
+
display: inline-flex;
|
|
13508
|
+
align-items: center;
|
|
13509
|
+
justify-content: center;
|
|
13510
|
+
}
|
|
13511
|
+
.k-button > .k-button-arrow {
|
|
13512
|
+
margin-inline-start: -$button-padding-y;
|
|
13513
|
+
margin-inline-end: -$button-padding-x;
|
|
13514
|
+
}
|
|
13515
|
+
|
|
13516
|
+
|
|
13514
13517
|
// Text button
|
|
13515
13518
|
.k-text-button {
|
|
13516
13519
|
|
|
@@ -13538,6 +13541,10 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13538
13541
|
min-height: calc( #{$button-font-size} * #{$button-line-height} );
|
|
13539
13542
|
}
|
|
13540
13543
|
}
|
|
13544
|
+
.k-icon-button > .k-button-arrow {
|
|
13545
|
+
margin-inline-start: 0;
|
|
13546
|
+
margin-inline-end: -$button-padding-y;
|
|
13547
|
+
}
|
|
13541
13548
|
// TODO: REMOVE
|
|
13542
13549
|
.k-button.k-button-icon {
|
|
13543
13550
|
padding: $button-padding-y;
|
|
@@ -13636,7 +13643,7 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13636
13643
|
vertical-align: middle;
|
|
13637
13644
|
|
|
13638
13645
|
.k-split-button-arrow {
|
|
13639
|
-
padding: $button-padding-y;
|
|
13646
|
+
padding: $button-arrow-padding-y $button-arrow-padding-x;
|
|
13640
13647
|
width: auto;
|
|
13641
13648
|
flex: none;
|
|
13642
13649
|
|
|
@@ -17229,16 +17236,29 @@ $slider-disabled-opacity: null !default;
|
|
|
17229
17236
|
}
|
|
17230
17237
|
|
|
17231
17238
|
|
|
17239
|
+
// Slider wrap
|
|
17240
|
+
.k-slider-wrap {
|
|
17241
|
+
width: 100%;
|
|
17242
|
+
height: 100%;
|
|
17243
|
+
box-sizing: border-box;
|
|
17244
|
+
display: flex;
|
|
17245
|
+
flex-flow: inherit;
|
|
17246
|
+
align-items: inherit;
|
|
17247
|
+
gap: inherit;
|
|
17248
|
+
position: relative;
|
|
17249
|
+
}
|
|
17250
|
+
|
|
17251
|
+
|
|
17232
17252
|
// New rendering
|
|
17233
17253
|
.k-slider {
|
|
17234
17254
|
width: min-content;
|
|
17235
17255
|
height: min-content;
|
|
17236
17256
|
gap: calc( #{$slider-draghandle-size} / 2 );
|
|
17237
17257
|
|
|
17238
|
-
|
|
17258
|
+
.k-button {
|
|
17239
17259
|
flex: none;
|
|
17240
17260
|
}
|
|
17241
|
-
|
|
17261
|
+
.k-slider-track-wrap {
|
|
17242
17262
|
flex: 1 1 auto;
|
|
17243
17263
|
display: flex;
|
|
17244
17264
|
flex-flow: inherit;
|
|
@@ -17246,6 +17266,9 @@ $slider-disabled-opacity: null !default;
|
|
|
17246
17266
|
touch-action: none;
|
|
17247
17267
|
|
|
17248
17268
|
.k-slider-items {
|
|
17269
|
+
margin: 0;
|
|
17270
|
+
padding: 0;
|
|
17271
|
+
list-style: none;
|
|
17249
17272
|
// For some reason, Safari does not understand `flex-basis: 100%`
|
|
17250
17273
|
// See telerik/kendo-themes#2197
|
|
17251
17274
|
// flex-basis: 100%;
|
|
@@ -17265,7 +17288,7 @@ $slider-disabled-opacity: null !default;
|
|
|
17265
17288
|
}
|
|
17266
17289
|
|
|
17267
17290
|
&-horizontal {
|
|
17268
|
-
|
|
17291
|
+
.k-slider-track-wrap {
|
|
17269
17292
|
height: 26px;
|
|
17270
17293
|
|
|
17271
17294
|
.k-slider-track {
|
|
@@ -17318,7 +17341,7 @@ $slider-disabled-opacity: null !default;
|
|
|
17318
17341
|
}
|
|
17319
17342
|
|
|
17320
17343
|
&-vertical {
|
|
17321
|
-
|
|
17344
|
+
.k-slider-track-wrap {
|
|
17322
17345
|
width: 26px;
|
|
17323
17346
|
|
|
17324
17347
|
.k-slider-track {
|
|
@@ -17570,6 +17593,21 @@ $slider-disabled-opacity: null !default;
|
|
|
17570
17593
|
margin-top: -$tooltip-callout-size / 2;
|
|
17571
17594
|
}
|
|
17572
17595
|
}
|
|
17596
|
+
|
|
17597
|
+
|
|
17598
|
+
// Angular specific
|
|
17599
|
+
.k-slider kendo-resize-sensor {
|
|
17600
|
+
position: absolute;
|
|
17601
|
+
}
|
|
17602
|
+
.k-slider-horizontal .k-slider-wrap:not(.k-slider-buttons) {
|
|
17603
|
+
padding-left: calc( #{$slider-draghandle-size} / 2 );
|
|
17604
|
+
padding-right: calc( #{$slider-draghandle-size} / 2 );
|
|
17605
|
+
}
|
|
17606
|
+
.k-slider-vertical .k-slider-wrap:not(.k-slider-buttons) {
|
|
17607
|
+
padding-top: calc( #{$slider-draghandle-size} / 2 );
|
|
17608
|
+
padding-bottom: calc( #{$slider-draghandle-size} / 2 );
|
|
17609
|
+
}
|
|
17610
|
+
|
|
17573
17611
|
}
|
|
17574
17612
|
|
|
17575
17613
|
// #endregion
|
|
@@ -18723,6 +18761,7 @@ $time-list-focused-bg: rgba(0, 0, 0, .02) !default;
|
|
|
18723
18761
|
flex: 1;
|
|
18724
18762
|
position: relative;
|
|
18725
18763
|
z-index: 1;
|
|
18764
|
+
outline: 0;
|
|
18726
18765
|
overflow: hidden;
|
|
18727
18766
|
|
|
18728
18767
|
&::before,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-default",
|
|
3
3
|
"description": "SASS resources for the default Kendo UI theme",
|
|
4
|
-
"version": "4.43.1-dev.
|
|
4
|
+
"version": "4.43.1-dev.7",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"dart:flat": "gulp dart:flat",
|
|
48
48
|
"prepublishOnly": "echo 'no prebublish for default theme'"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "634466e18a3f771f8e1da5dc5efdefca1f4fd344"
|
|
51
51
|
}
|
|
@@ -64,6 +64,21 @@
|
|
|
64
64
|
.k-button .k-button-text {}
|
|
65
65
|
|
|
66
66
|
|
|
67
|
+
// Button arrow
|
|
68
|
+
.k-button-arrow {
|
|
69
|
+
padding-left: $button-arrow-padding-y;
|
|
70
|
+
padding-right: $button-arrow-padding-y;
|
|
71
|
+
flex: none;
|
|
72
|
+
display: inline-flex;
|
|
73
|
+
align-items: center;
|
|
74
|
+
justify-content: center;
|
|
75
|
+
}
|
|
76
|
+
.k-button > .k-button-arrow {
|
|
77
|
+
margin-inline-start: -$button-padding-y;
|
|
78
|
+
margin-inline-end: -$button-padding-x;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
|
|
67
82
|
// Text button
|
|
68
83
|
.k-text-button {
|
|
69
84
|
|
|
@@ -91,6 +106,10 @@
|
|
|
91
106
|
min-height: calc( #{$button-font-size} * #{$button-line-height} );
|
|
92
107
|
}
|
|
93
108
|
}
|
|
109
|
+
.k-icon-button > .k-button-arrow {
|
|
110
|
+
margin-inline-start: 0;
|
|
111
|
+
margin-inline-end: -$button-padding-y;
|
|
112
|
+
}
|
|
94
113
|
// TODO: REMOVE
|
|
95
114
|
.k-button.k-button-icon {
|
|
96
115
|
padding: $button-padding-y;
|
|
@@ -189,7 +208,7 @@
|
|
|
189
208
|
vertical-align: middle;
|
|
190
209
|
|
|
191
210
|
.k-split-button-arrow {
|
|
192
|
-
padding: $button-padding-y;
|
|
211
|
+
padding: $button-arrow-padding-y $button-arrow-padding-x;
|
|
193
212
|
width: auto;
|
|
194
213
|
flex: none;
|
|
195
214
|
|
|
@@ -48,6 +48,9 @@ $button-calc-size: calc( #{$button-line-height * 1em} + #{$button-padding-y * 2}
|
|
|
48
48
|
/// @group button
|
|
49
49
|
$button-inner-calc-size: calc( #{$button-line-height * 1em} + #{$button-padding-y * 2} ) !default;
|
|
50
50
|
|
|
51
|
+
$button-arrow-padding-x: $button-padding-y !default;
|
|
52
|
+
$button-arrow-padding-y: $button-padding-y !default;
|
|
53
|
+
|
|
51
54
|
/// Theme colors map for the button.
|
|
52
55
|
/// @group button
|
|
53
56
|
$button-theme-colors: (
|
|
@@ -107,13 +110,13 @@ $button-active-shadow: null !default;
|
|
|
107
110
|
|
|
108
111
|
/// The background color of selected buttons.
|
|
109
112
|
/// @group button
|
|
110
|
-
$button-selected-bg: $
|
|
113
|
+
$button-selected-bg: $primary !default;
|
|
111
114
|
/// The text color of selected buttons.
|
|
112
115
|
/// @group button
|
|
113
|
-
$button-selected-text: $button-
|
|
116
|
+
$button-selected-text: contrast-wcag( $button-selected-bg ) !default;
|
|
114
117
|
/// The border color of selected buttons.
|
|
115
118
|
/// @group button
|
|
116
|
-
$button-selected-border: $button-
|
|
119
|
+
$button-selected-border: $button-selected-bg !default;
|
|
117
120
|
/// The background gradient of selected buttons.
|
|
118
121
|
/// @group button
|
|
119
122
|
$button-selected-gradient: null !default;
|
|
@@ -120,21 +120,6 @@
|
|
|
120
120
|
}
|
|
121
121
|
}
|
|
122
122
|
|
|
123
|
-
.k-dropdown-button .k-popup {
|
|
124
|
-
.k-item {
|
|
125
|
-
cursor: pointer;
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
// SplitButton
|
|
130
|
-
// TODO: Wait for final design + revise
|
|
131
|
-
.k-split-button,
|
|
132
|
-
.k-dropdown-button {
|
|
133
|
-
.k-list .k-item:focus {
|
|
134
|
-
outline: none;
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
|
|
138
123
|
.k-virtual-content {
|
|
139
124
|
overflow-y: scroll;
|
|
140
125
|
-webkit-overflow-scrolling: touch;
|
|
@@ -58,16 +58,29 @@
|
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
|
|
61
|
+
// Slider wrap
|
|
62
|
+
.k-slider-wrap {
|
|
63
|
+
width: 100%;
|
|
64
|
+
height: 100%;
|
|
65
|
+
box-sizing: border-box;
|
|
66
|
+
display: flex;
|
|
67
|
+
flex-flow: inherit;
|
|
68
|
+
align-items: inherit;
|
|
69
|
+
gap: inherit;
|
|
70
|
+
position: relative;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
|
|
61
74
|
// New rendering
|
|
62
75
|
.k-slider {
|
|
63
76
|
width: min-content;
|
|
64
77
|
height: min-content;
|
|
65
78
|
gap: calc( #{$slider-draghandle-size} / 2 );
|
|
66
79
|
|
|
67
|
-
|
|
80
|
+
.k-button {
|
|
68
81
|
flex: none;
|
|
69
82
|
}
|
|
70
|
-
|
|
83
|
+
.k-slider-track-wrap {
|
|
71
84
|
flex: 1 1 auto;
|
|
72
85
|
display: flex;
|
|
73
86
|
flex-flow: inherit;
|
|
@@ -75,6 +88,9 @@
|
|
|
75
88
|
touch-action: none;
|
|
76
89
|
|
|
77
90
|
.k-slider-items {
|
|
91
|
+
margin: 0;
|
|
92
|
+
padding: 0;
|
|
93
|
+
list-style: none;
|
|
78
94
|
// For some reason, Safari does not understand `flex-basis: 100%`
|
|
79
95
|
// See telerik/kendo-themes#2197
|
|
80
96
|
// flex-basis: 100%;
|
|
@@ -94,7 +110,7 @@
|
|
|
94
110
|
}
|
|
95
111
|
|
|
96
112
|
&-horizontal {
|
|
97
|
-
|
|
113
|
+
.k-slider-track-wrap {
|
|
98
114
|
height: 26px;
|
|
99
115
|
|
|
100
116
|
.k-slider-track {
|
|
@@ -147,7 +163,7 @@
|
|
|
147
163
|
}
|
|
148
164
|
|
|
149
165
|
&-vertical {
|
|
150
|
-
|
|
166
|
+
.k-slider-track-wrap {
|
|
151
167
|
width: 26px;
|
|
152
168
|
|
|
153
169
|
.k-slider-track {
|
|
@@ -399,4 +415,19 @@
|
|
|
399
415
|
margin-top: -$tooltip-callout-size / 2;
|
|
400
416
|
}
|
|
401
417
|
}
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
// Angular specific
|
|
421
|
+
.k-slider kendo-resize-sensor {
|
|
422
|
+
position: absolute;
|
|
423
|
+
}
|
|
424
|
+
.k-slider-horizontal .k-slider-wrap:not(.k-slider-buttons) {
|
|
425
|
+
padding-left: calc( #{$slider-draghandle-size} / 2 );
|
|
426
|
+
padding-right: calc( #{$slider-draghandle-size} / 2 );
|
|
427
|
+
}
|
|
428
|
+
.k-slider-vertical .k-slider-wrap:not(.k-slider-buttons) {
|
|
429
|
+
padding-top: calc( #{$slider-draghandle-size} / 2 );
|
|
430
|
+
padding-bottom: calc( #{$slider-draghandle-size} / 2 );
|
|
431
|
+
}
|
|
432
|
+
|
|
402
433
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-bootstrap",
|
|
3
3
|
"description": "Bootstrap theme for Kendo UI",
|
|
4
|
-
"version": "4.43.1-dev.
|
|
4
|
+
"version": "4.43.1-dev.7",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
"postpublish": "rm -rf modules && git checkout scss"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@progress/kendo-theme-default": "^4.43.1-dev.
|
|
53
|
+
"@progress/kendo-theme-default": "^4.43.1-dev.7",
|
|
54
54
|
"bootstrap": "^5.1.0"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "634466e18a3f771f8e1da5dc5efdefca1f4fd344"
|
|
57
57
|
}
|
|
@@ -48,6 +48,9 @@ $button-calc-size: calc( #{$button-line-height * 1em} + #{$button-padding-y * 2}
|
|
|
48
48
|
/// @group button
|
|
49
49
|
$button-inner-calc-size: calc( #{$button-line-height * 1em} + #{$button-padding-y * 2} ) !default;
|
|
50
50
|
|
|
51
|
+
$button-arrow-padding-x: $button-padding-y !default;
|
|
52
|
+
$button-arrow-padding-y: $button-padding-y !default;
|
|
53
|
+
|
|
51
54
|
/// Theme colors map for the button.
|
|
52
55
|
/// @group button
|
|
53
56
|
$button-theme-colors: (
|
|
@@ -107,13 +110,13 @@ $button-active-shadow: null !default;
|
|
|
107
110
|
|
|
108
111
|
/// The background color of selected buttons.
|
|
109
112
|
/// @group button
|
|
110
|
-
$button-selected-bg:
|
|
113
|
+
$button-selected-bg: try-darken( $primary, 10% ) !default;
|
|
111
114
|
/// The text color of selected buttons.
|
|
112
115
|
/// @group button
|
|
113
|
-
$button-selected-text: $button-
|
|
116
|
+
$button-selected-text: contrast-wcag( $button-selected-bg ) !default;
|
|
114
117
|
/// The border color of selected buttons.
|
|
115
118
|
/// @group button
|
|
116
|
-
$button-selected-border:
|
|
119
|
+
$button-selected-border: try-darken( $primary, 12.5% ) !default;
|
|
117
120
|
/// The background gradient of selected buttons.
|
|
118
121
|
/// @group button
|
|
119
122
|
$button-selected-gradient: null !default;
|