@progress/kendo-theme-bootstrap 5.8.2-dev.5 → 5.8.2-dev.6
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 +177 -22
- package/dist/all.scss +248 -59
- package/lib/swatches/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-3.json +1 -1
- package/lib/swatches/bootstrap-4-dark.json +1 -1
- package/lib/swatches/bootstrap-4.json +1 -1
- package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +1 -1
- package/lib/swatches/bootstrap-main.json +1 -1
- package/lib/swatches/bootstrap-nordic.json +1 -1
- package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
- package/lib/swatches/bootstrap-turquoise.json +1 -1
- package/lib/swatches/bootstrap-urban.json +1 -1
- package/lib/swatches/bootstrap-vintage.json +1 -1
- package/package.json +4 -4
- package/scss/action-sheet/_variables.scss +31 -12
package/dist/all.scss
CHANGED
|
@@ -7578,6 +7578,27 @@ $utils-border-radius: (
|
|
|
7578
7578
|
}
|
|
7579
7579
|
}
|
|
7580
7580
|
|
|
7581
|
+
// Icon wrap
|
|
7582
|
+
.k-icon-wrap {
|
|
7583
|
+
flex: none;
|
|
7584
|
+
display: inline-flex;
|
|
7585
|
+
flex-flow: row nowrap;
|
|
7586
|
+
gap: 0;
|
|
7587
|
+
align-items: center;
|
|
7588
|
+
align-self: flex-start;
|
|
7589
|
+
vertical-align: middle;
|
|
7590
|
+
position: relative;
|
|
7591
|
+
|
|
7592
|
+
&::before {
|
|
7593
|
+
content: "\200b";
|
|
7594
|
+
width: 0;
|
|
7595
|
+
overflow: hidden;
|
|
7596
|
+
flex: none;
|
|
7597
|
+
display: inline-block;
|
|
7598
|
+
vertical-align: top;
|
|
7599
|
+
}
|
|
7600
|
+
}
|
|
7601
|
+
|
|
7581
7602
|
.k-icon {
|
|
7582
7603
|
width: 1em;
|
|
7583
7604
|
height: 1em;
|
|
@@ -9576,6 +9597,17 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
9576
9597
|
// #region @import "~@progress/kendo-theme-default/scss/list/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/list/_layout.scss
|
|
9577
9598
|
@include exports( "list/layout" ) {
|
|
9578
9599
|
|
|
9600
|
+
// List container
|
|
9601
|
+
.k-list-container {
|
|
9602
|
+
display: flex;
|
|
9603
|
+
flex-flow: column nowrap;
|
|
9604
|
+
|
|
9605
|
+
> .k-list {
|
|
9606
|
+
flex: 1;
|
|
9607
|
+
height: 100%;
|
|
9608
|
+
}
|
|
9609
|
+
}
|
|
9610
|
+
|
|
9579
9611
|
// List
|
|
9580
9612
|
.k-list {
|
|
9581
9613
|
margin: 0;
|
|
@@ -9756,7 +9788,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
9756
9788
|
position: relative;
|
|
9757
9789
|
padding: $padding-x;
|
|
9758
9790
|
box-sizing: border-box;
|
|
9759
|
-
flex:
|
|
9791
|
+
flex: none;
|
|
9760
9792
|
}
|
|
9761
9793
|
|
|
9762
9794
|
|
|
@@ -20568,6 +20600,7 @@ $kendo-time-selector-sizes: (
|
|
|
20568
20600
|
display: flex;
|
|
20569
20601
|
position: relative;
|
|
20570
20602
|
flex: 1 1 auto;
|
|
20603
|
+
overflow: hidden;
|
|
20571
20604
|
}
|
|
20572
20605
|
|
|
20573
20606
|
|
|
@@ -25241,7 +25274,8 @@ $actionsheet-padding-x: null !default;
|
|
|
25241
25274
|
$actionsheet-padding-y: null !default;
|
|
25242
25275
|
$actionsheet-width: 360px !default;
|
|
25243
25276
|
$actionsheet-max-width: 100% !default;
|
|
25244
|
-
$actionsheet-
|
|
25277
|
+
$actionsheet-height: 60vh !default;
|
|
25278
|
+
$actionsheet-max-height: 60vh !default;
|
|
25245
25279
|
|
|
25246
25280
|
$actionsheet-border-width: 0px !default;
|
|
25247
25281
|
$actionsheet-border-radius: 0px !default;
|
|
@@ -25257,18 +25291,23 @@ $actionsheet-shadow: 0 8px 10px -5px rgba( black, .2 ), 0 16px 24px 2px rgba( bl
|
|
|
25257
25291
|
|
|
25258
25292
|
|
|
25259
25293
|
// Actionsheet header
|
|
25260
|
-
$actionsheet-
|
|
25261
|
-
$actionsheet-
|
|
25262
|
-
$actionsheet-
|
|
25263
|
-
$actionsheet-
|
|
25264
|
-
$actionsheet-
|
|
25265
|
-
$actionsheet-
|
|
25294
|
+
$actionsheet-titlebar-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
25295
|
+
$actionsheet-titlebar-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
25296
|
+
$actionsheet-titlebar-border-width: null !default;
|
|
25297
|
+
$actionsheet-titlebar-font-size: null !default;
|
|
25298
|
+
$actionsheet-titlebar-font-family: null !default;
|
|
25299
|
+
$actionsheet-titlebar-line-height: null !default;
|
|
25300
|
+
$actionsheet-titlebar-gap: k-map-get( $spacing, 4 ) !default;
|
|
25301
|
+
|
|
25302
|
+
$actionsheet-titlebar-bg: null !default;
|
|
25303
|
+
$actionsheet-titlebar-text: null !default;
|
|
25304
|
+
$actionsheet-titlebar-border: null !default;
|
|
25305
|
+
$actionsheet-titlebar-gradient: null !default;
|
|
25306
|
+
$actionsheet-titlebar-shadow: null !default;
|
|
25266
25307
|
|
|
25267
|
-
$actionsheet-
|
|
25268
|
-
$actionsheet-
|
|
25269
|
-
$actionsheet-
|
|
25270
|
-
$actionsheet-header-gradient: null !default;
|
|
25271
|
-
$actionsheet-header-shadow: null !default;
|
|
25308
|
+
$actionsheet-subtitle-font-size: $font-size-sm !default;
|
|
25309
|
+
$actionsheet-subtitle-line-height: $line-height-sm !default;
|
|
25310
|
+
$actionsheet-subtitle-text: $subtle-text !default;
|
|
25272
25311
|
|
|
25273
25312
|
|
|
25274
25313
|
// Actionsheet item
|
|
@@ -25304,27 +25343,86 @@ $actionsheet-item-disabled-border: null !default;
|
|
|
25304
25343
|
$actionsheet-item-disabled-gradient: null !default;
|
|
25305
25344
|
$actionsheet-item-disabled-shadow: null !default;
|
|
25306
25345
|
|
|
25346
|
+
|
|
25347
|
+
// Adaptive Actionsheet
|
|
25348
|
+
$adaptive-actionsheet-titlebar-border-width: 1px !default;
|
|
25349
|
+
$adaptive-actionsheet-titlebar-padding-y: k-map-get( $spacing, 4 ) !default;
|
|
25350
|
+
$adaptive-actionsheet-titlebar-padding-x: $adaptive-actionsheet-titlebar-padding-y !default;
|
|
25351
|
+
$adaptive-actionsheet-titlebar-border: $component-border !default;
|
|
25352
|
+
|
|
25353
|
+
$adaptive-actionsheet-content-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
25354
|
+
$adaptive-actionsheet-content-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
25355
|
+
|
|
25356
|
+
$adaptive-actionsheet-footer-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
25357
|
+
$adaptive-actionsheet-footer-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
25358
|
+
|
|
25307
25359
|
// #endregion
|
|
25308
25360
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/action-sheet/_layout.scss
|
|
25309
25361
|
// #region @import "~@progress/kendo-theme-default/scss/action-sheet/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/action-sheet/_layout.scss
|
|
25310
25362
|
@include exports("action-sheet/layout") {
|
|
25311
25363
|
|
|
25364
|
+
// Action sheet container
|
|
25312
25365
|
.k-actionsheet-container {
|
|
25313
|
-
width:
|
|
25314
|
-
height:
|
|
25366
|
+
width: 100%;
|
|
25367
|
+
height: 100%;
|
|
25368
|
+
max-width: unquote("max(100%, 100vw)");
|
|
25369
|
+
max-height: unquote("max(100%, 100vh)");
|
|
25315
25370
|
position: fixed;
|
|
25316
25371
|
top: 0;
|
|
25317
25372
|
left: 0;
|
|
25318
25373
|
z-index: 9999;
|
|
25319
25374
|
overflow: hidden;
|
|
25375
|
+
transform: translateZ(0);
|
|
25320
25376
|
}
|
|
25321
25377
|
|
|
25378
|
+
|
|
25379
|
+
// Animation container
|
|
25380
|
+
.k-actionsheet-container {
|
|
25381
|
+
|
|
25382
|
+
// Overlay
|
|
25383
|
+
> .k-overlay {
|
|
25384
|
+
position: absolute;
|
|
25385
|
+
z-index: 1;
|
|
25386
|
+
}
|
|
25387
|
+
|
|
25388
|
+
// Nested animation container
|
|
25389
|
+
> .k-animation-container {
|
|
25390
|
+
width: 100%;
|
|
25391
|
+
height: 100%;
|
|
25392
|
+
border-radius: 0;
|
|
25393
|
+
overflow: hidden;
|
|
25394
|
+
position: absolute;
|
|
25395
|
+
z-index: 2;
|
|
25396
|
+
top: 0;
|
|
25397
|
+
left: 0;
|
|
25398
|
+
pointer-events: none;
|
|
25399
|
+
|
|
25400
|
+
> .k-child-animation-container {
|
|
25401
|
+
position: absolute;
|
|
25402
|
+
}
|
|
25403
|
+
}
|
|
25404
|
+
|
|
25405
|
+
// No animation container
|
|
25406
|
+
> .k-actionsheet {
|
|
25407
|
+
position: absolute;
|
|
25408
|
+
z-index: 2;
|
|
25409
|
+
}
|
|
25410
|
+
|
|
25411
|
+
// Enable mouse events for action sheet
|
|
25412
|
+
.k-actionsheet {
|
|
25413
|
+
pointer-events: all;
|
|
25414
|
+
}
|
|
25415
|
+
}
|
|
25416
|
+
|
|
25417
|
+
|
|
25322
25418
|
// Actionsheet
|
|
25323
25419
|
.k-actionsheet {
|
|
25324
|
-
padding: $actionsheet-padding-y
|
|
25325
|
-
|
|
25326
|
-
|
|
25327
|
-
|
|
25420
|
+
padding-block: $actionsheet-padding-y;
|
|
25421
|
+
padding-inline: $actionsheet-padding-y;
|
|
25422
|
+
width: var( --kendo-actionsheet-width, #{$actionsheet-width} );
|
|
25423
|
+
height: var( --kendo-actionsheet-height, #{$actionsheet-height} );
|
|
25424
|
+
max-width: var( --kendo-actionsheet-max-width, #{$actionsheet-max-width} );
|
|
25425
|
+
max-height: var( --kendo-actionsheet-max-height, #{$actionsheet-max-height} );
|
|
25328
25426
|
border-width: 0;
|
|
25329
25427
|
border-style: solid;
|
|
25330
25428
|
border-color: transparent;
|
|
@@ -25332,10 +25430,8 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
25332
25430
|
font-size: $actionsheet-font-size;
|
|
25333
25431
|
font-family: $actionsheet-font-family;
|
|
25334
25432
|
line-height: $actionsheet-line-height;
|
|
25335
|
-
overflow
|
|
25336
|
-
|
|
25337
|
-
position: fixed;
|
|
25338
|
-
z-index: 10002;
|
|
25433
|
+
overflow: hidden;
|
|
25434
|
+
position: relative;
|
|
25339
25435
|
|
|
25340
25436
|
*,
|
|
25341
25437
|
*::before,
|
|
@@ -25343,37 +25439,37 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
25343
25439
|
box-sizing: border-box;
|
|
25344
25440
|
}
|
|
25345
25441
|
}
|
|
25346
|
-
.k-actionsheet-fullscreen {
|
|
25347
|
-
max-height: 100%;
|
|
25348
|
-
height: 100%;
|
|
25349
|
-
}
|
|
25350
25442
|
|
|
25351
25443
|
|
|
25352
|
-
// Actionsheet
|
|
25353
|
-
.k-actionsheet-
|
|
25354
|
-
padding: $actionsheet-
|
|
25444
|
+
// Actionsheet titlebar
|
|
25445
|
+
.k-actionsheet-titlebar {
|
|
25446
|
+
padding: $actionsheet-titlebar-padding-y $actionsheet-titlebar-padding-x;
|
|
25355
25447
|
border-width: 0;
|
|
25356
|
-
border-bottom-width: if( $actionsheet-
|
|
25448
|
+
border-bottom-width: if( $actionsheet-titlebar-border-width, $actionsheet-titlebar-border-width, null );
|
|
25357
25449
|
border-style: solid;
|
|
25358
25450
|
border-color: transparent;
|
|
25359
|
-
|
|
25360
|
-
font-
|
|
25361
|
-
|
|
25362
|
-
line-height: $actionsheet-header-line-height;
|
|
25451
|
+
font-size: $actionsheet-titlebar-font-size;
|
|
25452
|
+
font-family: $actionsheet-titlebar-font-family;
|
|
25453
|
+
line-height: $actionsheet-titlebar-line-height;
|
|
25363
25454
|
flex: none;
|
|
25455
|
+
display: flex;
|
|
25456
|
+
flex-flow: column nowrap;
|
|
25457
|
+
align-items: center;
|
|
25458
|
+
gap: $actionsheet-titlebar-gap;
|
|
25364
25459
|
}
|
|
25365
|
-
|
|
25366
|
-
|
|
25367
|
-
// Actionsheet titlebar
|
|
25368
|
-
.k-actionsheet-titlebar {
|
|
25369
|
-
@extend .k-actionsheet-header !optional;
|
|
25460
|
+
.k-actionsheet-titlebar-group {
|
|
25370
25461
|
display: flex;
|
|
25371
25462
|
flex-flow: row nowrap;
|
|
25372
25463
|
align-items: center;
|
|
25464
|
+
width: 100%;
|
|
25373
25465
|
}
|
|
25374
25466
|
.k-actionsheet-title {
|
|
25375
25467
|
flex: 1;
|
|
25376
25468
|
}
|
|
25469
|
+
.k-actionsheet-subtitle {
|
|
25470
|
+
font-size: $actionsheet-subtitle-font-size;
|
|
25471
|
+
line-height: $actionsheet-subtitle-line-height;
|
|
25472
|
+
}
|
|
25377
25473
|
.k-actionsheet-actions {
|
|
25378
25474
|
flex: none;
|
|
25379
25475
|
}
|
|
@@ -25383,6 +25479,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
25383
25479
|
.k-actionsheet-content {
|
|
25384
25480
|
flex: 1;
|
|
25385
25481
|
overflow: auto;
|
|
25482
|
+
position: relative;
|
|
25386
25483
|
}
|
|
25387
25484
|
|
|
25388
25485
|
|
|
@@ -25397,6 +25494,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
25397
25494
|
margin: 0;
|
|
25398
25495
|
padding: 0;
|
|
25399
25496
|
list-style: none;
|
|
25497
|
+
flex: none;
|
|
25400
25498
|
}
|
|
25401
25499
|
|
|
25402
25500
|
|
|
@@ -25415,7 +25513,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
25415
25513
|
outline: 0;
|
|
25416
25514
|
display: flex;
|
|
25417
25515
|
flex-flow: row nowrap;
|
|
25418
|
-
align-items:
|
|
25516
|
+
align-items: flex-start;
|
|
25419
25517
|
gap: $actionsheet-item-spacing;
|
|
25420
25518
|
}
|
|
25421
25519
|
.k-actionsheet-item-icon {
|
|
@@ -25438,6 +25536,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
25438
25536
|
.k-actionsheet > .k-hr {
|
|
25439
25537
|
margin: 0;
|
|
25440
25538
|
border-color: inherit;
|
|
25539
|
+
flex: none;
|
|
25441
25540
|
}
|
|
25442
25541
|
|
|
25443
25542
|
|
|
@@ -25474,6 +25573,12 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
25474
25573
|
top: 50%;
|
|
25475
25574
|
transform: translateY( -50% );
|
|
25476
25575
|
}
|
|
25576
|
+
.k-actionsheet-fullscreen {
|
|
25577
|
+
width: 100%;
|
|
25578
|
+
max-width: 100%;
|
|
25579
|
+
max-height: 100%;
|
|
25580
|
+
height: 100%;
|
|
25581
|
+
}
|
|
25477
25582
|
|
|
25478
25583
|
|
|
25479
25584
|
// Action sheet in popup
|
|
@@ -25495,6 +25600,28 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
25495
25600
|
display: flex;
|
|
25496
25601
|
flex-flow: column nowrap;
|
|
25497
25602
|
|
|
25603
|
+
.k-actionsheet-titlebar {
|
|
25604
|
+
padding: $adaptive-actionsheet-titlebar-padding-y $adaptive-actionsheet-titlebar-padding-x;
|
|
25605
|
+
border-bottom-width: $adaptive-actionsheet-titlebar-border-width;
|
|
25606
|
+
}
|
|
25607
|
+
|
|
25608
|
+
.k-actionsheet-content {
|
|
25609
|
+
padding: $adaptive-actionsheet-content-padding-y $adaptive-actionsheet-content-padding-x;
|
|
25610
|
+
}
|
|
25611
|
+
|
|
25612
|
+
.k-actionsheet-footer {
|
|
25613
|
+
padding: $adaptive-actionsheet-footer-padding-y $adaptive-actionsheet-footer-padding-x;
|
|
25614
|
+
}
|
|
25615
|
+
|
|
25616
|
+
.k-list-container,
|
|
25617
|
+
.k-treeview {
|
|
25618
|
+
height: 100%;
|
|
25619
|
+
}
|
|
25620
|
+
.k-list-filter {
|
|
25621
|
+
width: 100%;
|
|
25622
|
+
padding-inline: 0;
|
|
25623
|
+
}
|
|
25624
|
+
|
|
25498
25625
|
.k-calendar {
|
|
25499
25626
|
margin-inline: auto;
|
|
25500
25627
|
border-width: 0;
|
|
@@ -25514,6 +25641,58 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
25514
25641
|
height: 100%;
|
|
25515
25642
|
}
|
|
25516
25643
|
}
|
|
25644
|
+
|
|
25645
|
+
.k-datetime-wrap {
|
|
25646
|
+
width: 100%;
|
|
25647
|
+
height: 100%;
|
|
25648
|
+
display: flex;
|
|
25649
|
+
flex-flow: column nowrap;
|
|
25650
|
+
}
|
|
25651
|
+
.k-datetime-selector {
|
|
25652
|
+
flex: 1 1 auto;
|
|
25653
|
+
}
|
|
25654
|
+
|
|
25655
|
+
.k-datetime-calendar-wrap {
|
|
25656
|
+
width: 100%;
|
|
25657
|
+
position: absolute;
|
|
25658
|
+
top: 0;
|
|
25659
|
+
left: 0;
|
|
25660
|
+
bottom: 0;
|
|
25661
|
+
flex: 0 0 100%;
|
|
25662
|
+
}
|
|
25663
|
+
|
|
25664
|
+
.k-datetime-time-wrap {
|
|
25665
|
+
width: 100%;
|
|
25666
|
+
position: absolute;
|
|
25667
|
+
top: 0;
|
|
25668
|
+
left: 100%;
|
|
25669
|
+
bottom: 0;
|
|
25670
|
+
flex: 0 0 100%;
|
|
25671
|
+
}
|
|
25672
|
+
|
|
25673
|
+
.k-scrollable-wrap {
|
|
25674
|
+
height: 100%;
|
|
25675
|
+
overflow-y: auto;
|
|
25676
|
+
}
|
|
25677
|
+
}
|
|
25678
|
+
|
|
25679
|
+
}
|
|
25680
|
+
|
|
25681
|
+
@include exports("action-sheet/layout/legacy") {
|
|
25682
|
+
|
|
25683
|
+
.k-actionsheet-jq {
|
|
25684
|
+
&.k-actionsheet {
|
|
25685
|
+
height: auto;
|
|
25686
|
+
}
|
|
25687
|
+
|
|
25688
|
+
.k-actionsheet-header {
|
|
25689
|
+
@extend .k-actionsheet-titlebar !optional;
|
|
25690
|
+
align-items: flex-start;
|
|
25691
|
+
}
|
|
25692
|
+
|
|
25693
|
+
.k-actionsheet-action {
|
|
25694
|
+
align-items: center;
|
|
25695
|
+
}
|
|
25517
25696
|
}
|
|
25518
25697
|
|
|
25519
25698
|
}
|
|
@@ -25537,14 +25716,17 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
25537
25716
|
|
|
25538
25717
|
|
|
25539
25718
|
// Actionsheet header
|
|
25540
|
-
.k-actionsheet-
|
|
25719
|
+
.k-actionsheet-titlebar {
|
|
25541
25720
|
@include fill(
|
|
25542
|
-
$actionsheet-
|
|
25543
|
-
$actionsheet-
|
|
25544
|
-
$actionsheet-
|
|
25545
|
-
$actionsheet-
|
|
25721
|
+
$actionsheet-titlebar-text,
|
|
25722
|
+
$actionsheet-titlebar-bg,
|
|
25723
|
+
$actionsheet-titlebar-border,
|
|
25724
|
+
$actionsheet-titlebar-gradient
|
|
25546
25725
|
);
|
|
25547
|
-
@include box-shadow( $actionsheet-
|
|
25726
|
+
@include box-shadow( $actionsheet-titlebar-shadow );
|
|
25727
|
+
}
|
|
25728
|
+
.k-actionsheet-subtitle {
|
|
25729
|
+
@include fill( $color: $actionsheet-subtitle-text );
|
|
25548
25730
|
}
|
|
25549
25731
|
|
|
25550
25732
|
|
|
@@ -25553,17 +25735,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
25553
25735
|
|
|
25554
25736
|
|
|
25555
25737
|
// Actionsheet item
|
|
25556
|
-
.k-actionsheet-item {
|
|
25557
|
-
|
|
25558
|
-
|
|
25559
|
-
// Actionsheet item description
|
|
25560
|
-
.k-actionsheet-item-description {
|
|
25561
|
-
@include fill( $color: $actionsheet-item-description-text );
|
|
25562
|
-
}
|
|
25563
|
-
|
|
25564
|
-
|
|
25565
|
-
// Actionsheet action
|
|
25566
|
-
.k-actionsheet-action {
|
|
25738
|
+
.k-actionsheet-item {
|
|
25567
25739
|
|
|
25568
25740
|
|
|
25569
25741
|
// Hover state
|
|
@@ -25592,7 +25764,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
25592
25764
|
}
|
|
25593
25765
|
|
|
25594
25766
|
|
|
25595
|
-
//
|
|
25767
|
+
// Disabled state
|
|
25596
25768
|
&:disabled,
|
|
25597
25769
|
&.k-disabled {
|
|
25598
25770
|
@include fill(
|
|
@@ -25605,6 +25777,22 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
25605
25777
|
}
|
|
25606
25778
|
}
|
|
25607
25779
|
|
|
25780
|
+
|
|
25781
|
+
// Actionsheet item description
|
|
25782
|
+
.k-actionsheet-item-description {
|
|
25783
|
+
@include fill( $color: $actionsheet-item-description-text );
|
|
25784
|
+
}
|
|
25785
|
+
|
|
25786
|
+
|
|
25787
|
+
// Actionsheet action
|
|
25788
|
+
.k-actionsheet-action {}
|
|
25789
|
+
|
|
25790
|
+
|
|
25791
|
+
// Adaptive Actionsheet
|
|
25792
|
+
.k-adaptive-actionsheet .k-actionsheet-titlebar {
|
|
25793
|
+
@include fill( $border: $adaptive-actionsheet-titlebar-border );
|
|
25794
|
+
}
|
|
25795
|
+
|
|
25608
25796
|
}
|
|
25609
25797
|
|
|
25610
25798
|
// #endregion
|
|
@@ -45751,6 +45939,7 @@ $kendo-signature-maximized-line-width: k-map-get( $spacing, 1 ) - k-map-get( $sp
|
|
|
45751
45939
|
height: 100%;
|
|
45752
45940
|
display: block;
|
|
45753
45941
|
z-index: 1;
|
|
45942
|
+
outline: none;
|
|
45754
45943
|
}
|
|
45755
45944
|
|
|
45756
45945
|
.k-signature-line {
|
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": "5.8.2-dev.
|
|
4
|
+
"version": "5.8.2-dev.6",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -43,12 +43,12 @@
|
|
|
43
43
|
"postpublish": "echo 'no postpublish for bootstrap theme'"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@progress/kendo-theme-core": "^5.8.2-dev.
|
|
47
|
-
"@progress/kendo-theme-default": "^5.8.2-dev.
|
|
46
|
+
"@progress/kendo-theme-core": "^5.8.2-dev.6",
|
|
47
|
+
"@progress/kendo-theme-default": "^5.8.2-dev.6",
|
|
48
48
|
"bootstrap": "^5.2.1"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"sass-build": "^1.0.0"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "b1b2e33a3ce1b92bcefae87e8c46cbd797d814d1"
|
|
54
54
|
}
|
|
@@ -3,7 +3,8 @@ $actionsheet-padding-x: null !default;
|
|
|
3
3
|
$actionsheet-padding-y: null !default;
|
|
4
4
|
$actionsheet-width: 360px !default;
|
|
5
5
|
$actionsheet-max-width: 100% !default;
|
|
6
|
-
$actionsheet-
|
|
6
|
+
$actionsheet-height: 60vh !default;
|
|
7
|
+
$actionsheet-max-height: 60vh !default;
|
|
7
8
|
|
|
8
9
|
$actionsheet-border-width: 0px !default;
|
|
9
10
|
$actionsheet-border-radius: 0px !default;
|
|
@@ -19,18 +20,23 @@ $actionsheet-shadow: 0 8px 10px -5px rgba( black, .2 ), 0 16px 24px 2px rgba( bl
|
|
|
19
20
|
|
|
20
21
|
|
|
21
22
|
// Actionsheet header
|
|
22
|
-
$actionsheet-
|
|
23
|
-
$actionsheet-
|
|
24
|
-
$actionsheet-
|
|
25
|
-
$actionsheet-
|
|
26
|
-
$actionsheet-
|
|
27
|
-
$actionsheet-
|
|
23
|
+
$actionsheet-titlebar-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
24
|
+
$actionsheet-titlebar-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
25
|
+
$actionsheet-titlebar-border-width: null !default;
|
|
26
|
+
$actionsheet-titlebar-font-size: null !default;
|
|
27
|
+
$actionsheet-titlebar-font-family: null !default;
|
|
28
|
+
$actionsheet-titlebar-line-height: null !default;
|
|
29
|
+
$actionsheet-titlebar-gap: k-map-get( $spacing, 4 ) !default;
|
|
28
30
|
|
|
29
|
-
$actionsheet-
|
|
30
|
-
$actionsheet-
|
|
31
|
-
$actionsheet-
|
|
32
|
-
$actionsheet-
|
|
33
|
-
$actionsheet-
|
|
31
|
+
$actionsheet-titlebar-bg: null !default;
|
|
32
|
+
$actionsheet-titlebar-text: null !default;
|
|
33
|
+
$actionsheet-titlebar-border: null !default;
|
|
34
|
+
$actionsheet-titlebar-gradient: null !default;
|
|
35
|
+
$actionsheet-titlebar-shadow: null !default;
|
|
36
|
+
|
|
37
|
+
$actionsheet-subtitle-font-size: $font-size-sm !default;
|
|
38
|
+
$actionsheet-subtitle-line-height: $line-height-sm !default;
|
|
39
|
+
$actionsheet-subtitle-text: $subtle-text !default;
|
|
34
40
|
|
|
35
41
|
|
|
36
42
|
// Actionsheet item
|
|
@@ -65,3 +71,16 @@ $actionsheet-item-disabled-text: null !default;
|
|
|
65
71
|
$actionsheet-item-disabled-border: null !default;
|
|
66
72
|
$actionsheet-item-disabled-gradient: null !default;
|
|
67
73
|
$actionsheet-item-disabled-shadow: null !default;
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
// Adaptive Actionsheet
|
|
77
|
+
$adaptive-actionsheet-titlebar-border-width: 1px !default;
|
|
78
|
+
$adaptive-actionsheet-titlebar-padding-y: k-map-get( $spacing, 4 ) !default;
|
|
79
|
+
$adaptive-actionsheet-titlebar-padding-x: $adaptive-actionsheet-titlebar-padding-y !default;
|
|
80
|
+
$adaptive-actionsheet-titlebar-border: $component-border !default;
|
|
81
|
+
|
|
82
|
+
$adaptive-actionsheet-content-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
83
|
+
$adaptive-actionsheet-content-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
84
|
+
|
|
85
|
+
$adaptive-actionsheet-footer-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
86
|
+
$adaptive-actionsheet-footer-padding-x: k-map-get( $spacing, 4 ) !default;
|