@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.scss CHANGED
@@ -3916,6 +3916,7 @@ $kendo-components: (
3916
3916
  "panelbar",
3917
3917
  "splitter",
3918
3918
  "tile-layout",
3919
+ "dock-manager",
3919
3920
 
3920
3921
  // Data management
3921
3922
  "grid",
@@ -4088,6 +4089,11 @@ $_kendo-dependencies: (
4088
4089
  "treeview"
4089
4090
  ),
4090
4091
  dropzone: (),
4092
+ dock-manager: (
4093
+ "splitter",
4094
+ "toolbar",
4095
+ "tabstrip"
4096
+ ),
4091
4097
  editor: (
4092
4098
  "button",
4093
4099
  "checkbox",
@@ -42026,6 +42032,7 @@ $kendo-splitbar-selected-text: $kendo-selected-text !default;
42026
42032
  // Pane
42027
42033
  .k-pane {
42028
42034
  overflow: hidden;
42035
+ box-sizing: border-box;
42029
42036
  }
42030
42037
  .k-scrollable {
42031
42038
  overflow: auto;
@@ -42438,6 +42445,455 @@ $kendo-tile-layout-hint-bg: rgba(255, 255, 255, .2) !default;
42438
42445
  @include kendo-tile-layout--styles();
42439
42446
  }
42440
42447
 
42448
+ // #endregion
42449
+ // #region @import "./dock-manager/_index.scss"; -> scss/dock-manager/_index.scss
42450
+ // #region @import "../core/_index.scss"; -> scss/core/_index.scss
42451
+ // File already imported_once. Skipping output.
42452
+ // #endregion
42453
+ // #region @import "../utils/_index.scss"; -> scss/utils/_index.scss
42454
+ // File already imported_once. Skipping output.
42455
+ // #endregion
42456
+
42457
+ // Module meta
42458
+ $_kendo-module-meta: (
42459
+ name: "dock-manager",
42460
+ dependencies: (
42461
+ "splitter",
42462
+ "toolbar",
42463
+ "tabstrip"
42464
+ )
42465
+ );
42466
+
42467
+ // Dependencies
42468
+ // #region @import "../splitter/_index.scss"; -> scss/splitter/_index.scss
42469
+ // File already imported_once. Skipping output.
42470
+ // #endregion
42471
+ // #region @import "../toolbar/_index.scss"; -> scss/toolbar/_index.scss
42472
+ // File already imported_once. Skipping output.
42473
+ // #endregion
42474
+ // #region @import "../tabstrip/_index.scss"; -> scss/tabstrip/_index.scss
42475
+ // File already imported_once. Skipping output.
42476
+ // #endregion
42477
+
42478
+ // Component
42479
+ // #region @import "./_variables.scss"; -> scss/dock-manager/_variables.scss
42480
+ /// The width of the border around the DockManager component.
42481
+ /// @group dock-manager
42482
+ $kendo-dock-manager-border-width: 1px !default;
42483
+ /// The style of the border around the DockManager component.
42484
+ /// @group dock-manager
42485
+ $kendo-dock-manager-border-style: solid !default;
42486
+ /// The color of the border around the DockManager component.
42487
+ /// @group dock-manager
42488
+ $kendo-dock-manager-border: $kendo-base-border !default;
42489
+
42490
+ /// The vertical padding of the pane header in the DockManager component.
42491
+ /// @group dock-manager
42492
+ $kendo-dock-manager-pane-header-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
42493
+ /// The horizontal padding of the pane header in the DockManager component.
42494
+ /// @group dock-manager
42495
+ $kendo-dock-manager-pane-header-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
42496
+ /// The width of the border around the pane header in the DockManager component.
42497
+ /// @group dock-manager
42498
+ $kendo-dock-manager-pane-header-border-width: $kendo-dock-manager-border-width !default;
42499
+ /// The style of the border around the pane header in the DockManager component.
42500
+ /// @group dock-manager
42501
+ $kendo-dock-manager-pane-header-border-style: solid !default;
42502
+ /// The background color of the pane header in the DockManager component.
42503
+ /// @group dock-manager
42504
+ $kendo-dock-manager-pane-header-bg: $kendo-component-header-bg !default;
42505
+
42506
+ /// The vertical padding of the pane title in the DockManager component.
42507
+ /// @group dock-manager
42508
+ $kendo-dock-manager-pane-title-padding-y: null !default;
42509
+ /// The horizontal padding of the pane title in the DockManager component.
42510
+ /// @group dock-manager
42511
+ $kendo-dock-manager-pane-title-padding-x: null !default;
42512
+ /// The font family of the pane title in the DockManager component.
42513
+ /// @group dock-manager
42514
+ $kendo-dock-manager-pane-title-font-family: $kendo-font-family !default;
42515
+ /// The font size of the pane title in the DockManager component.
42516
+ /// @group dock-manager
42517
+ $kendo-dock-manager-pane-title-font-size: $kendo-font-size-lg !default;
42518
+ /// The line height of the pane title in the DockManager component.
42519
+ /// @group dock-manager
42520
+ $kendo-dock-manager-pane-title-line-height: $kendo-line-height-sm !default;
42521
+ /// The font weight of the pane title in the DockManager component.
42522
+ /// @group dock-manager
42523
+ $kendo-dock-manager-pane-title-font-weight: $kendo-font-weight-normal !default;
42524
+
42525
+ /// The horizontal padding of the pane content in the DockManager component.
42526
+ /// @group dock-manager
42527
+ $kendo-dock-manager-pane-content-padding-x: $kendo-dock-manager-pane-header-padding-x !default;
42528
+ /// The vertical padding of the pane content in the DockManager component.
42529
+ /// @group dock-manager
42530
+ $kendo-dock-manager-pane-content-padding-y: $kendo-dock-manager-pane-header-padding-x !default;
42531
+
42532
+ /// The horizontal padding of the tabbed pane in the DockManager component.
42533
+ /// @group dock-manager
42534
+ $kendo-dock-manager-tabbed-pane-padding-y: k-map-get( $kendo-spacing, 3.5 ) !default;
42535
+ /// The horizontal padding of the tabbed pane in the DockManager component.
42536
+ /// @group dock-manager
42537
+ $kendo-dock-manager-tabbed-pane-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
42538
+
42539
+ /// The width of the unpinned pane container in the DockManager component.
42540
+ /// @group dock-manager
42541
+ $kendo-dock-manager-unpinned-container-width: 300px !default;
42542
+ /// The background-color of the unpinned pane container in the DockManager component.
42543
+ /// @group dock-manager
42544
+ $kendo-dock-manager-unpinned-container-bg: $kendo-color-white !default;
42545
+ /// The box shadow of the unpinned pane container in the DockManager component.
42546
+ /// @group dock-manager
42547
+ $kendo-dock-manager-unpinned-container-shadow: 4px 0px 5px 0px rgba(0, 0, 0, 0.04), 2px 0px 4px 0px rgba(0, 0, 0, 0.03) !default;
42548
+
42549
+ /// The padding of the dock indicator in the DockManager component.
42550
+ /// @group dock-manager
42551
+ $kendo-dock-indicator-padding: k-map-get( $kendo-spacing, 1.5 ) !default;
42552
+ /// The background color of the dock indicator in the DockManager component.
42553
+ /// @group dock-manager
42554
+ $kendo-dock-indicator-bg: #f5f5f5 !default;
42555
+ /// The text color of the dock indicator in the DockManager component.
42556
+ /// @group dock-manager
42557
+ $kendo-dock-indicator-text: $kendo-color-primary !default;
42558
+ /// The outline width of the dock indicator in the DockManager component.
42559
+ /// @group dock-manager
42560
+ $kendo-dock-indicator-outline-width: 1px !default;
42561
+ /// The outline style of the dock indicator in the DockManager component.
42562
+ /// @group dock-manager
42563
+ $kendo-dock-indicator-outline-style: solid !default;
42564
+ /// The outline color of the dock indicator in the DockManager component.
42565
+ /// @group dock-manager
42566
+ $kendo-dock-indicator-outline: $kendo-dock-indicator-text !default;
42567
+ /// The box shadow of the dock indicator in the DockManager component.
42568
+ /// @group dock-manager
42569
+ $kendo-dock-indicator-shadow: 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.20) ) !default;
42570
+
42571
+ /// The background color of the hovered dock indicator in the DockManager component.
42572
+ /// @group dock-manager
42573
+ $kendo-dock-indicator-hover-bg: $kendo-color-primary !default;
42574
+ /// The text color of the hovered dock indicator in the DockManager component.
42575
+ /// @group dock-manager
42576
+ $kendo-dock-indicator-hover-text: $kendo-color-white !default;
42577
+
42578
+ /// The width of the border around the dropping area in the DockManager component.
42579
+ /// @group dock-manager
42580
+ $kendo-dock-manager-dock-preview-border-width: 1px !default;
42581
+ /// The style of the border around the dropping area in the DockManager component.
42582
+ /// @group dock-manager
42583
+ $kendo-dock-manager-dock-preview-border-style: dashed !default;
42584
+ /// The border radius of the dropping area in the DockManager component.
42585
+ /// @group dock-manager
42586
+ $kendo-dock-manager-dock-preview-border-radius: $kendo-border-radius-sm !default;
42587
+ /// The background color of the dropping area in the DockManager component.
42588
+ /// @group dock-manager
42589
+ $kendo-dock-manager-dock-preview-bg: rgba( $kendo-color-primary, .16 ) !default;
42590
+ /// The border color of the dropping area in the DockManager component.
42591
+ /// @group dock-manager
42592
+ $kendo-dock-manager-dock-preview-border: $kendo-color-primary !default;
42593
+
42594
+ // #endregion
42595
+ // #region @import "./_layout.scss"; -> scss/dock-manager/_layout.scss
42596
+ @mixin kendo-dock-manager--layout-base() {
42597
+
42598
+ // DockManager
42599
+ .k-dock-manager {
42600
+ width: 100%;
42601
+ height: 100%;
42602
+ border-width: $kendo-dock-manager-border-width;
42603
+ border-style: $kendo-dock-manager-border-style;
42604
+ position: relative;
42605
+ display: flex;
42606
+ flex-flow: row nowrap;
42607
+ overflow: auto;
42608
+ box-sizing: border-box;
42609
+ }
42610
+
42611
+ // Toolbar
42612
+ .k-dock-manager-toolbar {
42613
+ border-width: 0 $kendo-dock-manager-border-width 0 0;
42614
+ border-color: inherit;
42615
+ flex-shrink: 0;
42616
+ writing-mode: vertical-lr;
42617
+ box-shadow: none;
42618
+
42619
+ &::before {
42620
+ height: 0;
42621
+ }
42622
+
42623
+ .k-separator-horizontal {
42624
+ width: $kendo-line-height-em;
42625
+ height: 0;
42626
+ border-width: $kendo-dock-manager-border-width 0 0;
42627
+ }
42628
+
42629
+ // Needed because of a bug in Chrome - Issue 1473554
42630
+ // A fix will be shipped likely in milestone 118 and then we can revisit this
42631
+ @supports (not (-ms-ime-mode: none)) and (not (overflow: -webkit-marquee)) and (not (-moz-appearance:none)) {
42632
+ .k-toolbar-button {
42633
+ padding-block: $kendo-button-padding-x;
42634
+ padding-inline: $kendo-button-padding-y;
42635
+ }
42636
+ .k-toolbar-button .k-button-text {
42637
+ writing-mode: vertical-lr;
42638
+ }
42639
+ }
42640
+ }
42641
+
42642
+ // Panes
42643
+ .k-dock-manager-pane-container {
42644
+ width: 100%;
42645
+ height: 100%;
42646
+ display: flex;
42647
+ flex-grow: 1;
42648
+ overflow: hidden;
42649
+ }
42650
+
42651
+ // Splitter
42652
+ .k-dock-manager-splitter,
42653
+ .k-dock-manager-unpinned-container {
42654
+ height: 100%;
42655
+ border-width: 0;
42656
+ align-items: stretch;
42657
+
42658
+ > .k-pane {
42659
+ height: auto;
42660
+ flex-direction: column;
42661
+ border-color: inherit;
42662
+ }
42663
+
42664
+ .k-pane-header {
42665
+ display: flex;
42666
+ align-items: center;
42667
+ justify-content: center;
42668
+ padding-block: $kendo-dock-manager-pane-header-padding-y;
42669
+ padding-inline: $kendo-dock-manager-pane-header-padding-x;
42670
+ border-block-end-width: $kendo-dock-manager-pane-header-border-width;
42671
+ border-block-end-style: $kendo-dock-manager-pane-header-border-style;
42672
+ border-color: inherit;
42673
+ }
42674
+
42675
+ .k-pane-title {
42676
+ padding-block: $kendo-dock-manager-pane-title-padding-y;
42677
+ padding-inline: $kendo-dock-manager-pane-title-padding-x;
42678
+ font-family: $kendo-dock-manager-pane-title-font-family;
42679
+ font-size: $kendo-dock-manager-pane-title-font-size;
42680
+ line-height: $kendo-dock-manager-pane-title-line-height;
42681
+ font-weight: $kendo-dock-manager-pane-title-font-weight;
42682
+ flex: 1 1 auto;
42683
+ white-space: nowrap;
42684
+ text-overflow: ellipsis;
42685
+ overflow: hidden;
42686
+ }
42687
+
42688
+ .k-pane-scrollable {
42689
+ height: 100%;
42690
+ display: flex;
42691
+ flex-direction: column;
42692
+ border-color: inherit;
42693
+ }
42694
+
42695
+ .k-pane-content {
42696
+ height: 100%;
42697
+ padding-block: $kendo-dock-manager-pane-content-padding-y;
42698
+ padding-inline: $kendo-dock-manager-pane-content-padding-x;
42699
+ overflow: auto;
42700
+ flex: 1;
42701
+ }
42702
+
42703
+ .k-pane-actions {
42704
+ display: flex;
42705
+ flex-flow: row nowrap;
42706
+ align-items: center;
42707
+ justify-content: center;
42708
+ }
42709
+
42710
+ .k-pane-tabbed {
42711
+ padding-block-start: $kendo-dock-manager-tabbed-pane-padding-y;
42712
+ padding-block-end: $kendo-dock-manager-tabbed-pane-padding-x;
42713
+ padding-inline: $kendo-dock-manager-tabbed-pane-padding-x;
42714
+ }
42715
+
42716
+ .k-splitbar {
42717
+ border-width: 0 1px;
42718
+ border-style: solid;
42719
+ border-color: inherit;
42720
+ }
42721
+ .k-splitbar-vertical {
42722
+ border-width: 1px 0;
42723
+ }
42724
+ }
42725
+
42726
+ // Unpinned pane
42727
+ .k-dock-manager-unpinned-container {
42728
+ width: $kendo-dock-manager-unpinned-container-width;
42729
+ position: absolute;
42730
+ display: flex;
42731
+ height: 100%;
42732
+ border-color: inherit;
42733
+ z-index: 20;
42734
+
42735
+ .k-pane {
42736
+ display: inline-flex;
42737
+ flex-direction: column;
42738
+ position: relative;
42739
+ flex: 1 1 auto;
42740
+ }
42741
+
42742
+ .k-splitbar {
42743
+ height: 100%;
42744
+ position: relative;
42745
+ flex: none;
42746
+ }
42747
+ }
42748
+
42749
+ // Docking preview
42750
+ .k-docking-preview {
42751
+ width: 100%;
42752
+ height: 100%;
42753
+ box-sizing: border-box;
42754
+ display: flex;
42755
+ position: absolute;
42756
+ top: 0;
42757
+ left: 0;
42758
+ border-width: $kendo-dock-manager-dock-preview-border-width;
42759
+ border-style: $kendo-dock-manager-dock-preview-border-style;
42760
+ border-radius: $kendo-dock-manager-dock-preview-border-radius;
42761
+ z-index: 10;
42762
+ }
42763
+
42764
+ }
42765
+
42766
+ @mixin kendo-dock-navigator--layout() {
42767
+
42768
+ // DockNavigator
42769
+ .k-dock-navigator-container {
42770
+ width: 100%;
42771
+ height: 100%;
42772
+ display: flex;
42773
+ flex-direction: column;
42774
+ align-items: center;
42775
+ position: absolute;
42776
+ z-index: 10001;
42777
+ pointer-events: none;
42778
+ }
42779
+
42780
+ .k-dock-navigator {
42781
+ display: grid;
42782
+ grid-template-columns: repeat(3, auto);
42783
+ grid-template-rows: repeat(3, auto);
42784
+ justify-content: center;
42785
+ position: absolute;
42786
+ }
42787
+
42788
+ .k-dock-indicator {
42789
+ padding: $kendo-dock-indicator-padding;
42790
+ display: inline-flex;
42791
+ align-items: center;
42792
+ justify-content: center;
42793
+ box-sizing: border-box;
42794
+ position: relative;
42795
+ pointer-events: all;
42796
+ outline-width: $kendo-dock-indicator-outline-width;
42797
+ outline-style: $kendo-dock-indicator-outline-style;
42798
+
42799
+ &.k-dock-indicator-middle {
42800
+ filter: none;
42801
+ }
42802
+ }
42803
+
42804
+ .k-dock-indicator-top {
42805
+ grid-area: 1 / 2 / auto;
42806
+ }
42807
+ .k-dock-indicator-right {
42808
+ grid-area: 2 / 3 / auto;
42809
+ }
42810
+ .k-dock-indicator-bottom {
42811
+ grid-area: 3 / 2 / auto;
42812
+ }
42813
+ .k-dock-indicator-left {
42814
+ grid-area: 2 / 1 / auto;
42815
+ }
42816
+ .k-dock-indicator-middle {
42817
+ grid-area: 2 / 2 / auto;
42818
+ }
42819
+
42820
+ }
42821
+
42822
+ @mixin kendo-dock-manager--layout() {
42823
+ @include kendo-dock-manager--layout-base();
42824
+ @include kendo-dock-navigator--layout();
42825
+ }
42826
+
42827
+ // #endregion
42828
+ // #region @import "./_theme.scss"; -> scss/dock-manager/_theme.scss
42829
+ @mixin kendo-dock-manager--theme-base() {
42830
+
42831
+ // DockManager
42832
+ .k-dock-manager {
42833
+ border-color: $kendo-dock-manager-border;
42834
+ }
42835
+
42836
+ // Splitter
42837
+ .k-dock-manager-splitter .k-pane-header,
42838
+ .k-dock-manager-unpinned-container .k-pane-header {
42839
+ background-color: $kendo-dock-manager-pane-header-bg;
42840
+ }
42841
+
42842
+ .k-dock-manager-unpinned-container {
42843
+ background-color: $kendo-dock-manager-unpinned-container-bg;
42844
+ @include box-shadow( $kendo-dock-manager-unpinned-container-shadow );
42845
+ }
42846
+
42847
+ // Docking preview
42848
+ .k-docking-preview {
42849
+ background-color: $kendo-dock-manager-dock-preview-bg;
42850
+ border-color: $kendo-dock-manager-dock-preview-border;
42851
+ }
42852
+
42853
+ }
42854
+
42855
+ @mixin kendo-dock-navigator--theme() {
42856
+
42857
+ .k-dock-indicator {
42858
+ color: $kendo-dock-indicator-text;
42859
+ background-color: $kendo-dock-indicator-bg;
42860
+ outline-color: $kendo-dock-indicator-outline;
42861
+ filter: $kendo-dock-indicator-shadow;
42862
+
42863
+ &:hover,
42864
+ &.k-hover {
42865
+ background-color: $kendo-dock-indicator-hover-bg;
42866
+ color: $kendo-dock-indicator-hover-text;
42867
+ }
42868
+ }
42869
+
42870
+ }
42871
+
42872
+ @mixin kendo-dock-manager--theme() {
42873
+ @include kendo-dock-manager--theme-base();
42874
+ @include kendo-dock-navigator--theme();
42875
+ }
42876
+
42877
+ // #endregion
42878
+
42879
+ // Register
42880
+ // #region @import "../core/module-system/index.import.scss"; -> scss/core/module-system/index.import.scss
42881
+ // File already imported_once. Skipping output.
42882
+ // #endregion
42883
+ @include module-register( $_kendo-module-meta... );
42884
+
42885
+ // Expose
42886
+ @mixin kendo-dock-manager--styles() {
42887
+ @include module-render("dock-manager") {
42888
+ @include kendo-dock-manager--layout();
42889
+ @include kendo-dock-manager--theme();
42890
+ }
42891
+ }
42892
+
42893
+ @if $kendo-auto-bootstrap {
42894
+ @include kendo-dock-manager--styles();
42895
+ }
42896
+
42441
42897
  // #endregion
42442
42898
 
42443
42899
 
@@ -55422,10 +55878,9 @@ $kendo-pdf-viewer-page-text: $kendo-component-text !default;
55422
55878
  $kendo-pdf-viewer-page-border: $kendo-component-border !default;
55423
55879
  $kendo-pdf-viewer-page-shadow: 0 0 k-math-div( $kendo-pdf-viewer-page-spacing, 2 ) $kendo-pdf-viewer-page-border !default;
55424
55880
 
55425
- $kendo-pdf-viewer-search-dialog-padding-x: $kendo-toolbar-md-padding-x !default;
55426
- $kendo-pdf-viewer-search-dialog-padding-y: calc( #{$kendo-toolbar-md-padding-x} * 2 ) !default;
55427
- $kendo-pdf-viewer-search-dialog-spacing: $kendo-toolbar-md-spacing !default;
55428
-
55881
+ $kendo-pdf-viewer-search-panel-padding-x: $kendo-toolbar-md-padding-x !default;
55882
+ $kendo-pdf-viewer-search-panel-padding-y: calc( #{$kendo-toolbar-md-padding-x} * 2 ) !default;
55883
+ $kendo-pdf-viewer-search-panel-spacing: $kendo-toolbar-md-spacing !default;
55429
55884
  $kendo-pdf-viewer-search-panel-border-width: 1px !default;
55430
55885
  $kendo-pdf-viewer-search-panel-border-radius: 0 !default;
55431
55886
  $kendo-pdf-viewer-search-panel-bg: $kendo-component-bg !default;
@@ -55487,19 +55942,17 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
55487
55942
  flex: 1 1 auto;
55488
55943
  outline: none;
55489
55944
 
55490
- .k-enable-text-select,
55491
55945
  &.k-enable-text-select {
55492
55946
  user-select: text;
55493
55947
  cursor: text;
55494
55948
  }
55495
55949
 
55496
- .k-enable-panning,
55497
55950
  &.k-enable-panning {
55498
55951
  cursor: grab;
55499
- }
55500
- .k-enable-panning span::selection,
55501
- &.k-enable-panning span::selection {
55502
- background-color: transparent;
55952
+
55953
+ span::selection {
55954
+ background-color: transparent;
55955
+ }
55503
55956
  }
55504
55957
  }
55505
55958
 
@@ -55532,10 +55985,6 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
55532
55985
  color: transparent;
55533
55986
  }
55534
55987
 
55535
- mark {
55536
- color: transparent;
55537
- }
55538
-
55539
55988
  .k-search-highlight-mark {
55540
55989
  color: transparent;
55541
55990
  }
@@ -55563,19 +56012,22 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
55563
56012
  }
55564
56013
 
55565
56014
  // Search
55566
- .k-pdf-viewer-search-dialog {
55567
- padding: 0 !important; // stylelint-disable-line declaration-no-important
55568
- }
55569
-
55570
- .k-search-panel {
55571
- padding-block: $kendo-pdf-viewer-search-dialog-padding-y;
55572
- padding-inline: $kendo-pdf-viewer-search-dialog-padding-x;
56015
+ .k-pdf-viewer-canvas > .k-search-panel {
56016
+ width: max-content;
56017
+ margin-top: calc( (#{$kendo-button-calc-size} + ( 2 * #{$kendo-pdf-viewer-search-panel-border-width} ) + ( 2 * #{$kendo-pdf-viewer-search-panel-padding-y} )) * -1 );
56018
+ padding-block: $kendo-pdf-viewer-search-panel-padding-y;
56019
+ padding-inline: $kendo-pdf-viewer-search-panel-padding-x;
56020
+ border-width: $kendo-pdf-viewer-search-panel-border-width;
56021
+ border-style: solid;
56022
+ border-radius: $kendo-pdf-viewer-search-panel-border-radius;
55573
56023
  display: flex;
55574
- gap: $kendo-pdf-viewer-search-dialog-spacing;
56024
+ gap: $kendo-pdf-viewer-search-panel-spacing;
55575
56025
  flex-flow: row nowrap;
55576
56026
  flex: 0 0 auto;
55577
56027
  justify-content: flex-start;
55578
56028
  align-items: center;
56029
+ z-index: 10;
56030
+ cursor: default;
55579
56031
 
55580
56032
  .k-search-dialog-draghandle {
55581
56033
  cursor: move;
@@ -55597,21 +56049,6 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
55597
56049
  }
55598
56050
  }
55599
56051
 
55600
- .k-pdf-viewer-canvas > .k-search-panel {
55601
- width: max-content;
55602
- margin-top: calc( (#{$kendo-button-calc-size} + ( 2 * #{$kendo-pdf-viewer-search-panel-border-width} ) + ( 2 * #{$kendo-pdf-viewer-search-dialog-padding-y} )) * -1 );
55603
- border-width: $kendo-pdf-viewer-search-panel-border-width;
55604
- border-style: solid;
55605
- border-radius: $kendo-pdf-viewer-search-panel-border-radius;
55606
- z-index: 10;
55607
- cursor: default;
55608
- }
55609
-
55610
- // Alias
55611
- .k-search-container {
55612
- @extend .k-search-panel !optional;
55613
- }
55614
-
55615
56052
  }
55616
56053
 
55617
56054
 
@@ -55689,10 +56126,6 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
55689
56126
  @include box-shadow( $kendo-pdf-viewer-search-panel-shadow );
55690
56127
  }
55691
56128
 
55692
- .k-search-container {
55693
- @extend .k-search-panel !optional;
55694
- }
55695
-
55696
56129
  }
55697
56130
 
55698
56131
 
@@ -58067,6 +58500,7 @@ $kendo-signature-maximized-line-width: 3px !default;
58067
58500
  @include kendo-panelbar--styles();
58068
58501
  @include kendo-splitter--styles();
58069
58502
  @include kendo-tile-layout--styles();
58503
+ @include kendo-dock-manager--styles();
58070
58504
 
58071
58505
 
58072
58506
  // Data management