@progress/kendo-theme-default 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 -39
- package/dist/all.scss +62 -23
- package/package.json +2 -2
- package/scss/button/_layout.scss +20 -1
- package/scss/button/_variables.scss +6 -3
- package/scss/list/_layout.scss +0 -15
- package/scss/slider/_layout.scss +35 -4
- package/scss/timeselector/_layout.scss +1 -0
package/dist/all.css
CHANGED
|
@@ -10784,15 +10784,6 @@ kendo-list > .k-group-header,
|
|
|
10784
10784
|
width: 100%;
|
|
10785
10785
|
}
|
|
10786
10786
|
|
|
10787
|
-
.k-dropdown-button .k-popup .k-item {
|
|
10788
|
-
cursor: pointer;
|
|
10789
|
-
}
|
|
10790
|
-
|
|
10791
|
-
.k-split-button .k-list .k-item:focus,
|
|
10792
|
-
.k-dropdown-button .k-list .k-item:focus {
|
|
10793
|
-
outline: none;
|
|
10794
|
-
}
|
|
10795
|
-
|
|
10796
10787
|
.k-virtual-content {
|
|
10797
10788
|
overflow-y: scroll;
|
|
10798
10789
|
-webkit-overflow-scrolling: touch;
|
|
@@ -13464,6 +13455,20 @@ kendo-badge-container {
|
|
|
13464
13455
|
position: relative;
|
|
13465
13456
|
}
|
|
13466
13457
|
|
|
13458
|
+
.k-button-arrow {
|
|
13459
|
+
padding-left: 4px;
|
|
13460
|
+
padding-right: 4px;
|
|
13461
|
+
flex: none;
|
|
13462
|
+
display: inline-flex;
|
|
13463
|
+
align-items: center;
|
|
13464
|
+
justify-content: center;
|
|
13465
|
+
}
|
|
13466
|
+
|
|
13467
|
+
.k-button > .k-button-arrow {
|
|
13468
|
+
margin-inline-start: -4px;
|
|
13469
|
+
margin-inline-end: -8px;
|
|
13470
|
+
}
|
|
13471
|
+
|
|
13467
13472
|
.k-text-button > .k-icon,
|
|
13468
13473
|
.k-text-button > .k-button-icon {
|
|
13469
13474
|
display: none;
|
|
@@ -13489,6 +13494,11 @@ kendo-badge-container {
|
|
|
13489
13494
|
min-height: 20.0000000004px;
|
|
13490
13495
|
}
|
|
13491
13496
|
|
|
13497
|
+
.k-icon-button > .k-button-arrow {
|
|
13498
|
+
margin-inline-start: 0;
|
|
13499
|
+
margin-inline-end: -4px;
|
|
13500
|
+
}
|
|
13501
|
+
|
|
13492
13502
|
.k-button.k-button-icon {
|
|
13493
13503
|
padding: 4px;
|
|
13494
13504
|
width: calc(1.4285714286em + 10px);
|
|
@@ -13574,7 +13584,7 @@ kendo-badge-container {
|
|
|
13574
13584
|
}
|
|
13575
13585
|
|
|
13576
13586
|
.k-split-button .k-split-button-arrow {
|
|
13577
|
-
padding: 4px;
|
|
13587
|
+
padding: 4px 4px;
|
|
13578
13588
|
width: auto;
|
|
13579
13589
|
flex: none;
|
|
13580
13590
|
}
|
|
@@ -13730,7 +13740,9 @@ kendo-badge-container {
|
|
|
13730
13740
|
}
|
|
13731
13741
|
|
|
13732
13742
|
.k-button.k-state-selected {
|
|
13733
|
-
|
|
13743
|
+
border-color: #ff6358;
|
|
13744
|
+
color: white;
|
|
13745
|
+
background-color: #ff6358;
|
|
13734
13746
|
}
|
|
13735
13747
|
|
|
13736
13748
|
.k-button-solid.k-button-solid-primary, .k-button-solid.k-button.k-primary {
|
|
@@ -16367,17 +16379,28 @@ textarea.k-textarea {
|
|
|
16367
16379
|
right: 0;
|
|
16368
16380
|
}
|
|
16369
16381
|
|
|
16382
|
+
.k-slider-wrap {
|
|
16383
|
+
width: 100%;
|
|
16384
|
+
height: 100%;
|
|
16385
|
+
box-sizing: border-box;
|
|
16386
|
+
display: flex;
|
|
16387
|
+
flex-flow: inherit;
|
|
16388
|
+
align-items: inherit;
|
|
16389
|
+
gap: inherit;
|
|
16390
|
+
position: relative;
|
|
16391
|
+
}
|
|
16392
|
+
|
|
16370
16393
|
.k-slider {
|
|
16371
16394
|
width: min-content;
|
|
16372
16395
|
height: min-content;
|
|
16373
16396
|
gap: 7px;
|
|
16374
16397
|
}
|
|
16375
16398
|
|
|
16376
|
-
.k-slider
|
|
16399
|
+
.k-slider .k-button {
|
|
16377
16400
|
flex: none;
|
|
16378
16401
|
}
|
|
16379
16402
|
|
|
16380
|
-
.k-slider
|
|
16403
|
+
.k-slider .k-slider-track-wrap {
|
|
16381
16404
|
flex: 1 1 auto;
|
|
16382
16405
|
display: flex;
|
|
16383
16406
|
flex-flow: inherit;
|
|
@@ -16385,7 +16408,10 @@ textarea.k-textarea {
|
|
|
16385
16408
|
touch-action: none;
|
|
16386
16409
|
}
|
|
16387
16410
|
|
|
16388
|
-
.k-slider
|
|
16411
|
+
.k-slider .k-slider-track-wrap .k-slider-items {
|
|
16412
|
+
margin: 0;
|
|
16413
|
+
padding: 0;
|
|
16414
|
+
list-style: none;
|
|
16389
16415
|
flex: 1 1 100%;
|
|
16390
16416
|
display: flex;
|
|
16391
16417
|
flex-flow: inherit;
|
|
@@ -16395,97 +16421,97 @@ textarea.k-textarea {
|
|
|
16395
16421
|
user-select: none;
|
|
16396
16422
|
}
|
|
16397
16423
|
|
|
16398
|
-
.k-slider
|
|
16424
|
+
.k-slider .k-slider-track-wrap .k-tick {
|
|
16399
16425
|
flex: 0 0 1px;
|
|
16400
16426
|
}
|
|
16401
16427
|
|
|
16402
|
-
.k-slider
|
|
16428
|
+
.k-slider .k-slider-track-wrap .k-draghandle {
|
|
16403
16429
|
position: absolute;
|
|
16404
16430
|
}
|
|
16405
16431
|
|
|
16406
|
-
.k-slider-horizontal
|
|
16432
|
+
.k-slider-horizontal .k-slider-track-wrap {
|
|
16407
16433
|
height: 26px;
|
|
16408
16434
|
}
|
|
16409
16435
|
|
|
16410
|
-
.k-slider-horizontal
|
|
16436
|
+
.k-slider-horizontal .k-slider-track-wrap .k-slider-track {
|
|
16411
16437
|
width: 100%;
|
|
16412
16438
|
}
|
|
16413
16439
|
|
|
16414
|
-
.k-slider-horizontal
|
|
16440
|
+
.k-slider-horizontal .k-slider-track-wrap .k-draghandle {
|
|
16415
16441
|
top: 50%;
|
|
16416
16442
|
transform: translate(-50%, -50%);
|
|
16417
16443
|
}
|
|
16418
16444
|
|
|
16419
|
-
.k-slider-horizontal
|
|
16420
|
-
.k-slider-horizontal
|
|
16445
|
+
.k-slider-horizontal .k-slider-track-wrap .k-draghandle:focus,
|
|
16446
|
+
.k-slider-horizontal .k-slider-track-wrap .k-draghandle:active {
|
|
16421
16447
|
transform: translate(-50%, -50%) scale(1);
|
|
16422
16448
|
}
|
|
16423
16449
|
|
|
16424
|
-
.k-slider-horizontal
|
|
16450
|
+
.k-slider-horizontal .k-slider-track-wrap .k-slider-selection {
|
|
16425
16451
|
width: calc((var(--kendo-slider-end, 0) - var(--kendo-slider-start, 0))*1%);
|
|
16426
16452
|
left: calc(var(--kendo-slider-start, 0)*1%);
|
|
16427
16453
|
}
|
|
16428
16454
|
|
|
16429
|
-
.k-slider-horizontal
|
|
16455
|
+
.k-slider-horizontal .k-slider-track-wrap .k-draghandle-start {
|
|
16430
16456
|
left: calc(var(--kendo-slider-start, 0)*1%);
|
|
16431
16457
|
}
|
|
16432
16458
|
|
|
16433
|
-
.k-slider-horizontal
|
|
16459
|
+
.k-slider-horizontal .k-slider-track-wrap .k-draghandle-end {
|
|
16434
16460
|
left: calc(var(--kendo-slider-end, 0)*1%);
|
|
16435
16461
|
}
|
|
16436
16462
|
|
|
16437
|
-
[dir="rtl"] .k-slider-horizontal
|
|
16463
|
+
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-slider-selection {
|
|
16438
16464
|
left: unset;
|
|
16439
16465
|
right: calc(var(--kendo-slider-start, 0)*1%);
|
|
16440
16466
|
}
|
|
16441
16467
|
|
|
16442
|
-
[dir="rtl"] .k-slider-horizontal
|
|
16468
|
+
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle-start {
|
|
16443
16469
|
left: unset;
|
|
16444
16470
|
right: calc(var(--kendo-slider-start, 0)*1%);
|
|
16445
16471
|
}
|
|
16446
16472
|
|
|
16447
|
-
[dir="rtl"] .k-slider-horizontal
|
|
16473
|
+
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle-end {
|
|
16448
16474
|
left: unset;
|
|
16449
16475
|
right: calc(var(--kendo-slider-end, 0)*1%);
|
|
16450
16476
|
}
|
|
16451
16477
|
|
|
16452
|
-
[dir="rtl"] .k-slider-horizontal
|
|
16478
|
+
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle {
|
|
16453
16479
|
transform: translate(50%, -50%);
|
|
16454
16480
|
}
|
|
16455
16481
|
|
|
16456
|
-
[dir="rtl"] .k-slider-horizontal
|
|
16457
|
-
[dir="rtl"] .k-slider-horizontal
|
|
16482
|
+
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle:focus,
|
|
16483
|
+
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle:active {
|
|
16458
16484
|
transform: translate(50%, -50%) scale(1);
|
|
16459
16485
|
}
|
|
16460
16486
|
|
|
16461
|
-
.k-slider-vertical
|
|
16487
|
+
.k-slider-vertical .k-slider-track-wrap {
|
|
16462
16488
|
width: 26px;
|
|
16463
16489
|
}
|
|
16464
16490
|
|
|
16465
|
-
.k-slider-vertical
|
|
16491
|
+
.k-slider-vertical .k-slider-track-wrap .k-slider-track {
|
|
16466
16492
|
height: 100%;
|
|
16467
16493
|
}
|
|
16468
16494
|
|
|
16469
|
-
.k-slider-vertical
|
|
16495
|
+
.k-slider-vertical .k-slider-track-wrap .k-draghandle {
|
|
16470
16496
|
left: 50%;
|
|
16471
16497
|
transform: translate(-50%, 50%);
|
|
16472
16498
|
}
|
|
16473
16499
|
|
|
16474
|
-
.k-slider-vertical
|
|
16475
|
-
.k-slider-vertical
|
|
16500
|
+
.k-slider-vertical .k-slider-track-wrap .k-draghandle:focus,
|
|
16501
|
+
.k-slider-vertical .k-slider-track-wrap .k-draghandle:active {
|
|
16476
16502
|
transform: translate(-50%, 50%) scale(1);
|
|
16477
16503
|
}
|
|
16478
16504
|
|
|
16479
|
-
.k-slider-vertical
|
|
16505
|
+
.k-slider-vertical .k-slider-track-wrap .k-slider-selection {
|
|
16480
16506
|
bottom: calc(var(--kendo-slider-start, 0)*1%);
|
|
16481
16507
|
height: calc((var(--kendo-slider-end, 0) - var(--kendo-slider-start, 0))*1%);
|
|
16482
16508
|
}
|
|
16483
16509
|
|
|
16484
|
-
.k-slider-vertical
|
|
16510
|
+
.k-slider-vertical .k-slider-track-wrap .k-draghandle-start {
|
|
16485
16511
|
bottom: calc(var(--kendo-slider-start, 0)*1%);
|
|
16486
16512
|
}
|
|
16487
16513
|
|
|
16488
|
-
.k-slider-vertical
|
|
16514
|
+
.k-slider-vertical .k-slider-track-wrap .k-draghandle-end {
|
|
16489
16515
|
bottom: calc(var(--kendo-slider-end, 0)*1%);
|
|
16490
16516
|
}
|
|
16491
16517
|
|
|
@@ -16801,6 +16827,20 @@ textarea.k-textarea {
|
|
|
16801
16827
|
margin-top: -3px;
|
|
16802
16828
|
}
|
|
16803
16829
|
|
|
16830
|
+
.k-slider kendo-resize-sensor {
|
|
16831
|
+
position: absolute;
|
|
16832
|
+
}
|
|
16833
|
+
|
|
16834
|
+
.k-slider-horizontal .k-slider-wrap:not(.k-slider-buttons) {
|
|
16835
|
+
padding-left: 7px;
|
|
16836
|
+
padding-right: 7px;
|
|
16837
|
+
}
|
|
16838
|
+
|
|
16839
|
+
.k-slider-vertical .k-slider-wrap:not(.k-slider-buttons) {
|
|
16840
|
+
padding-top: 7px;
|
|
16841
|
+
padding-bottom: 7px;
|
|
16842
|
+
}
|
|
16843
|
+
|
|
16804
16844
|
.k-slider {
|
|
16805
16845
|
color: #424242;
|
|
16806
16846
|
}
|
|
@@ -17551,6 +17591,7 @@ textarea.k-textarea {
|
|
|
17551
17591
|
flex: 1;
|
|
17552
17592
|
position: relative;
|
|
17553
17593
|
z-index: 1;
|
|
17594
|
+
outline: 0;
|
|
17554
17595
|
overflow: hidden;
|
|
17555
17596
|
}
|
|
17556
17597
|
|
|
@@ -33870,7 +33911,9 @@ ul.k-scheduler-views li:hover, ul.k-scheduler-views li.k-state-hover {
|
|
|
33870
33911
|
}
|
|
33871
33912
|
|
|
33872
33913
|
ul.k-scheduler-views li.k-state-selected {
|
|
33873
|
-
|
|
33914
|
+
border-color: #ff6358;
|
|
33915
|
+
color: white;
|
|
33916
|
+
background-color: #ff6358;
|
|
33874
33917
|
}
|
|
33875
33918
|
|
|
33876
33919
|
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
|
@@ -6597,21 +6597,6 @@ $checkbox-ripple-opacity: .25 !default;
|
|
|
6597
6597
|
}
|
|
6598
6598
|
}
|
|
6599
6599
|
|
|
6600
|
-
.k-dropdown-button .k-popup {
|
|
6601
|
-
.k-item {
|
|
6602
|
-
cursor: pointer;
|
|
6603
|
-
}
|
|
6604
|
-
}
|
|
6605
|
-
|
|
6606
|
-
// SplitButton
|
|
6607
|
-
// TODO: Wait for final design + revise
|
|
6608
|
-
.k-split-button,
|
|
6609
|
-
.k-dropdown-button {
|
|
6610
|
-
.k-list .k-item:focus {
|
|
6611
|
-
outline: none;
|
|
6612
|
-
}
|
|
6613
|
-
}
|
|
6614
|
-
|
|
6615
6600
|
.k-virtual-content {
|
|
6616
6601
|
overflow-y: scroll;
|
|
6617
6602
|
-webkit-overflow-scrolling: touch;
|
|
@@ -7350,6 +7335,9 @@ $button-calc-size: calc( #{$button-line-height * 1em} + #{$button-padding-y * 2}
|
|
|
7350
7335
|
/// @group button
|
|
7351
7336
|
$button-inner-calc-size: calc( #{$button-line-height * 1em} + #{$button-padding-y * 2} ) !default;
|
|
7352
7337
|
|
|
7338
|
+
$button-arrow-padding-x: $button-padding-y !default;
|
|
7339
|
+
$button-arrow-padding-y: $button-padding-y !default;
|
|
7340
|
+
|
|
7353
7341
|
/// Theme colors map for the button.
|
|
7354
7342
|
/// @group button
|
|
7355
7343
|
$button-theme-colors: (
|
|
@@ -7409,13 +7397,13 @@ $button-active-shadow: null !default;
|
|
|
7409
7397
|
|
|
7410
7398
|
/// The background color of selected buttons.
|
|
7411
7399
|
/// @group button
|
|
7412
|
-
$button-selected-bg: $
|
|
7400
|
+
$button-selected-bg: $primary !default;
|
|
7413
7401
|
/// The text color of selected buttons.
|
|
7414
7402
|
/// @group button
|
|
7415
|
-
$button-selected-text: $button-
|
|
7403
|
+
$button-selected-text: contrast-wcag( $button-selected-bg ) !default;
|
|
7416
7404
|
/// The border color of selected buttons.
|
|
7417
7405
|
/// @group button
|
|
7418
|
-
$button-selected-border: $button-
|
|
7406
|
+
$button-selected-border: $button-selected-bg !default;
|
|
7419
7407
|
/// The background gradient of selected buttons.
|
|
7420
7408
|
/// @group button
|
|
7421
7409
|
$button-selected-gradient: null !default;
|
|
@@ -11199,6 +11187,21 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
11199
11187
|
.k-button .k-button-text {}
|
|
11200
11188
|
|
|
11201
11189
|
|
|
11190
|
+
// Button arrow
|
|
11191
|
+
.k-button-arrow {
|
|
11192
|
+
padding-left: $button-arrow-padding-y;
|
|
11193
|
+
padding-right: $button-arrow-padding-y;
|
|
11194
|
+
flex: none;
|
|
11195
|
+
display: inline-flex;
|
|
11196
|
+
align-items: center;
|
|
11197
|
+
justify-content: center;
|
|
11198
|
+
}
|
|
11199
|
+
.k-button > .k-button-arrow {
|
|
11200
|
+
margin-inline-start: -$button-padding-y;
|
|
11201
|
+
margin-inline-end: -$button-padding-x;
|
|
11202
|
+
}
|
|
11203
|
+
|
|
11204
|
+
|
|
11202
11205
|
// Text button
|
|
11203
11206
|
.k-text-button {
|
|
11204
11207
|
|
|
@@ -11226,6 +11229,10 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
11226
11229
|
min-height: calc( #{$button-font-size} * #{$button-line-height} );
|
|
11227
11230
|
}
|
|
11228
11231
|
}
|
|
11232
|
+
.k-icon-button > .k-button-arrow {
|
|
11233
|
+
margin-inline-start: 0;
|
|
11234
|
+
margin-inline-end: -$button-padding-y;
|
|
11235
|
+
}
|
|
11229
11236
|
// TODO: REMOVE
|
|
11230
11237
|
.k-button.k-button-icon {
|
|
11231
11238
|
padding: $button-padding-y;
|
|
@@ -11324,7 +11331,7 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
11324
11331
|
vertical-align: middle;
|
|
11325
11332
|
|
|
11326
11333
|
.k-split-button-arrow {
|
|
11327
|
-
padding: $button-padding-y;
|
|
11334
|
+
padding: $button-arrow-padding-y $button-arrow-padding-x;
|
|
11328
11335
|
width: auto;
|
|
11329
11336
|
flex: none;
|
|
11330
11337
|
|
|
@@ -14779,16 +14786,29 @@ $slider-disabled-opacity: null !default;
|
|
|
14779
14786
|
}
|
|
14780
14787
|
|
|
14781
14788
|
|
|
14789
|
+
// Slider wrap
|
|
14790
|
+
.k-slider-wrap {
|
|
14791
|
+
width: 100%;
|
|
14792
|
+
height: 100%;
|
|
14793
|
+
box-sizing: border-box;
|
|
14794
|
+
display: flex;
|
|
14795
|
+
flex-flow: inherit;
|
|
14796
|
+
align-items: inherit;
|
|
14797
|
+
gap: inherit;
|
|
14798
|
+
position: relative;
|
|
14799
|
+
}
|
|
14800
|
+
|
|
14801
|
+
|
|
14782
14802
|
// New rendering
|
|
14783
14803
|
.k-slider {
|
|
14784
14804
|
width: min-content;
|
|
14785
14805
|
height: min-content;
|
|
14786
14806
|
gap: calc( #{$slider-draghandle-size} / 2 );
|
|
14787
14807
|
|
|
14788
|
-
|
|
14808
|
+
.k-button {
|
|
14789
14809
|
flex: none;
|
|
14790
14810
|
}
|
|
14791
|
-
|
|
14811
|
+
.k-slider-track-wrap {
|
|
14792
14812
|
flex: 1 1 auto;
|
|
14793
14813
|
display: flex;
|
|
14794
14814
|
flex-flow: inherit;
|
|
@@ -14796,6 +14816,9 @@ $slider-disabled-opacity: null !default;
|
|
|
14796
14816
|
touch-action: none;
|
|
14797
14817
|
|
|
14798
14818
|
.k-slider-items {
|
|
14819
|
+
margin: 0;
|
|
14820
|
+
padding: 0;
|
|
14821
|
+
list-style: none;
|
|
14799
14822
|
// For some reason, Safari does not understand `flex-basis: 100%`
|
|
14800
14823
|
// See telerik/kendo-themes#2197
|
|
14801
14824
|
// flex-basis: 100%;
|
|
@@ -14815,7 +14838,7 @@ $slider-disabled-opacity: null !default;
|
|
|
14815
14838
|
}
|
|
14816
14839
|
|
|
14817
14840
|
&-horizontal {
|
|
14818
|
-
|
|
14841
|
+
.k-slider-track-wrap {
|
|
14819
14842
|
height: 26px;
|
|
14820
14843
|
|
|
14821
14844
|
.k-slider-track {
|
|
@@ -14868,7 +14891,7 @@ $slider-disabled-opacity: null !default;
|
|
|
14868
14891
|
}
|
|
14869
14892
|
|
|
14870
14893
|
&-vertical {
|
|
14871
|
-
|
|
14894
|
+
.k-slider-track-wrap {
|
|
14872
14895
|
width: 26px;
|
|
14873
14896
|
|
|
14874
14897
|
.k-slider-track {
|
|
@@ -15120,6 +15143,21 @@ $slider-disabled-opacity: null !default;
|
|
|
15120
15143
|
margin-top: -$tooltip-callout-size / 2;
|
|
15121
15144
|
}
|
|
15122
15145
|
}
|
|
15146
|
+
|
|
15147
|
+
|
|
15148
|
+
// Angular specific
|
|
15149
|
+
.k-slider kendo-resize-sensor {
|
|
15150
|
+
position: absolute;
|
|
15151
|
+
}
|
|
15152
|
+
.k-slider-horizontal .k-slider-wrap:not(.k-slider-buttons) {
|
|
15153
|
+
padding-left: calc( #{$slider-draghandle-size} / 2 );
|
|
15154
|
+
padding-right: calc( #{$slider-draghandle-size} / 2 );
|
|
15155
|
+
}
|
|
15156
|
+
.k-slider-vertical .k-slider-wrap:not(.k-slider-buttons) {
|
|
15157
|
+
padding-top: calc( #{$slider-draghandle-size} / 2 );
|
|
15158
|
+
padding-bottom: calc( #{$slider-draghandle-size} / 2 );
|
|
15159
|
+
}
|
|
15160
|
+
|
|
15123
15161
|
}
|
|
15124
15162
|
|
|
15125
15163
|
// #endregion
|
|
@@ -16261,6 +16299,7 @@ $time-list-focused-bg: rgba(0, 0, 0, .04) !default;
|
|
|
16261
16299
|
flex: 1;
|
|
16262
16300
|
position: relative;
|
|
16263
16301
|
z-index: 1;
|
|
16302
|
+
outline: 0;
|
|
16264
16303
|
overflow: hidden;
|
|
16265
16304
|
|
|
16266
16305
|
&::before,
|
package/package.json
CHANGED
|
@@ -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
|
}
|
package/scss/button/_layout.scss
CHANGED
|
@@ -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;
|
package/scss/list/_layout.scss
CHANGED
|
@@ -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;
|
package/scss/slider/_layout.scss
CHANGED
|
@@ -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
|
}
|