@progress/kendo-theme-classic 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 +82 -41
- 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
|
@@ -10785,15 +10785,6 @@ kendo-list > .k-group-header,
|
|
|
10785
10785
|
width: 100%;
|
|
10786
10786
|
}
|
|
10787
10787
|
|
|
10788
|
-
.k-dropdown-button .k-popup .k-item {
|
|
10789
|
-
cursor: pointer;
|
|
10790
|
-
}
|
|
10791
|
-
|
|
10792
|
-
.k-split-button .k-list .k-item:focus,
|
|
10793
|
-
.k-dropdown-button .k-list .k-item:focus {
|
|
10794
|
-
outline: none;
|
|
10795
|
-
}
|
|
10796
|
-
|
|
10797
10788
|
.k-virtual-content {
|
|
10798
10789
|
overflow-y: scroll;
|
|
10799
10790
|
-webkit-overflow-scrolling: touch;
|
|
@@ -13465,6 +13456,20 @@ kendo-badge-container {
|
|
|
13465
13456
|
position: relative;
|
|
13466
13457
|
}
|
|
13467
13458
|
|
|
13459
|
+
.k-button-arrow {
|
|
13460
|
+
padding-left: 4px;
|
|
13461
|
+
padding-right: 4px;
|
|
13462
|
+
flex: none;
|
|
13463
|
+
display: inline-flex;
|
|
13464
|
+
align-items: center;
|
|
13465
|
+
justify-content: center;
|
|
13466
|
+
}
|
|
13467
|
+
|
|
13468
|
+
.k-button > .k-button-arrow {
|
|
13469
|
+
margin-inline-start: -4px;
|
|
13470
|
+
margin-inline-end: -8px;
|
|
13471
|
+
}
|
|
13472
|
+
|
|
13468
13473
|
.k-text-button > .k-icon,
|
|
13469
13474
|
.k-text-button > .k-button-icon {
|
|
13470
13475
|
display: none;
|
|
@@ -13490,6 +13495,11 @@ kendo-badge-container {
|
|
|
13490
13495
|
min-height: 20.0000000004px;
|
|
13491
13496
|
}
|
|
13492
13497
|
|
|
13498
|
+
.k-icon-button > .k-button-arrow {
|
|
13499
|
+
margin-inline-start: 0;
|
|
13500
|
+
margin-inline-end: -4px;
|
|
13501
|
+
}
|
|
13502
|
+
|
|
13493
13503
|
.k-button.k-button-icon {
|
|
13494
13504
|
padding: 4px;
|
|
13495
13505
|
width: calc(1.4285714286em + 10px);
|
|
@@ -13575,7 +13585,7 @@ kendo-badge-container {
|
|
|
13575
13585
|
}
|
|
13576
13586
|
|
|
13577
13587
|
.k-split-button .k-split-button-arrow {
|
|
13578
|
-
padding: 4px;
|
|
13588
|
+
padding: 4px 4px;
|
|
13579
13589
|
width: auto;
|
|
13580
13590
|
flex: none;
|
|
13581
13591
|
}
|
|
@@ -13737,8 +13747,9 @@ kendo-badge-container {
|
|
|
13737
13747
|
}
|
|
13738
13748
|
|
|
13739
13749
|
.k-button.k-state-selected {
|
|
13740
|
-
border-color: #
|
|
13741
|
-
|
|
13750
|
+
border-color: #f35800;
|
|
13751
|
+
color: white;
|
|
13752
|
+
background-color: #f35800;
|
|
13742
13753
|
}
|
|
13743
13754
|
|
|
13744
13755
|
.k-button-solid.k-button-solid-primary, .k-button-solid.k-button.k-primary {
|
|
@@ -16375,17 +16386,28 @@ textarea.k-textarea {
|
|
|
16375
16386
|
right: 0;
|
|
16376
16387
|
}
|
|
16377
16388
|
|
|
16389
|
+
.k-slider-wrap {
|
|
16390
|
+
width: 100%;
|
|
16391
|
+
height: 100%;
|
|
16392
|
+
box-sizing: border-box;
|
|
16393
|
+
display: flex;
|
|
16394
|
+
flex-flow: inherit;
|
|
16395
|
+
align-items: inherit;
|
|
16396
|
+
gap: inherit;
|
|
16397
|
+
position: relative;
|
|
16398
|
+
}
|
|
16399
|
+
|
|
16378
16400
|
.k-slider {
|
|
16379
16401
|
width: min-content;
|
|
16380
16402
|
height: min-content;
|
|
16381
16403
|
gap: 7px;
|
|
16382
16404
|
}
|
|
16383
16405
|
|
|
16384
|
-
.k-slider
|
|
16406
|
+
.k-slider .k-button {
|
|
16385
16407
|
flex: none;
|
|
16386
16408
|
}
|
|
16387
16409
|
|
|
16388
|
-
.k-slider
|
|
16410
|
+
.k-slider .k-slider-track-wrap {
|
|
16389
16411
|
flex: 1 1 auto;
|
|
16390
16412
|
display: flex;
|
|
16391
16413
|
flex-flow: inherit;
|
|
@@ -16393,7 +16415,10 @@ textarea.k-textarea {
|
|
|
16393
16415
|
touch-action: none;
|
|
16394
16416
|
}
|
|
16395
16417
|
|
|
16396
|
-
.k-slider
|
|
16418
|
+
.k-slider .k-slider-track-wrap .k-slider-items {
|
|
16419
|
+
margin: 0;
|
|
16420
|
+
padding: 0;
|
|
16421
|
+
list-style: none;
|
|
16397
16422
|
flex: 1 1 100%;
|
|
16398
16423
|
display: flex;
|
|
16399
16424
|
flex-flow: inherit;
|
|
@@ -16403,97 +16428,97 @@ textarea.k-textarea {
|
|
|
16403
16428
|
user-select: none;
|
|
16404
16429
|
}
|
|
16405
16430
|
|
|
16406
|
-
.k-slider
|
|
16431
|
+
.k-slider .k-slider-track-wrap .k-tick {
|
|
16407
16432
|
flex: 0 0 1px;
|
|
16408
16433
|
}
|
|
16409
16434
|
|
|
16410
|
-
.k-slider
|
|
16435
|
+
.k-slider .k-slider-track-wrap .k-draghandle {
|
|
16411
16436
|
position: absolute;
|
|
16412
16437
|
}
|
|
16413
16438
|
|
|
16414
|
-
.k-slider-horizontal
|
|
16439
|
+
.k-slider-horizontal .k-slider-track-wrap {
|
|
16415
16440
|
height: 26px;
|
|
16416
16441
|
}
|
|
16417
16442
|
|
|
16418
|
-
.k-slider-horizontal
|
|
16443
|
+
.k-slider-horizontal .k-slider-track-wrap .k-slider-track {
|
|
16419
16444
|
width: 100%;
|
|
16420
16445
|
}
|
|
16421
16446
|
|
|
16422
|
-
.k-slider-horizontal
|
|
16447
|
+
.k-slider-horizontal .k-slider-track-wrap .k-draghandle {
|
|
16423
16448
|
top: 50%;
|
|
16424
16449
|
transform: translate(-50%, -50%);
|
|
16425
16450
|
}
|
|
16426
16451
|
|
|
16427
|
-
.k-slider-horizontal
|
|
16428
|
-
.k-slider-horizontal
|
|
16452
|
+
.k-slider-horizontal .k-slider-track-wrap .k-draghandle:focus,
|
|
16453
|
+
.k-slider-horizontal .k-slider-track-wrap .k-draghandle:active {
|
|
16429
16454
|
transform: translate(-50%, -50%) scale(1);
|
|
16430
16455
|
}
|
|
16431
16456
|
|
|
16432
|
-
.k-slider-horizontal
|
|
16457
|
+
.k-slider-horizontal .k-slider-track-wrap .k-slider-selection {
|
|
16433
16458
|
width: calc((var(--kendo-slider-end, 0) - var(--kendo-slider-start, 0))*1%);
|
|
16434
16459
|
left: calc(var(--kendo-slider-start, 0)*1%);
|
|
16435
16460
|
}
|
|
16436
16461
|
|
|
16437
|
-
.k-slider-horizontal
|
|
16462
|
+
.k-slider-horizontal .k-slider-track-wrap .k-draghandle-start {
|
|
16438
16463
|
left: calc(var(--kendo-slider-start, 0)*1%);
|
|
16439
16464
|
}
|
|
16440
16465
|
|
|
16441
|
-
.k-slider-horizontal
|
|
16466
|
+
.k-slider-horizontal .k-slider-track-wrap .k-draghandle-end {
|
|
16442
16467
|
left: calc(var(--kendo-slider-end, 0)*1%);
|
|
16443
16468
|
}
|
|
16444
16469
|
|
|
16445
|
-
[dir="rtl"] .k-slider-horizontal
|
|
16470
|
+
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-slider-selection {
|
|
16446
16471
|
left: unset;
|
|
16447
16472
|
right: calc(var(--kendo-slider-start, 0)*1%);
|
|
16448
16473
|
}
|
|
16449
16474
|
|
|
16450
|
-
[dir="rtl"] .k-slider-horizontal
|
|
16475
|
+
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle-start {
|
|
16451
16476
|
left: unset;
|
|
16452
16477
|
right: calc(var(--kendo-slider-start, 0)*1%);
|
|
16453
16478
|
}
|
|
16454
16479
|
|
|
16455
|
-
[dir="rtl"] .k-slider-horizontal
|
|
16480
|
+
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle-end {
|
|
16456
16481
|
left: unset;
|
|
16457
16482
|
right: calc(var(--kendo-slider-end, 0)*1%);
|
|
16458
16483
|
}
|
|
16459
16484
|
|
|
16460
|
-
[dir="rtl"] .k-slider-horizontal
|
|
16485
|
+
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle {
|
|
16461
16486
|
transform: translate(50%, -50%);
|
|
16462
16487
|
}
|
|
16463
16488
|
|
|
16464
|
-
[dir="rtl"] .k-slider-horizontal
|
|
16465
|
-
[dir="rtl"] .k-slider-horizontal
|
|
16489
|
+
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle:focus,
|
|
16490
|
+
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle:active {
|
|
16466
16491
|
transform: translate(50%, -50%) scale(1);
|
|
16467
16492
|
}
|
|
16468
16493
|
|
|
16469
|
-
.k-slider-vertical
|
|
16494
|
+
.k-slider-vertical .k-slider-track-wrap {
|
|
16470
16495
|
width: 26px;
|
|
16471
16496
|
}
|
|
16472
16497
|
|
|
16473
|
-
.k-slider-vertical
|
|
16498
|
+
.k-slider-vertical .k-slider-track-wrap .k-slider-track {
|
|
16474
16499
|
height: 100%;
|
|
16475
16500
|
}
|
|
16476
16501
|
|
|
16477
|
-
.k-slider-vertical
|
|
16502
|
+
.k-slider-vertical .k-slider-track-wrap .k-draghandle {
|
|
16478
16503
|
left: 50%;
|
|
16479
16504
|
transform: translate(-50%, 50%);
|
|
16480
16505
|
}
|
|
16481
16506
|
|
|
16482
|
-
.k-slider-vertical
|
|
16483
|
-
.k-slider-vertical
|
|
16507
|
+
.k-slider-vertical .k-slider-track-wrap .k-draghandle:focus,
|
|
16508
|
+
.k-slider-vertical .k-slider-track-wrap .k-draghandle:active {
|
|
16484
16509
|
transform: translate(-50%, 50%) scale(1);
|
|
16485
16510
|
}
|
|
16486
16511
|
|
|
16487
|
-
.k-slider-vertical
|
|
16512
|
+
.k-slider-vertical .k-slider-track-wrap .k-slider-selection {
|
|
16488
16513
|
bottom: calc(var(--kendo-slider-start, 0)*1%);
|
|
16489
16514
|
height: calc((var(--kendo-slider-end, 0) - var(--kendo-slider-start, 0))*1%);
|
|
16490
16515
|
}
|
|
16491
16516
|
|
|
16492
|
-
.k-slider-vertical
|
|
16517
|
+
.k-slider-vertical .k-slider-track-wrap .k-draghandle-start {
|
|
16493
16518
|
bottom: calc(var(--kendo-slider-start, 0)*1%);
|
|
16494
16519
|
}
|
|
16495
16520
|
|
|
16496
|
-
.k-slider-vertical
|
|
16521
|
+
.k-slider-vertical .k-slider-track-wrap .k-draghandle-end {
|
|
16497
16522
|
bottom: calc(var(--kendo-slider-end, 0)*1%);
|
|
16498
16523
|
}
|
|
16499
16524
|
|
|
@@ -16809,6 +16834,20 @@ textarea.k-textarea {
|
|
|
16809
16834
|
margin-top: -3px;
|
|
16810
16835
|
}
|
|
16811
16836
|
|
|
16837
|
+
.k-slider kendo-resize-sensor {
|
|
16838
|
+
position: absolute;
|
|
16839
|
+
}
|
|
16840
|
+
|
|
16841
|
+
.k-slider-horizontal .k-slider-wrap:not(.k-slider-buttons) {
|
|
16842
|
+
padding-left: 7px;
|
|
16843
|
+
padding-right: 7px;
|
|
16844
|
+
}
|
|
16845
|
+
|
|
16846
|
+
.k-slider-vertical .k-slider-wrap:not(.k-slider-buttons) {
|
|
16847
|
+
padding-top: 7px;
|
|
16848
|
+
padding-bottom: 7px;
|
|
16849
|
+
}
|
|
16850
|
+
|
|
16812
16851
|
.k-slider {
|
|
16813
16852
|
color: #272727;
|
|
16814
16853
|
}
|
|
@@ -17556,6 +17595,7 @@ textarea.k-textarea {
|
|
|
17556
17595
|
flex: 1;
|
|
17557
17596
|
position: relative;
|
|
17558
17597
|
z-index: 1;
|
|
17598
|
+
outline: 0;
|
|
17559
17599
|
overflow: hidden;
|
|
17560
17600
|
}
|
|
17561
17601
|
|
|
@@ -33878,8 +33918,9 @@ ul.k-scheduler-views li:hover, ul.k-scheduler-views li.k-state-hover {
|
|
|
33878
33918
|
}
|
|
33879
33919
|
|
|
33880
33920
|
ul.k-scheduler-views li.k-state-selected {
|
|
33881
|
-
border-color: #
|
|
33882
|
-
|
|
33921
|
+
border-color: #f35800;
|
|
33922
|
+
color: white;
|
|
33923
|
+
background-color: #f35800;
|
|
33883
33924
|
}
|
|
33884
33925
|
|
|
33885
33926
|
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
|
@@ -6683,21 +6683,6 @@ $checkbox-ripple-opacity: .25 !default;
|
|
|
6683
6683
|
}
|
|
6684
6684
|
}
|
|
6685
6685
|
|
|
6686
|
-
.k-dropdown-button .k-popup {
|
|
6687
|
-
.k-item {
|
|
6688
|
-
cursor: pointer;
|
|
6689
|
-
}
|
|
6690
|
-
}
|
|
6691
|
-
|
|
6692
|
-
// SplitButton
|
|
6693
|
-
// TODO: Wait for final design + revise
|
|
6694
|
-
.k-split-button,
|
|
6695
|
-
.k-dropdown-button {
|
|
6696
|
-
.k-list .k-item:focus {
|
|
6697
|
-
outline: none;
|
|
6698
|
-
}
|
|
6699
|
-
}
|
|
6700
|
-
|
|
6701
6686
|
.k-virtual-content {
|
|
6702
6687
|
overflow-y: scroll;
|
|
6703
6688
|
-webkit-overflow-scrolling: touch;
|
|
@@ -7465,6 +7450,9 @@ $button-calc-size: calc( #{$button-line-height * 1em} + #{$button-padding-y * 2}
|
|
|
7465
7450
|
/// @group button
|
|
7466
7451
|
$button-inner-calc-size: calc( #{$button-line-height * 1em} + #{$button-padding-y * 2} ) !default;
|
|
7467
7452
|
|
|
7453
|
+
$button-arrow-padding-x: $button-padding-y !default;
|
|
7454
|
+
$button-arrow-padding-y: $button-padding-y !default;
|
|
7455
|
+
|
|
7468
7456
|
/// Theme colors map for the button.
|
|
7469
7457
|
/// @group button
|
|
7470
7458
|
$button-theme-colors: (
|
|
@@ -7524,13 +7512,13 @@ $button-active-shadow: null !default;
|
|
|
7524
7512
|
|
|
7525
7513
|
/// The background color of selected buttons.
|
|
7526
7514
|
/// @group button
|
|
7527
|
-
$button-selected-bg: $
|
|
7515
|
+
$button-selected-bg: $primary !default;
|
|
7528
7516
|
/// The text color of selected buttons.
|
|
7529
7517
|
/// @group button
|
|
7530
|
-
$button-selected-text: $button-
|
|
7518
|
+
$button-selected-text: contrast-wcag( $button-selected-bg ) !default;
|
|
7531
7519
|
/// The border color of selected buttons.
|
|
7532
7520
|
/// @group button
|
|
7533
|
-
$button-selected-border: $button-
|
|
7521
|
+
$button-selected-border: $button-selected-bg !default;
|
|
7534
7522
|
/// The background gradient of selected buttons.
|
|
7535
7523
|
/// @group button
|
|
7536
7524
|
$button-selected-gradient: null !default;
|
|
@@ -11383,6 +11371,21 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
11383
11371
|
.k-button .k-button-text {}
|
|
11384
11372
|
|
|
11385
11373
|
|
|
11374
|
+
// Button arrow
|
|
11375
|
+
.k-button-arrow {
|
|
11376
|
+
padding-left: $button-arrow-padding-y;
|
|
11377
|
+
padding-right: $button-arrow-padding-y;
|
|
11378
|
+
flex: none;
|
|
11379
|
+
display: inline-flex;
|
|
11380
|
+
align-items: center;
|
|
11381
|
+
justify-content: center;
|
|
11382
|
+
}
|
|
11383
|
+
.k-button > .k-button-arrow {
|
|
11384
|
+
margin-inline-start: -$button-padding-y;
|
|
11385
|
+
margin-inline-end: -$button-padding-x;
|
|
11386
|
+
}
|
|
11387
|
+
|
|
11388
|
+
|
|
11386
11389
|
// Text button
|
|
11387
11390
|
.k-text-button {
|
|
11388
11391
|
|
|
@@ -11410,6 +11413,10 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
11410
11413
|
min-height: calc( #{$button-font-size} * #{$button-line-height} );
|
|
11411
11414
|
}
|
|
11412
11415
|
}
|
|
11416
|
+
.k-icon-button > .k-button-arrow {
|
|
11417
|
+
margin-inline-start: 0;
|
|
11418
|
+
margin-inline-end: -$button-padding-y;
|
|
11419
|
+
}
|
|
11413
11420
|
// TODO: REMOVE
|
|
11414
11421
|
.k-button.k-button-icon {
|
|
11415
11422
|
padding: $button-padding-y;
|
|
@@ -11508,7 +11515,7 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
11508
11515
|
vertical-align: middle;
|
|
11509
11516
|
|
|
11510
11517
|
.k-split-button-arrow {
|
|
11511
|
-
padding: $button-padding-y;
|
|
11518
|
+
padding: $button-arrow-padding-y $button-arrow-padding-x;
|
|
11512
11519
|
width: auto;
|
|
11513
11520
|
flex: none;
|
|
11514
11521
|
|
|
@@ -15026,16 +15033,29 @@ $slider-disabled-opacity: null !default;
|
|
|
15026
15033
|
}
|
|
15027
15034
|
|
|
15028
15035
|
|
|
15036
|
+
// Slider wrap
|
|
15037
|
+
.k-slider-wrap {
|
|
15038
|
+
width: 100%;
|
|
15039
|
+
height: 100%;
|
|
15040
|
+
box-sizing: border-box;
|
|
15041
|
+
display: flex;
|
|
15042
|
+
flex-flow: inherit;
|
|
15043
|
+
align-items: inherit;
|
|
15044
|
+
gap: inherit;
|
|
15045
|
+
position: relative;
|
|
15046
|
+
}
|
|
15047
|
+
|
|
15048
|
+
|
|
15029
15049
|
// New rendering
|
|
15030
15050
|
.k-slider {
|
|
15031
15051
|
width: min-content;
|
|
15032
15052
|
height: min-content;
|
|
15033
15053
|
gap: calc( #{$slider-draghandle-size} / 2 );
|
|
15034
15054
|
|
|
15035
|
-
|
|
15055
|
+
.k-button {
|
|
15036
15056
|
flex: none;
|
|
15037
15057
|
}
|
|
15038
|
-
|
|
15058
|
+
.k-slider-track-wrap {
|
|
15039
15059
|
flex: 1 1 auto;
|
|
15040
15060
|
display: flex;
|
|
15041
15061
|
flex-flow: inherit;
|
|
@@ -15043,6 +15063,9 @@ $slider-disabled-opacity: null !default;
|
|
|
15043
15063
|
touch-action: none;
|
|
15044
15064
|
|
|
15045
15065
|
.k-slider-items {
|
|
15066
|
+
margin: 0;
|
|
15067
|
+
padding: 0;
|
|
15068
|
+
list-style: none;
|
|
15046
15069
|
// For some reason, Safari does not understand `flex-basis: 100%`
|
|
15047
15070
|
// See telerik/kendo-themes#2197
|
|
15048
15071
|
// flex-basis: 100%;
|
|
@@ -15062,7 +15085,7 @@ $slider-disabled-opacity: null !default;
|
|
|
15062
15085
|
}
|
|
15063
15086
|
|
|
15064
15087
|
&-horizontal {
|
|
15065
|
-
|
|
15088
|
+
.k-slider-track-wrap {
|
|
15066
15089
|
height: 26px;
|
|
15067
15090
|
|
|
15068
15091
|
.k-slider-track {
|
|
@@ -15115,7 +15138,7 @@ $slider-disabled-opacity: null !default;
|
|
|
15115
15138
|
}
|
|
15116
15139
|
|
|
15117
15140
|
&-vertical {
|
|
15118
|
-
|
|
15141
|
+
.k-slider-track-wrap {
|
|
15119
15142
|
width: 26px;
|
|
15120
15143
|
|
|
15121
15144
|
.k-slider-track {
|
|
@@ -15367,6 +15390,21 @@ $slider-disabled-opacity: null !default;
|
|
|
15367
15390
|
margin-top: -$tooltip-callout-size / 2;
|
|
15368
15391
|
}
|
|
15369
15392
|
}
|
|
15393
|
+
|
|
15394
|
+
|
|
15395
|
+
// Angular specific
|
|
15396
|
+
.k-slider kendo-resize-sensor {
|
|
15397
|
+
position: absolute;
|
|
15398
|
+
}
|
|
15399
|
+
.k-slider-horizontal .k-slider-wrap:not(.k-slider-buttons) {
|
|
15400
|
+
padding-left: calc( #{$slider-draghandle-size} / 2 );
|
|
15401
|
+
padding-right: calc( #{$slider-draghandle-size} / 2 );
|
|
15402
|
+
}
|
|
15403
|
+
.k-slider-vertical .k-slider-wrap:not(.k-slider-buttons) {
|
|
15404
|
+
padding-top: calc( #{$slider-draghandle-size} / 2 );
|
|
15405
|
+
padding-bottom: calc( #{$slider-draghandle-size} / 2 );
|
|
15406
|
+
}
|
|
15407
|
+
|
|
15370
15408
|
}
|
|
15371
15409
|
|
|
15372
15410
|
// #endregion
|
|
@@ -16520,6 +16558,7 @@ $time-list-focused-bg: rgba(0, 0, 0, .04) !default;
|
|
|
16520
16558
|
flex: 1;
|
|
16521
16559
|
position: relative;
|
|
16522
16560
|
z-index: 1;
|
|
16561
|
+
outline: 0;
|
|
16523
16562
|
overflow: hidden;
|
|
16524
16563
|
|
|
16525
16564
|
&::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-classic",
|
|
3
3
|
"description": "Sass port of less based themes for 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": [
|
|
@@ -50,7 +50,7 @@
|
|
|
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
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "634466e18a3f771f8e1da5dc5efdefca1f4fd344"
|
|
56
56
|
}
|
|
@@ -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;
|