@progress/kendo-theme-material 6.8.0-dev.0 → 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 +263 -27
- package/dist/all.scss +491 -41
- package/dist/meta/sassdoc-data.json +15775 -13879
- package/dist/meta/sassdoc-raw-data.json +875 -0
- package/dist/meta/variables.json +153 -13
- package/lib/swatches/material-aqua-dark.json +1 -1
- package/lib/swatches/material-arctic.json +1 -1
- package/lib/swatches/material-burnt-teal.json +1 -1
- package/lib/swatches/material-dataviz-v4.json +1 -1
- package/lib/swatches/material-eggplant.json +1 -1
- package/lib/swatches/material-lime-dark.json +1 -1
- package/lib/swatches/material-lime.json +1 -1
- package/lib/swatches/material-main-dark.json +1 -1
- package/lib/swatches/material-main.json +1 -1
- package/lib/swatches/material-nova.json +1 -1
- package/lib/swatches/material-pacific-dark.json +1 -1
- package/lib/swatches/material-pacific.json +1 -1
- package/lib/swatches/material-sky-dark.json +1 -1
- package/lib/swatches/material-sky.json +1 -1
- package/lib/swatches/material-smoke.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
|
@@ -46266,6 +46266,7 @@ kendo-card-footer {
|
|
|
46266
46266
|
|
|
46267
46267
|
.k-splitter .k-pane {
|
|
46268
46268
|
overflow: hidden;
|
|
46269
|
+
box-sizing: border-box;
|
|
46269
46270
|
}
|
|
46270
46271
|
|
|
46271
46272
|
.k-splitter .k-scrollable {
|
|
@@ -46516,6 +46517,253 @@ kendo-card-footer {
|
|
|
46516
46517
|
background-color: rgba(255, 255, 255, 0.2);
|
|
46517
46518
|
}
|
|
46518
46519
|
|
|
46520
|
+
.k-dock-manager {
|
|
46521
|
+
width: 100%;
|
|
46522
|
+
height: 100%;
|
|
46523
|
+
border-width: 1px;
|
|
46524
|
+
border-style: solid;
|
|
46525
|
+
position: relative;
|
|
46526
|
+
display: flex;
|
|
46527
|
+
flex-flow: row nowrap;
|
|
46528
|
+
overflow: auto;
|
|
46529
|
+
box-sizing: border-box;
|
|
46530
|
+
}
|
|
46531
|
+
|
|
46532
|
+
.k-dock-manager-toolbar {
|
|
46533
|
+
border-width: 0 1px 0 0;
|
|
46534
|
+
border-color: inherit;
|
|
46535
|
+
flex-shrink: 0;
|
|
46536
|
+
-ms-writing-mode: tb-lr;
|
|
46537
|
+
writing-mode: vertical-lr;
|
|
46538
|
+
box-shadow: none;
|
|
46539
|
+
}
|
|
46540
|
+
|
|
46541
|
+
.k-dock-manager-toolbar::before {
|
|
46542
|
+
height: 0;
|
|
46543
|
+
}
|
|
46544
|
+
|
|
46545
|
+
.k-dock-manager-toolbar .k-separator-horizontal {
|
|
46546
|
+
width: 2em;
|
|
46547
|
+
height: 0;
|
|
46548
|
+
border-width: 1px 0 0;
|
|
46549
|
+
}
|
|
46550
|
+
|
|
46551
|
+
@supports (not (-ms-ime-mode: none)) and (not (overflow: -webkit-marquee)) and (not (-moz-appearance: none)) {
|
|
46552
|
+
.k-dock-manager-toolbar .k-toolbar-button {
|
|
46553
|
+
padding-block: 16px;
|
|
46554
|
+
padding-inline: 8px;
|
|
46555
|
+
}
|
|
46556
|
+
.k-dock-manager-toolbar .k-toolbar-button .k-button-text {
|
|
46557
|
+
-ms-writing-mode: tb-lr;
|
|
46558
|
+
writing-mode: vertical-lr;
|
|
46559
|
+
}
|
|
46560
|
+
}
|
|
46561
|
+
|
|
46562
|
+
.k-dock-manager-pane-container {
|
|
46563
|
+
width: 100%;
|
|
46564
|
+
height: 100%;
|
|
46565
|
+
display: flex;
|
|
46566
|
+
flex-grow: 1;
|
|
46567
|
+
overflow: hidden;
|
|
46568
|
+
}
|
|
46569
|
+
|
|
46570
|
+
.k-dock-manager-splitter,
|
|
46571
|
+
.k-dock-manager-unpinned-container {
|
|
46572
|
+
height: 100%;
|
|
46573
|
+
border-width: 0;
|
|
46574
|
+
align-items: stretch;
|
|
46575
|
+
}
|
|
46576
|
+
|
|
46577
|
+
.k-dock-manager-splitter > .k-pane,
|
|
46578
|
+
.k-dock-manager-unpinned-container > .k-pane {
|
|
46579
|
+
height: auto;
|
|
46580
|
+
flex-direction: column;
|
|
46581
|
+
border-color: inherit;
|
|
46582
|
+
}
|
|
46583
|
+
|
|
46584
|
+
.k-dock-manager-splitter .k-pane-header,
|
|
46585
|
+
.k-dock-manager-unpinned-container .k-pane-header {
|
|
46586
|
+
display: flex;
|
|
46587
|
+
align-items: center;
|
|
46588
|
+
justify-content: center;
|
|
46589
|
+
padding-block: 4px;
|
|
46590
|
+
padding-inline: 24px;
|
|
46591
|
+
border-block-end-width: 1px;
|
|
46592
|
+
border-block-end-style: solid;
|
|
46593
|
+
border-color: inherit;
|
|
46594
|
+
}
|
|
46595
|
+
|
|
46596
|
+
.k-dock-manager-splitter .k-pane-title,
|
|
46597
|
+
.k-dock-manager-unpinned-container .k-pane-title {
|
|
46598
|
+
font-family: Roboto, "Helvetica Neue", sans-serif;
|
|
46599
|
+
font-size: 16px;
|
|
46600
|
+
line-height: 1.2;
|
|
46601
|
+
font-weight: 400;
|
|
46602
|
+
flex: 1 1 auto;
|
|
46603
|
+
white-space: nowrap;
|
|
46604
|
+
text-overflow: ellipsis;
|
|
46605
|
+
overflow: hidden;
|
|
46606
|
+
}
|
|
46607
|
+
|
|
46608
|
+
.k-dock-manager-splitter .k-pane-scrollable,
|
|
46609
|
+
.k-dock-manager-unpinned-container .k-pane-scrollable {
|
|
46610
|
+
height: 100%;
|
|
46611
|
+
display: flex;
|
|
46612
|
+
flex-direction: column;
|
|
46613
|
+
border-color: inherit;
|
|
46614
|
+
}
|
|
46615
|
+
|
|
46616
|
+
.k-dock-manager-splitter .k-pane-content,
|
|
46617
|
+
.k-dock-manager-unpinned-container .k-pane-content {
|
|
46618
|
+
height: 100%;
|
|
46619
|
+
padding-block: 24px;
|
|
46620
|
+
padding-inline: 24px;
|
|
46621
|
+
overflow: auto;
|
|
46622
|
+
flex: 1;
|
|
46623
|
+
}
|
|
46624
|
+
|
|
46625
|
+
.k-dock-manager-splitter .k-pane-actions,
|
|
46626
|
+
.k-dock-manager-unpinned-container .k-pane-actions {
|
|
46627
|
+
display: flex;
|
|
46628
|
+
flex-flow: row nowrap;
|
|
46629
|
+
align-items: center;
|
|
46630
|
+
justify-content: center;
|
|
46631
|
+
}
|
|
46632
|
+
|
|
46633
|
+
.k-dock-manager-splitter .k-splitbar,
|
|
46634
|
+
.k-dock-manager-unpinned-container .k-splitbar {
|
|
46635
|
+
border-width: 0 1px;
|
|
46636
|
+
border-style: solid;
|
|
46637
|
+
border-color: inherit;
|
|
46638
|
+
}
|
|
46639
|
+
|
|
46640
|
+
.k-dock-manager-splitter .k-splitbar-vertical,
|
|
46641
|
+
.k-dock-manager-unpinned-container .k-splitbar-vertical {
|
|
46642
|
+
border-width: 1px 0;
|
|
46643
|
+
}
|
|
46644
|
+
|
|
46645
|
+
.k-dock-manager-unpinned-container {
|
|
46646
|
+
width: 300px;
|
|
46647
|
+
position: absolute;
|
|
46648
|
+
display: flex;
|
|
46649
|
+
height: 100%;
|
|
46650
|
+
border-color: inherit;
|
|
46651
|
+
z-index: 20;
|
|
46652
|
+
}
|
|
46653
|
+
|
|
46654
|
+
.k-dock-manager-unpinned-container .k-pane {
|
|
46655
|
+
display: inline-flex;
|
|
46656
|
+
flex-direction: column;
|
|
46657
|
+
position: relative;
|
|
46658
|
+
flex: 1 1 auto;
|
|
46659
|
+
}
|
|
46660
|
+
|
|
46661
|
+
.k-dock-manager-unpinned-container .k-splitbar {
|
|
46662
|
+
height: 100%;
|
|
46663
|
+
position: relative;
|
|
46664
|
+
flex: none;
|
|
46665
|
+
}
|
|
46666
|
+
|
|
46667
|
+
.k-docking-preview {
|
|
46668
|
+
width: 100%;
|
|
46669
|
+
height: 100%;
|
|
46670
|
+
box-sizing: border-box;
|
|
46671
|
+
display: flex;
|
|
46672
|
+
position: absolute;
|
|
46673
|
+
top: 0;
|
|
46674
|
+
left: 0;
|
|
46675
|
+
border-width: 1px;
|
|
46676
|
+
border-style: dashed;
|
|
46677
|
+
border-radius: 2px;
|
|
46678
|
+
z-index: 10;
|
|
46679
|
+
}
|
|
46680
|
+
|
|
46681
|
+
.k-dock-navigator-container {
|
|
46682
|
+
width: 100%;
|
|
46683
|
+
height: 100%;
|
|
46684
|
+
display: flex;
|
|
46685
|
+
flex-direction: column;
|
|
46686
|
+
align-items: center;
|
|
46687
|
+
position: absolute;
|
|
46688
|
+
z-index: 10001;
|
|
46689
|
+
pointer-events: none;
|
|
46690
|
+
}
|
|
46691
|
+
|
|
46692
|
+
.k-dock-navigator {
|
|
46693
|
+
display: grid;
|
|
46694
|
+
grid-template-columns: repeat(3, auto);
|
|
46695
|
+
grid-template-rows: repeat(3, auto);
|
|
46696
|
+
justify-content: center;
|
|
46697
|
+
position: absolute;
|
|
46698
|
+
}
|
|
46699
|
+
|
|
46700
|
+
.k-dock-indicator {
|
|
46701
|
+
padding: 6px;
|
|
46702
|
+
display: inline-flex;
|
|
46703
|
+
align-items: center;
|
|
46704
|
+
justify-content: center;
|
|
46705
|
+
box-sizing: border-box;
|
|
46706
|
+
position: relative;
|
|
46707
|
+
pointer-events: all;
|
|
46708
|
+
outline-width: 1px;
|
|
46709
|
+
outline-style: solid;
|
|
46710
|
+
}
|
|
46711
|
+
|
|
46712
|
+
.k-dock-indicator.k-dock-indicator-middle {
|
|
46713
|
+
filter: none;
|
|
46714
|
+
}
|
|
46715
|
+
|
|
46716
|
+
.k-dock-indicator-top {
|
|
46717
|
+
grid-area: 1 / 2 / auto;
|
|
46718
|
+
}
|
|
46719
|
+
|
|
46720
|
+
.k-dock-indicator-right {
|
|
46721
|
+
grid-area: 2 / 3 / auto;
|
|
46722
|
+
}
|
|
46723
|
+
|
|
46724
|
+
.k-dock-indicator-bottom {
|
|
46725
|
+
grid-area: 3 / 2 / auto;
|
|
46726
|
+
}
|
|
46727
|
+
|
|
46728
|
+
.k-dock-indicator-left {
|
|
46729
|
+
grid-area: 2 / 1 / auto;
|
|
46730
|
+
}
|
|
46731
|
+
|
|
46732
|
+
.k-dock-indicator-middle {
|
|
46733
|
+
grid-area: 2 / 2 / auto;
|
|
46734
|
+
}
|
|
46735
|
+
|
|
46736
|
+
.k-dock-manager {
|
|
46737
|
+
border-color: rgba(0, 0, 0, 0.08);
|
|
46738
|
+
}
|
|
46739
|
+
|
|
46740
|
+
.k-dock-manager-splitter .k-pane-header,
|
|
46741
|
+
.k-dock-manager-unpinned-container .k-pane-header {
|
|
46742
|
+
background-color: #ffffff;
|
|
46743
|
+
}
|
|
46744
|
+
|
|
46745
|
+
.k-dock-manager-unpinned-container {
|
|
46746
|
+
background-color: #ffffff;
|
|
46747
|
+
box-shadow: 4px 0px 5px 0px rgba(0, 0, 0, 0.04), 2px 0px 4px 0px rgba(0, 0, 0, 0.03);
|
|
46748
|
+
}
|
|
46749
|
+
|
|
46750
|
+
.k-docking-preview {
|
|
46751
|
+
background-color: rgba(63, 81, 181, 0.16);
|
|
46752
|
+
border-color: #3f51b5;
|
|
46753
|
+
}
|
|
46754
|
+
|
|
46755
|
+
.k-dock-indicator {
|
|
46756
|
+
color: #3f51b5;
|
|
46757
|
+
background-color: #ffffff;
|
|
46758
|
+
outline-color: #3f51b5;
|
|
46759
|
+
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));
|
|
46760
|
+
}
|
|
46761
|
+
|
|
46762
|
+
.k-dock-indicator:hover, .k-dock-indicator.k-hover {
|
|
46763
|
+
background-color: #4e5fbb;
|
|
46764
|
+
color: #ffffff;
|
|
46765
|
+
}
|
|
46766
|
+
|
|
46519
46767
|
.k-pane-wrapper {
|
|
46520
46768
|
border-width: 1px;
|
|
46521
46769
|
border-style: solid;
|
|
@@ -56369,18 +56617,17 @@ kendo-scheduler .k-event .k-event-actions,
|
|
|
56369
56617
|
outline: none;
|
|
56370
56618
|
}
|
|
56371
56619
|
|
|
56372
|
-
.k-pdf-viewer .k-canvas
|
|
56620
|
+
.k-pdf-viewer .k-canvas.k-enable-text-select {
|
|
56373
56621
|
-webkit-user-select: text;
|
|
56374
56622
|
-ms-user-select: text;
|
|
56375
56623
|
user-select: text;
|
|
56376
56624
|
cursor: text;
|
|
56377
56625
|
}
|
|
56378
56626
|
|
|
56379
|
-
.k-pdf-viewer .k-canvas
|
|
56627
|
+
.k-pdf-viewer .k-canvas.k-enable-panning {
|
|
56380
56628
|
cursor: grab;
|
|
56381
56629
|
}
|
|
56382
56630
|
|
|
56383
|
-
.k-pdf-viewer .k-canvas .k-enable-panning span::selection,
|
|
56384
56631
|
.k-pdf-viewer .k-canvas.k-enable-panning span::selection {
|
|
56385
56632
|
background-color: transparent;
|
|
56386
56633
|
}
|
|
@@ -56414,10 +56661,6 @@ kendo-scheduler .k-event .k-event-actions,
|
|
|
56414
56661
|
color: transparent;
|
|
56415
56662
|
}
|
|
56416
56663
|
|
|
56417
|
-
.k-pdf-viewer .k-page .k-text-layer mark {
|
|
56418
|
-
color: transparent;
|
|
56419
|
-
}
|
|
56420
|
-
|
|
56421
56664
|
.k-pdf-viewer .k-page .k-text-layer .k-search-highlight-mark {
|
|
56422
56665
|
color: transparent;
|
|
56423
56666
|
}
|
|
@@ -56440,50 +56683,43 @@ kendo-scheduler .k-event .k-event-actions,
|
|
|
56440
56683
|
background: none;
|
|
56441
56684
|
}
|
|
56442
56685
|
|
|
56443
|
-
.k-pdf-viewer-search-
|
|
56444
|
-
|
|
56445
|
-
|
|
56446
|
-
|
|
56447
|
-
.k-search-panel, .k-search-container {
|
|
56686
|
+
.k-pdf-viewer-canvas > .k-search-panel {
|
|
56687
|
+
width: max-content;
|
|
56688
|
+
margin-top: calc(-1.4285714286em + -52px);
|
|
56448
56689
|
padding-block: 16px;
|
|
56449
56690
|
padding-inline: 8px;
|
|
56691
|
+
border-width: 1px;
|
|
56692
|
+
border-style: solid;
|
|
56693
|
+
border-radius: 4px;
|
|
56450
56694
|
display: flex;
|
|
56451
56695
|
gap: 8px;
|
|
56452
56696
|
flex-flow: row nowrap;
|
|
56453
56697
|
flex: 0 0 auto;
|
|
56454
56698
|
justify-content: flex-start;
|
|
56455
56699
|
align-items: center;
|
|
56700
|
+
z-index: 10;
|
|
56701
|
+
cursor: default;
|
|
56456
56702
|
}
|
|
56457
56703
|
|
|
56458
|
-
.k-
|
|
56704
|
+
.k-pdf-viewer-canvas > .k-search-panel .k-search-dialog-draghandle {
|
|
56459
56705
|
cursor: move;
|
|
56460
56706
|
margin-left: 0;
|
|
56461
56707
|
}
|
|
56462
56708
|
|
|
56463
|
-
.k-
|
|
56709
|
+
.k-pdf-viewer-canvas > .k-search-panel .k-textbox {
|
|
56464
56710
|
width: 10em;
|
|
56465
56711
|
flex: none;
|
|
56466
56712
|
}
|
|
56467
56713
|
|
|
56468
|
-
.k-
|
|
56714
|
+
.k-pdf-viewer-canvas > .k-search-panel .k-textbox .k-button {
|
|
56469
56715
|
border-width: 0;
|
|
56470
56716
|
}
|
|
56471
56717
|
|
|
56472
|
-
.k-
|
|
56718
|
+
.k-pdf-viewer-canvas > .k-search-panel .k-search-matches {
|
|
56473
56719
|
display: inline-flex;
|
|
56474
56720
|
gap: 8px;
|
|
56475
56721
|
}
|
|
56476
56722
|
|
|
56477
|
-
.k-pdf-viewer-canvas > .k-search-panel, .k-pdf-viewer-canvas > .k-search-container {
|
|
56478
|
-
width: max-content;
|
|
56479
|
-
margin-top: calc(-1.4285714286em + -52px);
|
|
56480
|
-
border-width: 1px;
|
|
56481
|
-
border-style: solid;
|
|
56482
|
-
border-radius: 4px;
|
|
56483
|
-
z-index: 10;
|
|
56484
|
-
cursor: default;
|
|
56485
|
-
}
|
|
56486
|
-
|
|
56487
56723
|
.k-pdf-viewer {
|
|
56488
56724
|
border-color: rgba(0, 0, 0, 0.12);
|
|
56489
56725
|
color: rgba(0, 0, 0, 0.87);
|
|
@@ -56518,7 +56754,7 @@ kendo-scheduler .k-event .k-event-actions,
|
|
|
56518
56754
|
background-color: yellow;
|
|
56519
56755
|
}
|
|
56520
56756
|
|
|
56521
|
-
.k-pdf-viewer-canvas > .k-search-panel
|
|
56757
|
+
.k-pdf-viewer-canvas > .k-search-panel {
|
|
56522
56758
|
border-color: rgba(0, 0, 0, 0.12);
|
|
56523
56759
|
color: rgba(0, 0, 0, 0.87);
|
|
56524
56760
|
background-color: #ffffff;
|