@progress/kendo-theme-classic 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 +491 -41
- package/dist/meta/sassdoc-data.json +15732 -13836
- package/dist/meta/sassdoc-raw-data.json +875 -0
- package/dist/meta/variables.json +153 -13
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-lavender-dark.json +1 -1
- package/lib/swatches/classic-lavender.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-metro-dark.json +1 -1
- package/lib/swatches/classic-metro.json +1 -1
- package/lib/swatches/classic-moonlight.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/lib/swatches/classic-uniform.json +1 -1
- package/package.json +5 -5
- package/scss/dock-manager/_index.scss +38 -0
- package/scss/dock-manager/_layout.scss +6 -0
- package/scss/dock-manager/_theme.scss +6 -0
- package/scss/dock-manager/_variables.scss +113 -0
- package/scss/index.scss +2 -0
- package/scss/pdf-viewer/_variables.scss +3 -4
package/dist/all.css
CHANGED
|
@@ -45118,6 +45118,7 @@ kendo-card-footer {
|
|
|
45118
45118
|
|
|
45119
45119
|
.k-splitter .k-pane {
|
|
45120
45120
|
overflow: hidden;
|
|
45121
|
+
box-sizing: border-box;
|
|
45121
45122
|
}
|
|
45122
45123
|
|
|
45123
45124
|
.k-splitter .k-scrollable {
|
|
@@ -45368,6 +45369,260 @@ kendo-card-footer {
|
|
|
45368
45369
|
background-color: rgba(255, 255, 255, 0.2);
|
|
45369
45370
|
}
|
|
45370
45371
|
|
|
45372
|
+
.k-dock-manager {
|
|
45373
|
+
width: 100%;
|
|
45374
|
+
height: 100%;
|
|
45375
|
+
border-width: 1px;
|
|
45376
|
+
border-style: solid;
|
|
45377
|
+
position: relative;
|
|
45378
|
+
display: flex;
|
|
45379
|
+
flex-flow: row nowrap;
|
|
45380
|
+
overflow: auto;
|
|
45381
|
+
box-sizing: border-box;
|
|
45382
|
+
}
|
|
45383
|
+
|
|
45384
|
+
.k-dock-manager-toolbar {
|
|
45385
|
+
border-width: 0 1px 0 0;
|
|
45386
|
+
border-color: inherit;
|
|
45387
|
+
flex-shrink: 0;
|
|
45388
|
+
-ms-writing-mode: tb-lr;
|
|
45389
|
+
writing-mode: vertical-lr;
|
|
45390
|
+
box-shadow: none;
|
|
45391
|
+
}
|
|
45392
|
+
|
|
45393
|
+
.k-dock-manager-toolbar::before {
|
|
45394
|
+
height: 0;
|
|
45395
|
+
}
|
|
45396
|
+
|
|
45397
|
+
.k-dock-manager-toolbar .k-separator-horizontal {
|
|
45398
|
+
width: 1.4285714286em;
|
|
45399
|
+
height: 0;
|
|
45400
|
+
border-width: 1px 0 0;
|
|
45401
|
+
}
|
|
45402
|
+
|
|
45403
|
+
@supports (not (-ms-ime-mode: none)) and (not (overflow: -webkit-marquee)) and (not (-moz-appearance: none)) {
|
|
45404
|
+
.k-dock-manager-toolbar .k-toolbar-button {
|
|
45405
|
+
padding-block: 8px;
|
|
45406
|
+
padding-inline: 4px;
|
|
45407
|
+
}
|
|
45408
|
+
.k-dock-manager-toolbar .k-toolbar-button .k-button-text {
|
|
45409
|
+
-ms-writing-mode: tb-lr;
|
|
45410
|
+
writing-mode: vertical-lr;
|
|
45411
|
+
}
|
|
45412
|
+
}
|
|
45413
|
+
|
|
45414
|
+
.k-dock-manager-pane-container {
|
|
45415
|
+
width: 100%;
|
|
45416
|
+
height: 100%;
|
|
45417
|
+
display: flex;
|
|
45418
|
+
flex-grow: 1;
|
|
45419
|
+
overflow: hidden;
|
|
45420
|
+
}
|
|
45421
|
+
|
|
45422
|
+
.k-dock-manager-splitter,
|
|
45423
|
+
.k-dock-manager-unpinned-container {
|
|
45424
|
+
height: 100%;
|
|
45425
|
+
border-width: 0;
|
|
45426
|
+
align-items: stretch;
|
|
45427
|
+
}
|
|
45428
|
+
|
|
45429
|
+
.k-dock-manager-splitter > .k-pane,
|
|
45430
|
+
.k-dock-manager-unpinned-container > .k-pane {
|
|
45431
|
+
height: auto;
|
|
45432
|
+
flex-direction: column;
|
|
45433
|
+
border-color: inherit;
|
|
45434
|
+
}
|
|
45435
|
+
|
|
45436
|
+
.k-dock-manager-splitter .k-pane-header,
|
|
45437
|
+
.k-dock-manager-unpinned-container .k-pane-header {
|
|
45438
|
+
display: flex;
|
|
45439
|
+
align-items: center;
|
|
45440
|
+
justify-content: center;
|
|
45441
|
+
padding-block: 8px;
|
|
45442
|
+
padding-inline: 16px;
|
|
45443
|
+
border-block-end-width: 1px;
|
|
45444
|
+
border-block-end-style: solid;
|
|
45445
|
+
border-color: inherit;
|
|
45446
|
+
}
|
|
45447
|
+
|
|
45448
|
+
.k-dock-manager-splitter .k-pane-title,
|
|
45449
|
+
.k-dock-manager-unpinned-container .k-pane-title {
|
|
45450
|
+
font-family: inherit;
|
|
45451
|
+
font-size: 16px;
|
|
45452
|
+
line-height: 1.25;
|
|
45453
|
+
font-weight: 400;
|
|
45454
|
+
flex: 1 1 auto;
|
|
45455
|
+
white-space: nowrap;
|
|
45456
|
+
text-overflow: ellipsis;
|
|
45457
|
+
overflow: hidden;
|
|
45458
|
+
}
|
|
45459
|
+
|
|
45460
|
+
.k-dock-manager-splitter .k-pane-scrollable,
|
|
45461
|
+
.k-dock-manager-unpinned-container .k-pane-scrollable {
|
|
45462
|
+
height: 100%;
|
|
45463
|
+
display: flex;
|
|
45464
|
+
flex-direction: column;
|
|
45465
|
+
border-color: inherit;
|
|
45466
|
+
}
|
|
45467
|
+
|
|
45468
|
+
.k-dock-manager-splitter .k-pane-content,
|
|
45469
|
+
.k-dock-manager-unpinned-container .k-pane-content {
|
|
45470
|
+
height: 100%;
|
|
45471
|
+
padding-block: 16px;
|
|
45472
|
+
padding-inline: 16px;
|
|
45473
|
+
overflow: auto;
|
|
45474
|
+
flex: 1;
|
|
45475
|
+
}
|
|
45476
|
+
|
|
45477
|
+
.k-dock-manager-splitter .k-pane-actions,
|
|
45478
|
+
.k-dock-manager-unpinned-container .k-pane-actions {
|
|
45479
|
+
display: flex;
|
|
45480
|
+
flex-flow: row nowrap;
|
|
45481
|
+
align-items: center;
|
|
45482
|
+
justify-content: center;
|
|
45483
|
+
}
|
|
45484
|
+
|
|
45485
|
+
.k-dock-manager-splitter .k-pane-tabbed,
|
|
45486
|
+
.k-dock-manager-unpinned-container .k-pane-tabbed {
|
|
45487
|
+
padding-block-start: 16px;
|
|
45488
|
+
padding-block-end: 8px;
|
|
45489
|
+
padding-inline: 8px;
|
|
45490
|
+
}
|
|
45491
|
+
|
|
45492
|
+
.k-dock-manager-splitter .k-splitbar,
|
|
45493
|
+
.k-dock-manager-unpinned-container .k-splitbar {
|
|
45494
|
+
border-width: 0 1px;
|
|
45495
|
+
border-style: solid;
|
|
45496
|
+
border-color: inherit;
|
|
45497
|
+
}
|
|
45498
|
+
|
|
45499
|
+
.k-dock-manager-splitter .k-splitbar-vertical,
|
|
45500
|
+
.k-dock-manager-unpinned-container .k-splitbar-vertical {
|
|
45501
|
+
border-width: 1px 0;
|
|
45502
|
+
}
|
|
45503
|
+
|
|
45504
|
+
.k-dock-manager-unpinned-container {
|
|
45505
|
+
width: 300px;
|
|
45506
|
+
position: absolute;
|
|
45507
|
+
display: flex;
|
|
45508
|
+
height: 100%;
|
|
45509
|
+
border-color: inherit;
|
|
45510
|
+
z-index: 20;
|
|
45511
|
+
}
|
|
45512
|
+
|
|
45513
|
+
.k-dock-manager-unpinned-container .k-pane {
|
|
45514
|
+
display: inline-flex;
|
|
45515
|
+
flex-direction: column;
|
|
45516
|
+
position: relative;
|
|
45517
|
+
flex: 1 1 auto;
|
|
45518
|
+
}
|
|
45519
|
+
|
|
45520
|
+
.k-dock-manager-unpinned-container .k-splitbar {
|
|
45521
|
+
height: 100%;
|
|
45522
|
+
position: relative;
|
|
45523
|
+
flex: none;
|
|
45524
|
+
}
|
|
45525
|
+
|
|
45526
|
+
.k-docking-preview {
|
|
45527
|
+
width: 100%;
|
|
45528
|
+
height: 100%;
|
|
45529
|
+
box-sizing: border-box;
|
|
45530
|
+
display: flex;
|
|
45531
|
+
position: absolute;
|
|
45532
|
+
top: 0;
|
|
45533
|
+
left: 0;
|
|
45534
|
+
border-width: 1px;
|
|
45535
|
+
border-style: dashed;
|
|
45536
|
+
border-radius: 2px;
|
|
45537
|
+
z-index: 10;
|
|
45538
|
+
}
|
|
45539
|
+
|
|
45540
|
+
.k-dock-navigator-container {
|
|
45541
|
+
width: 100%;
|
|
45542
|
+
height: 100%;
|
|
45543
|
+
display: flex;
|
|
45544
|
+
flex-direction: column;
|
|
45545
|
+
align-items: center;
|
|
45546
|
+
position: absolute;
|
|
45547
|
+
z-index: 10001;
|
|
45548
|
+
pointer-events: none;
|
|
45549
|
+
}
|
|
45550
|
+
|
|
45551
|
+
.k-dock-navigator {
|
|
45552
|
+
display: grid;
|
|
45553
|
+
grid-template-columns: repeat(3, auto);
|
|
45554
|
+
grid-template-rows: repeat(3, auto);
|
|
45555
|
+
justify-content: center;
|
|
45556
|
+
position: absolute;
|
|
45557
|
+
}
|
|
45558
|
+
|
|
45559
|
+
.k-dock-indicator {
|
|
45560
|
+
padding: 6px;
|
|
45561
|
+
display: inline-flex;
|
|
45562
|
+
align-items: center;
|
|
45563
|
+
justify-content: center;
|
|
45564
|
+
box-sizing: border-box;
|
|
45565
|
+
position: relative;
|
|
45566
|
+
pointer-events: all;
|
|
45567
|
+
outline-width: 1px;
|
|
45568
|
+
outline-style: solid;
|
|
45569
|
+
}
|
|
45570
|
+
|
|
45571
|
+
.k-dock-indicator.k-dock-indicator-middle {
|
|
45572
|
+
filter: none;
|
|
45573
|
+
}
|
|
45574
|
+
|
|
45575
|
+
.k-dock-indicator-top {
|
|
45576
|
+
grid-area: 1 / 2 / auto;
|
|
45577
|
+
}
|
|
45578
|
+
|
|
45579
|
+
.k-dock-indicator-right {
|
|
45580
|
+
grid-area: 2 / 3 / auto;
|
|
45581
|
+
}
|
|
45582
|
+
|
|
45583
|
+
.k-dock-indicator-bottom {
|
|
45584
|
+
grid-area: 3 / 2 / auto;
|
|
45585
|
+
}
|
|
45586
|
+
|
|
45587
|
+
.k-dock-indicator-left {
|
|
45588
|
+
grid-area: 2 / 1 / auto;
|
|
45589
|
+
}
|
|
45590
|
+
|
|
45591
|
+
.k-dock-indicator-middle {
|
|
45592
|
+
grid-area: 2 / 2 / auto;
|
|
45593
|
+
}
|
|
45594
|
+
|
|
45595
|
+
.k-dock-manager {
|
|
45596
|
+
border-color: #cacaca;
|
|
45597
|
+
}
|
|
45598
|
+
|
|
45599
|
+
.k-dock-manager-splitter .k-pane-header,
|
|
45600
|
+
.k-dock-manager-unpinned-container .k-pane-header {
|
|
45601
|
+
background-color: #f0f0f0;
|
|
45602
|
+
}
|
|
45603
|
+
|
|
45604
|
+
.k-dock-manager-unpinned-container {
|
|
45605
|
+
background-color: #ffffff;
|
|
45606
|
+
box-shadow: 4px 0px 5px 0px rgba(0, 0, 0, 0.04), 2px 0px 4px 0px rgba(0, 0, 0, 0.03);
|
|
45607
|
+
}
|
|
45608
|
+
|
|
45609
|
+
.k-docking-preview {
|
|
45610
|
+
background-color: rgba(243, 88, 0, 0.16);
|
|
45611
|
+
border-color: #f35800;
|
|
45612
|
+
}
|
|
45613
|
+
|
|
45614
|
+
.k-dock-indicator {
|
|
45615
|
+
color: #f35800;
|
|
45616
|
+
background-color: #f5f5f5;
|
|
45617
|
+
outline-color: #f35800;
|
|
45618
|
+
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));
|
|
45619
|
+
}
|
|
45620
|
+
|
|
45621
|
+
.k-dock-indicator:hover, .k-dock-indicator.k-hover {
|
|
45622
|
+
background-color: #f35800;
|
|
45623
|
+
color: #ffffff;
|
|
45624
|
+
}
|
|
45625
|
+
|
|
45371
45626
|
.k-pane-wrapper {
|
|
45372
45627
|
border-width: 1px;
|
|
45373
45628
|
border-style: solid;
|
|
@@ -54633,18 +54888,17 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
54633
54888
|
outline: none;
|
|
54634
54889
|
}
|
|
54635
54890
|
|
|
54636
|
-
.k-pdf-viewer .k-canvas
|
|
54891
|
+
.k-pdf-viewer .k-canvas.k-enable-text-select {
|
|
54637
54892
|
-webkit-user-select: text;
|
|
54638
54893
|
-ms-user-select: text;
|
|
54639
54894
|
user-select: text;
|
|
54640
54895
|
cursor: text;
|
|
54641
54896
|
}
|
|
54642
54897
|
|
|
54643
|
-
.k-pdf-viewer .k-canvas
|
|
54898
|
+
.k-pdf-viewer .k-canvas.k-enable-panning {
|
|
54644
54899
|
cursor: grab;
|
|
54645
54900
|
}
|
|
54646
54901
|
|
|
54647
|
-
.k-pdf-viewer .k-canvas .k-enable-panning span::selection,
|
|
54648
54902
|
.k-pdf-viewer .k-canvas.k-enable-panning span::selection {
|
|
54649
54903
|
background-color: transparent;
|
|
54650
54904
|
}
|
|
@@ -54678,10 +54932,6 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
54678
54932
|
color: transparent;
|
|
54679
54933
|
}
|
|
54680
54934
|
|
|
54681
|
-
.k-pdf-viewer .k-page .k-text-layer mark {
|
|
54682
|
-
color: transparent;
|
|
54683
|
-
}
|
|
54684
|
-
|
|
54685
54935
|
.k-pdf-viewer .k-page .k-text-layer .k-search-highlight-mark {
|
|
54686
54936
|
color: transparent;
|
|
54687
54937
|
}
|
|
@@ -54704,50 +54954,43 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
54704
54954
|
background: none;
|
|
54705
54955
|
}
|
|
54706
54956
|
|
|
54707
|
-
.k-pdf-viewer-search-
|
|
54708
|
-
|
|
54709
|
-
|
|
54710
|
-
|
|
54711
|
-
.k-search-panel, .k-search-container {
|
|
54957
|
+
.k-pdf-viewer-canvas > .k-search-panel {
|
|
54958
|
+
width: max-content;
|
|
54959
|
+
margin-top: calc(-1.4285714286em + -36px);
|
|
54712
54960
|
padding-block: 12px;
|
|
54713
54961
|
padding-inline: 8px;
|
|
54962
|
+
border-width: 1px;
|
|
54963
|
+
border-style: solid;
|
|
54964
|
+
border-radius: 4px;
|
|
54714
54965
|
display: flex;
|
|
54715
54966
|
gap: 8px;
|
|
54716
54967
|
flex-flow: row nowrap;
|
|
54717
54968
|
flex: 0 0 auto;
|
|
54718
54969
|
justify-content: flex-start;
|
|
54719
54970
|
align-items: center;
|
|
54971
|
+
z-index: 10;
|
|
54972
|
+
cursor: default;
|
|
54720
54973
|
}
|
|
54721
54974
|
|
|
54722
|
-
.k-
|
|
54975
|
+
.k-pdf-viewer-canvas > .k-search-panel .k-search-dialog-draghandle {
|
|
54723
54976
|
cursor: move;
|
|
54724
54977
|
margin-left: 0;
|
|
54725
54978
|
}
|
|
54726
54979
|
|
|
54727
|
-
.k-
|
|
54980
|
+
.k-pdf-viewer-canvas > .k-search-panel .k-textbox {
|
|
54728
54981
|
width: 10em;
|
|
54729
54982
|
flex: none;
|
|
54730
54983
|
}
|
|
54731
54984
|
|
|
54732
|
-
.k-
|
|
54985
|
+
.k-pdf-viewer-canvas > .k-search-panel .k-textbox .k-button {
|
|
54733
54986
|
border-width: 0;
|
|
54734
54987
|
}
|
|
54735
54988
|
|
|
54736
|
-
.k-
|
|
54989
|
+
.k-pdf-viewer-canvas > .k-search-panel .k-search-matches {
|
|
54737
54990
|
display: inline-flex;
|
|
54738
54991
|
gap: 4px;
|
|
54739
54992
|
}
|
|
54740
54993
|
|
|
54741
|
-
.k-pdf-viewer-canvas > .k-search-panel, .k-pdf-viewer-canvas > .k-search-container {
|
|
54742
|
-
width: max-content;
|
|
54743
|
-
margin-top: calc(-1.4285714286em + -36px);
|
|
54744
|
-
border-width: 1px;
|
|
54745
|
-
border-style: solid;
|
|
54746
|
-
border-radius: 4px;
|
|
54747
|
-
z-index: 10;
|
|
54748
|
-
cursor: default;
|
|
54749
|
-
}
|
|
54750
|
-
|
|
54751
54994
|
.k-pdf-viewer {
|
|
54752
54995
|
border-color: #cacaca;
|
|
54753
54996
|
color: #272727;
|
|
@@ -54778,7 +55021,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
54778
55021
|
background-color: yellow;
|
|
54779
55022
|
}
|
|
54780
55023
|
|
|
54781
|
-
.k-pdf-viewer-canvas > .k-search-panel
|
|
55024
|
+
.k-pdf-viewer-canvas > .k-search-panel {
|
|
54782
55025
|
border-color: #cacaca;
|
|
54783
55026
|
color: #272727;
|
|
54784
55027
|
background-color: #ffffff;
|