@progress/kendo-theme-default 6.8.0-dev.1 → 6.8.0-dev.2
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 +270 -27
- package/dist/all.scss +475 -41
- package/dist/meta/sassdoc-data.json +16447 -14551
- package/dist/meta/sassdoc-raw-data.json +875 -0
- package/dist/meta/variables.json +144 -4
- package/lib/swatches/default-blue.json +1 -1
- package/lib/swatches/default-dataviz-v4.json +1 -1
- package/lib/swatches/default-green.json +1 -1
- package/lib/swatches/default-main-dark.json +1 -1
- package/lib/swatches/default-main.json +1 -1
- package/lib/swatches/default-nordic.json +1 -1
- package/lib/swatches/default-ocean-blue-a11y.json +1 -1
- package/lib/swatches/default-ocean-blue.json +1 -1
- package/lib/swatches/default-orange.json +1 -1
- package/lib/swatches/default-purple.json +1 -1
- package/lib/swatches/default-turquoise.json +1 -1
- package/lib/swatches/default-urban.json +1 -1
- package/package.json +4 -4
- package/scss/dock-manager/_index.scss +38 -0
- package/scss/dock-manager/_layout.scss +230 -0
- package/scss/dock-manager/_theme.scss +47 -0
- package/scss/dock-manager/_variables.scss +113 -0
- package/scss/index.scss +2 -0
- package/scss/pdf-viewer/_layout.scss +15 -33
- package/scss/pdf-viewer/_theme.scss +0 -4
- package/scss/pdf-viewer/_variables.scss +3 -4
- package/scss/splitter/_layout.scss +1 -0
package/dist/all.css
CHANGED
|
@@ -45104,6 +45104,7 @@ kendo-card-footer {
|
|
|
45104
45104
|
|
|
45105
45105
|
.k-splitter .k-pane {
|
|
45106
45106
|
overflow: hidden;
|
|
45107
|
+
box-sizing: border-box;
|
|
45107
45108
|
}
|
|
45108
45109
|
|
|
45109
45110
|
.k-splitter .k-scrollable {
|
|
@@ -45354,6 +45355,260 @@ kendo-card-footer {
|
|
|
45354
45355
|
background-color: rgba(255, 255, 255, 0.2);
|
|
45355
45356
|
}
|
|
45356
45357
|
|
|
45358
|
+
.k-dock-manager {
|
|
45359
|
+
width: 100%;
|
|
45360
|
+
height: 100%;
|
|
45361
|
+
border-width: 1px;
|
|
45362
|
+
border-style: solid;
|
|
45363
|
+
position: relative;
|
|
45364
|
+
display: flex;
|
|
45365
|
+
flex-flow: row nowrap;
|
|
45366
|
+
overflow: auto;
|
|
45367
|
+
box-sizing: border-box;
|
|
45368
|
+
}
|
|
45369
|
+
|
|
45370
|
+
.k-dock-manager-toolbar {
|
|
45371
|
+
border-width: 0 1px 0 0;
|
|
45372
|
+
border-color: inherit;
|
|
45373
|
+
flex-shrink: 0;
|
|
45374
|
+
-ms-writing-mode: tb-lr;
|
|
45375
|
+
writing-mode: vertical-lr;
|
|
45376
|
+
box-shadow: none;
|
|
45377
|
+
}
|
|
45378
|
+
|
|
45379
|
+
.k-dock-manager-toolbar::before {
|
|
45380
|
+
height: 0;
|
|
45381
|
+
}
|
|
45382
|
+
|
|
45383
|
+
.k-dock-manager-toolbar .k-separator-horizontal {
|
|
45384
|
+
width: 1.4285714286em;
|
|
45385
|
+
height: 0;
|
|
45386
|
+
border-width: 1px 0 0;
|
|
45387
|
+
}
|
|
45388
|
+
|
|
45389
|
+
@supports (not (-ms-ime-mode: none)) and (not (overflow: -webkit-marquee)) and (not (-moz-appearance: none)) {
|
|
45390
|
+
.k-dock-manager-toolbar .k-toolbar-button {
|
|
45391
|
+
padding-block: 8px;
|
|
45392
|
+
padding-inline: 4px;
|
|
45393
|
+
}
|
|
45394
|
+
.k-dock-manager-toolbar .k-toolbar-button .k-button-text {
|
|
45395
|
+
-ms-writing-mode: tb-lr;
|
|
45396
|
+
writing-mode: vertical-lr;
|
|
45397
|
+
}
|
|
45398
|
+
}
|
|
45399
|
+
|
|
45400
|
+
.k-dock-manager-pane-container {
|
|
45401
|
+
width: 100%;
|
|
45402
|
+
height: 100%;
|
|
45403
|
+
display: flex;
|
|
45404
|
+
flex-grow: 1;
|
|
45405
|
+
overflow: hidden;
|
|
45406
|
+
}
|
|
45407
|
+
|
|
45408
|
+
.k-dock-manager-splitter,
|
|
45409
|
+
.k-dock-manager-unpinned-container {
|
|
45410
|
+
height: 100%;
|
|
45411
|
+
border-width: 0;
|
|
45412
|
+
align-items: stretch;
|
|
45413
|
+
}
|
|
45414
|
+
|
|
45415
|
+
.k-dock-manager-splitter > .k-pane,
|
|
45416
|
+
.k-dock-manager-unpinned-container > .k-pane {
|
|
45417
|
+
height: auto;
|
|
45418
|
+
flex-direction: column;
|
|
45419
|
+
border-color: inherit;
|
|
45420
|
+
}
|
|
45421
|
+
|
|
45422
|
+
.k-dock-manager-splitter .k-pane-header,
|
|
45423
|
+
.k-dock-manager-unpinned-container .k-pane-header {
|
|
45424
|
+
display: flex;
|
|
45425
|
+
align-items: center;
|
|
45426
|
+
justify-content: center;
|
|
45427
|
+
padding-block: 8px;
|
|
45428
|
+
padding-inline: 16px;
|
|
45429
|
+
border-block-end-width: 1px;
|
|
45430
|
+
border-block-end-style: solid;
|
|
45431
|
+
border-color: inherit;
|
|
45432
|
+
}
|
|
45433
|
+
|
|
45434
|
+
.k-dock-manager-splitter .k-pane-title,
|
|
45435
|
+
.k-dock-manager-unpinned-container .k-pane-title {
|
|
45436
|
+
font-family: inherit;
|
|
45437
|
+
font-size: 16px;
|
|
45438
|
+
line-height: 1.25;
|
|
45439
|
+
font-weight: 400;
|
|
45440
|
+
flex: 1 1 auto;
|
|
45441
|
+
white-space: nowrap;
|
|
45442
|
+
text-overflow: ellipsis;
|
|
45443
|
+
overflow: hidden;
|
|
45444
|
+
}
|
|
45445
|
+
|
|
45446
|
+
.k-dock-manager-splitter .k-pane-scrollable,
|
|
45447
|
+
.k-dock-manager-unpinned-container .k-pane-scrollable {
|
|
45448
|
+
height: 100%;
|
|
45449
|
+
display: flex;
|
|
45450
|
+
flex-direction: column;
|
|
45451
|
+
border-color: inherit;
|
|
45452
|
+
}
|
|
45453
|
+
|
|
45454
|
+
.k-dock-manager-splitter .k-pane-content,
|
|
45455
|
+
.k-dock-manager-unpinned-container .k-pane-content {
|
|
45456
|
+
height: 100%;
|
|
45457
|
+
padding-block: 16px;
|
|
45458
|
+
padding-inline: 16px;
|
|
45459
|
+
overflow: auto;
|
|
45460
|
+
flex: 1;
|
|
45461
|
+
}
|
|
45462
|
+
|
|
45463
|
+
.k-dock-manager-splitter .k-pane-actions,
|
|
45464
|
+
.k-dock-manager-unpinned-container .k-pane-actions {
|
|
45465
|
+
display: flex;
|
|
45466
|
+
flex-flow: row nowrap;
|
|
45467
|
+
align-items: center;
|
|
45468
|
+
justify-content: center;
|
|
45469
|
+
}
|
|
45470
|
+
|
|
45471
|
+
.k-dock-manager-splitter .k-pane-tabbed,
|
|
45472
|
+
.k-dock-manager-unpinned-container .k-pane-tabbed {
|
|
45473
|
+
padding-block-start: 14px;
|
|
45474
|
+
padding-block-end: 8px;
|
|
45475
|
+
padding-inline: 8px;
|
|
45476
|
+
}
|
|
45477
|
+
|
|
45478
|
+
.k-dock-manager-splitter .k-splitbar,
|
|
45479
|
+
.k-dock-manager-unpinned-container .k-splitbar {
|
|
45480
|
+
border-width: 0 1px;
|
|
45481
|
+
border-style: solid;
|
|
45482
|
+
border-color: inherit;
|
|
45483
|
+
}
|
|
45484
|
+
|
|
45485
|
+
.k-dock-manager-splitter .k-splitbar-vertical,
|
|
45486
|
+
.k-dock-manager-unpinned-container .k-splitbar-vertical {
|
|
45487
|
+
border-width: 1px 0;
|
|
45488
|
+
}
|
|
45489
|
+
|
|
45490
|
+
.k-dock-manager-unpinned-container {
|
|
45491
|
+
width: 300px;
|
|
45492
|
+
position: absolute;
|
|
45493
|
+
display: flex;
|
|
45494
|
+
height: 100%;
|
|
45495
|
+
border-color: inherit;
|
|
45496
|
+
z-index: 20;
|
|
45497
|
+
}
|
|
45498
|
+
|
|
45499
|
+
.k-dock-manager-unpinned-container .k-pane {
|
|
45500
|
+
display: inline-flex;
|
|
45501
|
+
flex-direction: column;
|
|
45502
|
+
position: relative;
|
|
45503
|
+
flex: 1 1 auto;
|
|
45504
|
+
}
|
|
45505
|
+
|
|
45506
|
+
.k-dock-manager-unpinned-container .k-splitbar {
|
|
45507
|
+
height: 100%;
|
|
45508
|
+
position: relative;
|
|
45509
|
+
flex: none;
|
|
45510
|
+
}
|
|
45511
|
+
|
|
45512
|
+
.k-docking-preview {
|
|
45513
|
+
width: 100%;
|
|
45514
|
+
height: 100%;
|
|
45515
|
+
box-sizing: border-box;
|
|
45516
|
+
display: flex;
|
|
45517
|
+
position: absolute;
|
|
45518
|
+
top: 0;
|
|
45519
|
+
left: 0;
|
|
45520
|
+
border-width: 1px;
|
|
45521
|
+
border-style: dashed;
|
|
45522
|
+
border-radius: 2px;
|
|
45523
|
+
z-index: 10;
|
|
45524
|
+
}
|
|
45525
|
+
|
|
45526
|
+
.k-dock-navigator-container {
|
|
45527
|
+
width: 100%;
|
|
45528
|
+
height: 100%;
|
|
45529
|
+
display: flex;
|
|
45530
|
+
flex-direction: column;
|
|
45531
|
+
align-items: center;
|
|
45532
|
+
position: absolute;
|
|
45533
|
+
z-index: 10001;
|
|
45534
|
+
pointer-events: none;
|
|
45535
|
+
}
|
|
45536
|
+
|
|
45537
|
+
.k-dock-navigator {
|
|
45538
|
+
display: grid;
|
|
45539
|
+
grid-template-columns: repeat(3, auto);
|
|
45540
|
+
grid-template-rows: repeat(3, auto);
|
|
45541
|
+
justify-content: center;
|
|
45542
|
+
position: absolute;
|
|
45543
|
+
}
|
|
45544
|
+
|
|
45545
|
+
.k-dock-indicator {
|
|
45546
|
+
padding: 6px;
|
|
45547
|
+
display: inline-flex;
|
|
45548
|
+
align-items: center;
|
|
45549
|
+
justify-content: center;
|
|
45550
|
+
box-sizing: border-box;
|
|
45551
|
+
position: relative;
|
|
45552
|
+
pointer-events: all;
|
|
45553
|
+
outline-width: 1px;
|
|
45554
|
+
outline-style: solid;
|
|
45555
|
+
}
|
|
45556
|
+
|
|
45557
|
+
.k-dock-indicator.k-dock-indicator-middle {
|
|
45558
|
+
filter: none;
|
|
45559
|
+
}
|
|
45560
|
+
|
|
45561
|
+
.k-dock-indicator-top {
|
|
45562
|
+
grid-area: 1 / 2 / auto;
|
|
45563
|
+
}
|
|
45564
|
+
|
|
45565
|
+
.k-dock-indicator-right {
|
|
45566
|
+
grid-area: 2 / 3 / auto;
|
|
45567
|
+
}
|
|
45568
|
+
|
|
45569
|
+
.k-dock-indicator-bottom {
|
|
45570
|
+
grid-area: 3 / 2 / auto;
|
|
45571
|
+
}
|
|
45572
|
+
|
|
45573
|
+
.k-dock-indicator-left {
|
|
45574
|
+
grid-area: 2 / 1 / auto;
|
|
45575
|
+
}
|
|
45576
|
+
|
|
45577
|
+
.k-dock-indicator-middle {
|
|
45578
|
+
grid-area: 2 / 2 / auto;
|
|
45579
|
+
}
|
|
45580
|
+
|
|
45581
|
+
.k-dock-manager {
|
|
45582
|
+
border-color: rgba(0, 0, 0, 0.08);
|
|
45583
|
+
}
|
|
45584
|
+
|
|
45585
|
+
.k-dock-manager-splitter .k-pane-header,
|
|
45586
|
+
.k-dock-manager-unpinned-container .k-pane-header {
|
|
45587
|
+
background-color: #fafafa;
|
|
45588
|
+
}
|
|
45589
|
+
|
|
45590
|
+
.k-dock-manager-unpinned-container {
|
|
45591
|
+
background-color: #ffffff;
|
|
45592
|
+
box-shadow: 4px 0px 5px 0px rgba(0, 0, 0, 0.04), 2px 0px 4px 0px rgba(0, 0, 0, 0.03);
|
|
45593
|
+
}
|
|
45594
|
+
|
|
45595
|
+
.k-docking-preview {
|
|
45596
|
+
background-color: rgba(255, 99, 88, 0.16);
|
|
45597
|
+
border-color: #ff6358;
|
|
45598
|
+
}
|
|
45599
|
+
|
|
45600
|
+
.k-dock-indicator {
|
|
45601
|
+
color: #ff6358;
|
|
45602
|
+
background-color: #f5f5f5;
|
|
45603
|
+
outline-color: #ff6358;
|
|
45604
|
+
filter: drop-shadow(0px 1px 18px rgba(0, 0, 0, 0.12)) drop-shadow(0px 6px 10px rgba(0, 0, 0, 0.14)) drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.2));
|
|
45605
|
+
}
|
|
45606
|
+
|
|
45607
|
+
.k-dock-indicator:hover, .k-dock-indicator.k-hover {
|
|
45608
|
+
background-color: #ff6358;
|
|
45609
|
+
color: #ffffff;
|
|
45610
|
+
}
|
|
45611
|
+
|
|
45357
45612
|
.k-pane-wrapper {
|
|
45358
45613
|
border-width: 1px;
|
|
45359
45614
|
border-style: solid;
|
|
@@ -54616,18 +54871,17 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
54616
54871
|
outline: none;
|
|
54617
54872
|
}
|
|
54618
54873
|
|
|
54619
|
-
.k-pdf-viewer .k-canvas
|
|
54874
|
+
.k-pdf-viewer .k-canvas.k-enable-text-select {
|
|
54620
54875
|
-webkit-user-select: text;
|
|
54621
54876
|
-ms-user-select: text;
|
|
54622
54877
|
user-select: text;
|
|
54623
54878
|
cursor: text;
|
|
54624
54879
|
}
|
|
54625
54880
|
|
|
54626
|
-
.k-pdf-viewer .k-canvas
|
|
54881
|
+
.k-pdf-viewer .k-canvas.k-enable-panning {
|
|
54627
54882
|
cursor: grab;
|
|
54628
54883
|
}
|
|
54629
54884
|
|
|
54630
|
-
.k-pdf-viewer .k-canvas .k-enable-panning span::selection,
|
|
54631
54885
|
.k-pdf-viewer .k-canvas.k-enable-panning span::selection {
|
|
54632
54886
|
background-color: transparent;
|
|
54633
54887
|
}
|
|
@@ -54661,10 +54915,6 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
54661
54915
|
color: transparent;
|
|
54662
54916
|
}
|
|
54663
54917
|
|
|
54664
|
-
.k-pdf-viewer .k-page .k-text-layer mark {
|
|
54665
|
-
color: transparent;
|
|
54666
|
-
}
|
|
54667
|
-
|
|
54668
54918
|
.k-pdf-viewer .k-page .k-text-layer .k-search-highlight-mark {
|
|
54669
54919
|
color: transparent;
|
|
54670
54920
|
}
|
|
@@ -54687,50 +54937,43 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
54687
54937
|
background: none;
|
|
54688
54938
|
}
|
|
54689
54939
|
|
|
54690
|
-
.k-pdf-viewer-search-
|
|
54691
|
-
|
|
54692
|
-
|
|
54693
|
-
|
|
54694
|
-
.k-search-panel, .k-search-container {
|
|
54940
|
+
.k-pdf-viewer-canvas > .k-search-panel {
|
|
54941
|
+
width: max-content;
|
|
54942
|
+
margin-top: calc(-1.4285714286em + -44px);
|
|
54695
54943
|
padding-block: 16px;
|
|
54696
54944
|
padding-inline: 8px;
|
|
54945
|
+
border-width: 1px;
|
|
54946
|
+
border-style: solid;
|
|
54947
|
+
border-radius: 0;
|
|
54697
54948
|
display: flex;
|
|
54698
54949
|
gap: 8px;
|
|
54699
54950
|
flex-flow: row nowrap;
|
|
54700
54951
|
flex: 0 0 auto;
|
|
54701
54952
|
justify-content: flex-start;
|
|
54702
54953
|
align-items: center;
|
|
54954
|
+
z-index: 10;
|
|
54955
|
+
cursor: default;
|
|
54703
54956
|
}
|
|
54704
54957
|
|
|
54705
|
-
.k-
|
|
54958
|
+
.k-pdf-viewer-canvas > .k-search-panel .k-search-dialog-draghandle {
|
|
54706
54959
|
cursor: move;
|
|
54707
54960
|
margin-left: 0;
|
|
54708
54961
|
}
|
|
54709
54962
|
|
|
54710
|
-
.k-
|
|
54963
|
+
.k-pdf-viewer-canvas > .k-search-panel .k-textbox {
|
|
54711
54964
|
width: 10em;
|
|
54712
54965
|
flex: none;
|
|
54713
54966
|
}
|
|
54714
54967
|
|
|
54715
|
-
.k-
|
|
54968
|
+
.k-pdf-viewer-canvas > .k-search-panel .k-textbox .k-button {
|
|
54716
54969
|
border-width: 0;
|
|
54717
54970
|
}
|
|
54718
54971
|
|
|
54719
|
-
.k-
|
|
54972
|
+
.k-pdf-viewer-canvas > .k-search-panel .k-search-matches {
|
|
54720
54973
|
display: inline-flex;
|
|
54721
54974
|
gap: 4px;
|
|
54722
54975
|
}
|
|
54723
54976
|
|
|
54724
|
-
.k-pdf-viewer-canvas > .k-search-panel, .k-pdf-viewer-canvas > .k-search-container {
|
|
54725
|
-
width: max-content;
|
|
54726
|
-
margin-top: calc(-1.4285714286em + -44px);
|
|
54727
|
-
border-width: 1px;
|
|
54728
|
-
border-style: solid;
|
|
54729
|
-
border-radius: 0;
|
|
54730
|
-
z-index: 10;
|
|
54731
|
-
cursor: default;
|
|
54732
|
-
}
|
|
54733
|
-
|
|
54734
54977
|
.k-pdf-viewer {
|
|
54735
54978
|
border-color: rgba(0, 0, 0, 0.08);
|
|
54736
54979
|
color: #424242;
|
|
@@ -54761,7 +55004,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
54761
55004
|
background-color: yellow;
|
|
54762
55005
|
}
|
|
54763
55006
|
|
|
54764
|
-
.k-pdf-viewer-canvas > .k-search-panel
|
|
55007
|
+
.k-pdf-viewer-canvas > .k-search-panel {
|
|
54765
55008
|
border-color: rgba(0, 0, 0, 0.08);
|
|
54766
55009
|
color: #424242;
|
|
54767
55010
|
background-color: #ffffff;
|