@progress/kendo-theme-classic 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.scss CHANGED
@@ -3831,6 +3831,7 @@ $kendo-components: (
3831
3831
  "panelbar",
3832
3832
  "splitter",
3833
3833
  "tile-layout",
3834
+ "dock-manager",
3834
3835
 
3835
3836
  // Data management
3836
3837
  "grid",
@@ -4003,6 +4004,11 @@ $_kendo-dependencies: (
4003
4004
  "treeview"
4004
4005
  ),
4005
4006
  dropzone: (),
4007
+ dock-manager: (
4008
+ "splitter",
4009
+ "toolbar",
4010
+ "tabstrip"
4011
+ ),
4006
4012
  editor: (
4007
4013
  "button",
4008
4014
  "checkbox",
@@ -43246,6 +43252,7 @@ $kendo-splitbar-selected-text: $kendo-selected-text !default;
43246
43252
  // Pane
43247
43253
  .k-pane {
43248
43254
  overflow: hidden;
43255
+ box-sizing: border-box;
43249
43256
  }
43250
43257
  .k-scrollable {
43251
43258
  overflow: auto;
@@ -43687,6 +43694,471 @@ $kendo-tile-layout-hint-bg: rgba( white, .2 ) !default;
43687
43694
  @include kendo-tile-layout--styles();
43688
43695
  }
43689
43696
 
43697
+ // #endregion
43698
+ // #region @import "./dock-manager/_index.scss"; -> scss/dock-manager/_index.scss
43699
+ // #region @import "../core/_index.scss"; -> scss/core/_index.scss
43700
+ // File already imported_once. Skipping output.
43701
+ // #endregion
43702
+ // #region @import "../utils/_index.scss"; -> scss/utils/_index.scss
43703
+ // File already imported_once. Skipping output.
43704
+ // #endregion
43705
+
43706
+ // Module meta
43707
+ $_kendo-module-meta: (
43708
+ name: "dock-manager",
43709
+ dependencies: (
43710
+ "splitter",
43711
+ "toolbar",
43712
+ "tabstrip"
43713
+ )
43714
+ );
43715
+
43716
+ // Dependencies
43717
+ // #region @import "../splitter/_index.scss"; -> scss/splitter/_index.scss
43718
+ // File already imported_once. Skipping output.
43719
+ // #endregion
43720
+ // #region @import "../toolbar/_index.scss"; -> scss/toolbar/_index.scss
43721
+ // File already imported_once. Skipping output.
43722
+ // #endregion
43723
+ // #region @import "../tabstrip/_index.scss"; -> scss/tabstrip/_index.scss
43724
+ // File already imported_once. Skipping output.
43725
+ // #endregion
43726
+
43727
+ // Component
43728
+ // #region @import "./_variables.scss"; -> scss/dock-manager/_variables.scss
43729
+ /// The width of the border around the DockManager component.
43730
+ /// @group dock-manager
43731
+ $kendo-dock-manager-border-width: 1px !default;
43732
+ /// The style of the border around the DockManager component.
43733
+ /// @group dock-manager
43734
+ $kendo-dock-manager-border-style: solid !default;
43735
+ /// The color of the border around the DockManager component.
43736
+ /// @group dock-manager
43737
+ $kendo-dock-manager-border: $kendo-base-border !default;
43738
+
43739
+ /// The vertical padding of the pane header in the DockManager component.
43740
+ /// @group dock-manager
43741
+ $kendo-dock-manager-pane-header-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
43742
+ /// The horizontal padding of the pane header in the DockManager component.
43743
+ /// @group dock-manager
43744
+ $kendo-dock-manager-pane-header-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
43745
+ /// The width of the border around the pane header in the DockManager component.
43746
+ /// @group dock-manager
43747
+ $kendo-dock-manager-pane-header-border-width: $kendo-dock-manager-border-width !default;
43748
+ /// The style of the border around the pane header in the DockManager component.
43749
+ /// @group dock-manager
43750
+ $kendo-dock-manager-pane-header-border-style: solid !default;
43751
+ /// The background color of the pane header in the DockManager component.
43752
+ /// @group dock-manager
43753
+ $kendo-dock-manager-pane-header-bg: $kendo-component-header-bg !default;
43754
+
43755
+ /// The vertical padding of the pane title in the DockManager component.
43756
+ /// @group dock-manager
43757
+ $kendo-dock-manager-pane-title-padding-y: null !default;
43758
+ /// The horizontal padding of the pane title in the DockManager component.
43759
+ /// @group dock-manager
43760
+ $kendo-dock-manager-pane-title-padding-x: null !default;
43761
+ /// The font family of the pane title in the DockManager component.
43762
+ /// @group dock-manager
43763
+ $kendo-dock-manager-pane-title-font-family: $kendo-font-family !default;
43764
+ /// The font size of the pane title in the DockManager component.
43765
+ /// @group dock-manager
43766
+ $kendo-dock-manager-pane-title-font-size: $kendo-font-size-lg !default;
43767
+ /// The line height of the pane title in the DockManager component.
43768
+ /// @group dock-manager
43769
+ $kendo-dock-manager-pane-title-line-height: $kendo-line-height-sm !default;
43770
+ /// The font weight of the pane title in the DockManager component.
43771
+ /// @group dock-manager
43772
+ $kendo-dock-manager-pane-title-font-weight: $kendo-font-weight-normal !default;
43773
+
43774
+ /// The horizontal padding of the pane content in the DockManager component.
43775
+ /// @group dock-manager
43776
+ $kendo-dock-manager-pane-content-padding-x: $kendo-dock-manager-pane-header-padding-x !default;
43777
+ /// The vertical padding of the pane content in the DockManager component.
43778
+ /// @group dock-manager
43779
+ $kendo-dock-manager-pane-content-padding-y: $kendo-dock-manager-pane-header-padding-x !default;
43780
+
43781
+ /// The horizontal padding of the tabbed pane in the DockManager component.
43782
+ /// @group dock-manager
43783
+ $kendo-dock-manager-tabbed-pane-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
43784
+ /// The horizontal padding of the tabbed pane in the DockManager component.
43785
+ /// @group dock-manager
43786
+ $kendo-dock-manager-tabbed-pane-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
43787
+
43788
+ /// The width of the unpinned pane container in the DockManager component.
43789
+ /// @group dock-manager
43790
+ $kendo-dock-manager-unpinned-container-width: 300px !default;
43791
+ /// The background-color of the unpinned pane container in the DockManager component.
43792
+ /// @group dock-manager
43793
+ $kendo-dock-manager-unpinned-container-bg: $kendo-color-white !default;
43794
+ /// The box shadow of the unpinned pane container in the DockManager component.
43795
+ /// @group dock-manager
43796
+ $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;
43797
+
43798
+ /// The padding of the dock indicator in the DockManager component.
43799
+ /// @group dock-manager
43800
+ $kendo-dock-indicator-padding: k-map-get( $kendo-spacing, 1.5 ) !default;
43801
+ /// The background color of the dock indicator in the DockManager component.
43802
+ /// @group dock-manager
43803
+ $kendo-dock-indicator-bg: #f5f5f5 !default;
43804
+ /// The text color of the dock indicator in the DockManager component.
43805
+ /// @group dock-manager
43806
+ $kendo-dock-indicator-text: $kendo-color-primary !default;
43807
+ /// The outline width of the dock indicator in the DockManager component.
43808
+ /// @group dock-manager
43809
+ $kendo-dock-indicator-outline-width: 1px !default;
43810
+ /// The outline style of the dock indicator in the DockManager component.
43811
+ /// @group dock-manager
43812
+ $kendo-dock-indicator-outline-style: solid !default;
43813
+ /// The outline color of the dock indicator in the DockManager component.
43814
+ /// @group dock-manager
43815
+ $kendo-dock-indicator-outline: $kendo-dock-indicator-text !default;
43816
+ /// The box shadow of the dock indicator in the DockManager component.
43817
+ /// @group dock-manager
43818
+ $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;
43819
+
43820
+ /// The background color of the hovered dock indicator in the DockManager component.
43821
+ /// @group dock-manager
43822
+ $kendo-dock-indicator-hover-bg: $kendo-color-primary !default;
43823
+ /// The text color of the hovered dock indicator in the DockManager component.
43824
+ /// @group dock-manager
43825
+ $kendo-dock-indicator-hover-text: $kendo-color-white !default;
43826
+
43827
+ /// The width of the border around the dropping area in the DockManager component.
43828
+ /// @group dock-manager
43829
+ $kendo-dock-manager-dock-preview-border-width: 1px !default;
43830
+ /// The style of the border around the dropping area in the DockManager component.
43831
+ /// @group dock-manager
43832
+ $kendo-dock-manager-dock-preview-border-style: dashed !default;
43833
+ /// The border radius of the dropping area in the DockManager component.
43834
+ /// @group dock-manager
43835
+ $kendo-dock-manager-dock-preview-border-radius: $kendo-border-radius-sm !default;
43836
+ /// The background color of the dropping area in the DockManager component.
43837
+ /// @group dock-manager
43838
+ $kendo-dock-manager-dock-preview-bg: rgba( $kendo-color-primary, .16 ) !default;
43839
+ /// The border color of the dropping area in the DockManager component.
43840
+ /// @group dock-manager
43841
+ $kendo-dock-manager-dock-preview-border: $kendo-color-primary !default;
43842
+
43843
+ // #endregion
43844
+ // #region @import "./_layout.scss"; -> scss/dock-manager/_layout.scss
43845
+ // #region @import "@progress/kendo-theme-default/scss/dock-manager/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/dock-manager/_layout.scss
43846
+ @mixin kendo-dock-manager--layout-base() {
43847
+
43848
+ // DockManager
43849
+ .k-dock-manager {
43850
+ width: 100%;
43851
+ height: 100%;
43852
+ border-width: $kendo-dock-manager-border-width;
43853
+ border-style: $kendo-dock-manager-border-style;
43854
+ position: relative;
43855
+ display: flex;
43856
+ flex-flow: row nowrap;
43857
+ overflow: auto;
43858
+ box-sizing: border-box;
43859
+ }
43860
+
43861
+ // Toolbar
43862
+ .k-dock-manager-toolbar {
43863
+ border-width: 0 $kendo-dock-manager-border-width 0 0;
43864
+ border-color: inherit;
43865
+ flex-shrink: 0;
43866
+ writing-mode: vertical-lr;
43867
+ box-shadow: none;
43868
+
43869
+ &::before {
43870
+ height: 0;
43871
+ }
43872
+
43873
+ .k-separator-horizontal {
43874
+ width: $kendo-line-height-em;
43875
+ height: 0;
43876
+ border-width: $kendo-dock-manager-border-width 0 0;
43877
+ }
43878
+
43879
+ // Needed because of a bug in Chrome - Issue 1473554
43880
+ // A fix will be shipped likely in milestone 118 and then we can revisit this
43881
+ @supports (not (-ms-ime-mode: none)) and (not (overflow: -webkit-marquee)) and (not (-moz-appearance:none)) {
43882
+ .k-toolbar-button {
43883
+ padding-block: $kendo-button-padding-x;
43884
+ padding-inline: $kendo-button-padding-y;
43885
+ }
43886
+ .k-toolbar-button .k-button-text {
43887
+ writing-mode: vertical-lr;
43888
+ }
43889
+ }
43890
+ }
43891
+
43892
+ // Panes
43893
+ .k-dock-manager-pane-container {
43894
+ width: 100%;
43895
+ height: 100%;
43896
+ display: flex;
43897
+ flex-grow: 1;
43898
+ overflow: hidden;
43899
+ }
43900
+
43901
+ // Splitter
43902
+ .k-dock-manager-splitter,
43903
+ .k-dock-manager-unpinned-container {
43904
+ height: 100%;
43905
+ border-width: 0;
43906
+ align-items: stretch;
43907
+
43908
+ > .k-pane {
43909
+ height: auto;
43910
+ flex-direction: column;
43911
+ border-color: inherit;
43912
+ }
43913
+
43914
+ .k-pane-header {
43915
+ display: flex;
43916
+ align-items: center;
43917
+ justify-content: center;
43918
+ padding-block: $kendo-dock-manager-pane-header-padding-y;
43919
+ padding-inline: $kendo-dock-manager-pane-header-padding-x;
43920
+ border-block-end-width: $kendo-dock-manager-pane-header-border-width;
43921
+ border-block-end-style: $kendo-dock-manager-pane-header-border-style;
43922
+ border-color: inherit;
43923
+ }
43924
+
43925
+ .k-pane-title {
43926
+ padding-block: $kendo-dock-manager-pane-title-padding-y;
43927
+ padding-inline: $kendo-dock-manager-pane-title-padding-x;
43928
+ font-family: $kendo-dock-manager-pane-title-font-family;
43929
+ font-size: $kendo-dock-manager-pane-title-font-size;
43930
+ line-height: $kendo-dock-manager-pane-title-line-height;
43931
+ font-weight: $kendo-dock-manager-pane-title-font-weight;
43932
+ flex: 1 1 auto;
43933
+ white-space: nowrap;
43934
+ text-overflow: ellipsis;
43935
+ overflow: hidden;
43936
+ }
43937
+
43938
+ .k-pane-scrollable {
43939
+ height: 100%;
43940
+ display: flex;
43941
+ flex-direction: column;
43942
+ border-color: inherit;
43943
+ }
43944
+
43945
+ .k-pane-content {
43946
+ height: 100%;
43947
+ padding-block: $kendo-dock-manager-pane-content-padding-y;
43948
+ padding-inline: $kendo-dock-manager-pane-content-padding-x;
43949
+ overflow: auto;
43950
+ flex: 1;
43951
+ }
43952
+
43953
+ .k-pane-actions {
43954
+ display: flex;
43955
+ flex-flow: row nowrap;
43956
+ align-items: center;
43957
+ justify-content: center;
43958
+ }
43959
+
43960
+ .k-pane-tabbed {
43961
+ padding-block-start: $kendo-dock-manager-tabbed-pane-padding-y;
43962
+ padding-block-end: $kendo-dock-manager-tabbed-pane-padding-x;
43963
+ padding-inline: $kendo-dock-manager-tabbed-pane-padding-x;
43964
+ }
43965
+
43966
+ .k-splitbar {
43967
+ border-width: 0 1px;
43968
+ border-style: solid;
43969
+ border-color: inherit;
43970
+ }
43971
+ .k-splitbar-vertical {
43972
+ border-width: 1px 0;
43973
+ }
43974
+ }
43975
+
43976
+ // Unpinned pane
43977
+ .k-dock-manager-unpinned-container {
43978
+ width: $kendo-dock-manager-unpinned-container-width;
43979
+ position: absolute;
43980
+ display: flex;
43981
+ height: 100%;
43982
+ border-color: inherit;
43983
+ z-index: 20;
43984
+
43985
+ .k-pane {
43986
+ display: inline-flex;
43987
+ flex-direction: column;
43988
+ position: relative;
43989
+ flex: 1 1 auto;
43990
+ }
43991
+
43992
+ .k-splitbar {
43993
+ height: 100%;
43994
+ position: relative;
43995
+ flex: none;
43996
+ }
43997
+ }
43998
+
43999
+ // Docking preview
44000
+ .k-docking-preview {
44001
+ width: 100%;
44002
+ height: 100%;
44003
+ box-sizing: border-box;
44004
+ display: flex;
44005
+ position: absolute;
44006
+ top: 0;
44007
+ left: 0;
44008
+ border-width: $kendo-dock-manager-dock-preview-border-width;
44009
+ border-style: $kendo-dock-manager-dock-preview-border-style;
44010
+ border-radius: $kendo-dock-manager-dock-preview-border-radius;
44011
+ z-index: 10;
44012
+ }
44013
+
44014
+ }
44015
+
44016
+ @mixin kendo-dock-navigator--layout() {
44017
+
44018
+ // DockNavigator
44019
+ .k-dock-navigator-container {
44020
+ width: 100%;
44021
+ height: 100%;
44022
+ display: flex;
44023
+ flex-direction: column;
44024
+ align-items: center;
44025
+ position: absolute;
44026
+ z-index: 10001;
44027
+ pointer-events: none;
44028
+ }
44029
+
44030
+ .k-dock-navigator {
44031
+ display: grid;
44032
+ grid-template-columns: repeat(3, auto);
44033
+ grid-template-rows: repeat(3, auto);
44034
+ justify-content: center;
44035
+ position: absolute;
44036
+ }
44037
+
44038
+ .k-dock-indicator {
44039
+ padding: $kendo-dock-indicator-padding;
44040
+ display: inline-flex;
44041
+ align-items: center;
44042
+ justify-content: center;
44043
+ box-sizing: border-box;
44044
+ position: relative;
44045
+ pointer-events: all;
44046
+ outline-width: $kendo-dock-indicator-outline-width;
44047
+ outline-style: $kendo-dock-indicator-outline-style;
44048
+
44049
+ &.k-dock-indicator-middle {
44050
+ filter: none;
44051
+ }
44052
+ }
44053
+
44054
+ .k-dock-indicator-top {
44055
+ grid-area: 1 / 2 / auto;
44056
+ }
44057
+ .k-dock-indicator-right {
44058
+ grid-area: 2 / 3 / auto;
44059
+ }
44060
+ .k-dock-indicator-bottom {
44061
+ grid-area: 3 / 2 / auto;
44062
+ }
44063
+ .k-dock-indicator-left {
44064
+ grid-area: 2 / 1 / auto;
44065
+ }
44066
+ .k-dock-indicator-middle {
44067
+ grid-area: 2 / 2 / auto;
44068
+ }
44069
+
44070
+ }
44071
+
44072
+ @mixin kendo-dock-manager--layout() {
44073
+ @include kendo-dock-manager--layout-base();
44074
+ @include kendo-dock-navigator--layout();
44075
+ }
44076
+
44077
+ // #endregion
44078
+
44079
+ @mixin kendo-dock-manager--layout() {
44080
+ @include kendo-dock-manager--layout-base();
44081
+ @include kendo-dock-navigator--layout();
44082
+ }
44083
+
44084
+ // #endregion
44085
+ // #region @import "./_theme.scss"; -> scss/dock-manager/_theme.scss
44086
+ // #region @import "@progress/kendo-theme-default/scss/dock-manager/_theme.scss"; -> node_modules/@progress/kendo-theme-default/scss/dock-manager/_theme.scss
44087
+ @mixin kendo-dock-manager--theme-base() {
44088
+
44089
+ // DockManager
44090
+ .k-dock-manager {
44091
+ border-color: $kendo-dock-manager-border;
44092
+ }
44093
+
44094
+ // Splitter
44095
+ .k-dock-manager-splitter .k-pane-header,
44096
+ .k-dock-manager-unpinned-container .k-pane-header {
44097
+ background-color: $kendo-dock-manager-pane-header-bg;
44098
+ }
44099
+
44100
+ .k-dock-manager-unpinned-container {
44101
+ background-color: $kendo-dock-manager-unpinned-container-bg;
44102
+ @include box-shadow( $kendo-dock-manager-unpinned-container-shadow );
44103
+ }
44104
+
44105
+ // Docking preview
44106
+ .k-docking-preview {
44107
+ background-color: $kendo-dock-manager-dock-preview-bg;
44108
+ border-color: $kendo-dock-manager-dock-preview-border;
44109
+ }
44110
+
44111
+ }
44112
+
44113
+ @mixin kendo-dock-navigator--theme() {
44114
+
44115
+ .k-dock-indicator {
44116
+ color: $kendo-dock-indicator-text;
44117
+ background-color: $kendo-dock-indicator-bg;
44118
+ outline-color: $kendo-dock-indicator-outline;
44119
+ filter: $kendo-dock-indicator-shadow;
44120
+
44121
+ &:hover,
44122
+ &.k-hover {
44123
+ background-color: $kendo-dock-indicator-hover-bg;
44124
+ color: $kendo-dock-indicator-hover-text;
44125
+ }
44126
+ }
44127
+
44128
+ }
44129
+
44130
+ @mixin kendo-dock-manager--theme() {
44131
+ @include kendo-dock-manager--theme-base();
44132
+ @include kendo-dock-navigator--theme();
44133
+ }
44134
+
44135
+ // #endregion
44136
+
44137
+ @mixin kendo-dock-manager--theme() {
44138
+ @include kendo-dock-manager--theme-base();
44139
+ @include kendo-dock-navigator--theme();
44140
+ }
44141
+
44142
+ // #endregion
44143
+
44144
+ // Register
44145
+ // #region @import "../core/module-system/index.import.scss"; -> scss/core/module-system/index.import.scss
44146
+ // File already imported_once. Skipping output.
44147
+ // #endregion
44148
+ @include module-register( $_kendo-module-meta... );
44149
+
44150
+ // Expose
44151
+ @mixin kendo-dock-manager--styles() {
44152
+ @include module-render("dock-manager") {
44153
+ @include kendo-dock-manager--layout();
44154
+ @include kendo-dock-manager--theme();
44155
+ }
44156
+ }
44157
+
44158
+ @if $kendo-auto-bootstrap {
44159
+ @include kendo-dock-manager--styles();
44160
+ }
44161
+
43690
44162
  // #endregion
43691
44163
 
43692
44164
 
@@ -56931,6 +57403,9 @@ $kendo-pdf-viewer-page-text: $kendo-component-text !default;
56931
57403
  $kendo-pdf-viewer-page-border: $kendo-component-border !default;
56932
57404
  $kendo-pdf-viewer-page-shadow: 0 0 k-math-div( $kendo-pdf-viewer-page-spacing, 2 ) $kendo-pdf-viewer-page-border !default;
56933
57405
 
57406
+ $kendo-pdf-viewer-search-panel-padding-x: $kendo-toolbar-md-padding-x !default;
57407
+ $kendo-pdf-viewer-search-panel-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
57408
+ $kendo-pdf-viewer-search-panel-spacing: $kendo-toolbar-md-spacing !default;
56934
57409
  $kendo-pdf-viewer-search-panel-border-width: 1px !default;
56935
57410
  $kendo-pdf-viewer-search-panel-border-radius: k-map-get( $kendo-spacing, 1 ) !default;
56936
57411
  $kendo-pdf-viewer-search-panel-bg: $kendo-component-bg !default;
@@ -56939,10 +57414,6 @@ $kendo-pdf-viewer-search-panel-border: $kendo-component-border !default;
56939
57414
  $kendo-pdf-viewer-search-panel-shadow: $kendo-window-shadow !default;
56940
57415
  $kendo-pdf-viewer-search-panel-matches-spacing: $kendo-padding-sm-x !default;
56941
57416
 
56942
- $kendo-pdf-viewer-search-dialog-padding-x: $kendo-toolbar-md-padding-x !default;
56943
- $kendo-pdf-viewer-search-dialog-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
56944
- $kendo-pdf-viewer-search-dialog-spacing: $kendo-toolbar-md-spacing !default;
56945
-
56946
57417
  $kendo-pdf-viewer-selection-line-height: $kendo-line-height-sm !default;
56947
57418
 
56948
57419
  $kendo-pdf-viewer-search-highlight-bg: $kendo-body-text !default;
@@ -56997,19 +57468,17 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
56997
57468
  flex: 1 1 auto;
56998
57469
  outline: none;
56999
57470
 
57000
- .k-enable-text-select,
57001
57471
  &.k-enable-text-select {
57002
57472
  user-select: text;
57003
57473
  cursor: text;
57004
57474
  }
57005
57475
 
57006
- .k-enable-panning,
57007
57476
  &.k-enable-panning {
57008
57477
  cursor: grab;
57009
- }
57010
- .k-enable-panning span::selection,
57011
- &.k-enable-panning span::selection {
57012
- background-color: transparent;
57478
+
57479
+ span::selection {
57480
+ background-color: transparent;
57481
+ }
57013
57482
  }
57014
57483
  }
57015
57484
 
@@ -57042,10 +57511,6 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
57042
57511
  color: transparent;
57043
57512
  }
57044
57513
 
57045
- mark {
57046
- color: transparent;
57047
- }
57048
-
57049
57514
  .k-search-highlight-mark {
57050
57515
  color: transparent;
57051
57516
  }
@@ -57073,19 +57538,22 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
57073
57538
  }
57074
57539
 
57075
57540
  // Search
57076
- .k-pdf-viewer-search-dialog {
57077
- padding: 0 !important; // stylelint-disable-line declaration-no-important
57078
- }
57079
-
57080
- .k-search-panel {
57081
- padding-block: $kendo-pdf-viewer-search-dialog-padding-y;
57082
- padding-inline: $kendo-pdf-viewer-search-dialog-padding-x;
57541
+ .k-pdf-viewer-canvas > .k-search-panel {
57542
+ width: max-content;
57543
+ margin-top: calc( (#{$kendo-button-calc-size} + ( 2 * #{$kendo-pdf-viewer-search-panel-border-width} ) + ( 2 * #{$kendo-pdf-viewer-search-panel-padding-y} )) * -1 );
57544
+ padding-block: $kendo-pdf-viewer-search-panel-padding-y;
57545
+ padding-inline: $kendo-pdf-viewer-search-panel-padding-x;
57546
+ border-width: $kendo-pdf-viewer-search-panel-border-width;
57547
+ border-style: solid;
57548
+ border-radius: $kendo-pdf-viewer-search-panel-border-radius;
57083
57549
  display: flex;
57084
- gap: $kendo-pdf-viewer-search-dialog-spacing;
57550
+ gap: $kendo-pdf-viewer-search-panel-spacing;
57085
57551
  flex-flow: row nowrap;
57086
57552
  flex: 0 0 auto;
57087
57553
  justify-content: flex-start;
57088
57554
  align-items: center;
57555
+ z-index: 10;
57556
+ cursor: default;
57089
57557
 
57090
57558
  .k-search-dialog-draghandle {
57091
57559
  cursor: move;
@@ -57107,21 +57575,6 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
57107
57575
  }
57108
57576
  }
57109
57577
 
57110
- .k-pdf-viewer-canvas > .k-search-panel {
57111
- width: max-content;
57112
- margin-top: calc( (#{$kendo-button-calc-size} + ( 2 * #{$kendo-pdf-viewer-search-panel-border-width} ) + ( 2 * #{$kendo-pdf-viewer-search-dialog-padding-y} )) * -1 );
57113
- border-width: $kendo-pdf-viewer-search-panel-border-width;
57114
- border-style: solid;
57115
- border-radius: $kendo-pdf-viewer-search-panel-border-radius;
57116
- z-index: 10;
57117
- cursor: default;
57118
- }
57119
-
57120
- // Alias
57121
- .k-search-container {
57122
- @extend .k-search-panel !optional;
57123
- }
57124
-
57125
57578
  }
57126
57579
 
57127
57580
 
@@ -57207,10 +57660,6 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
57207
57660
  @include box-shadow( $kendo-pdf-viewer-search-panel-shadow );
57208
57661
  }
57209
57662
 
57210
- .k-search-container {
57211
- @extend .k-search-panel !optional;
57212
- }
57213
-
57214
57663
  }
57215
57664
 
57216
57665
 
@@ -59688,6 +60137,7 @@ $kendo-signature-maximized-line-width: 3px !default;
59688
60137
  @include kendo-panelbar--styles();
59689
60138
  @include kendo-splitter--styles();
59690
60139
  @include kendo-tile-layout--styles();
60140
+ @include kendo-dock-manager--styles();
59691
60141
 
59692
60142
 
59693
60143
  // Data management