@progress/kendo-theme-material 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
@@ -4692,6 +4692,7 @@ $kendo-components: (
4692
4692
  "panelbar",
4693
4693
  "splitter",
4694
4694
  "tile-layout",
4695
+ "dock-manager",
4695
4696
 
4696
4697
  // Data management
4697
4698
  "grid",
@@ -4864,6 +4865,11 @@ $_kendo-dependencies: (
4864
4865
  "treeview"
4865
4866
  ),
4866
4867
  dropzone: (),
4868
+ dock-manager: (
4869
+ "splitter",
4870
+ "toolbar",
4871
+ "tabstrip"
4872
+ ),
4867
4873
  editor: (
4868
4874
  "button",
4869
4875
  "checkbox",
@@ -45374,6 +45380,7 @@ $kendo-splitbar-selected-text: $kendo-color-primary-contrast !default;
45374
45380
  // Pane
45375
45381
  .k-pane {
45376
45382
  overflow: hidden;
45383
+ box-sizing: border-box;
45377
45384
  }
45378
45385
  .k-scrollable {
45379
45386
  overflow: auto;
@@ -45815,6 +45822,471 @@ $kendo-tile-layout-hint-bg: rgba( white, .2 ) !default;
45815
45822
  @include kendo-tile-layout--styles();
45816
45823
  }
45817
45824
 
45825
+ // #endregion
45826
+ // #region @import "./dock-manager/_index.scss"; -> scss/dock-manager/_index.scss
45827
+ // #region @import "../core/_index.scss"; -> scss/core/_index.scss
45828
+ // File already imported_once. Skipping output.
45829
+ // #endregion
45830
+ // #region @import "../utils/_index.scss"; -> scss/utils/_index.scss
45831
+ // File already imported_once. Skipping output.
45832
+ // #endregion
45833
+
45834
+ // Module meta
45835
+ $_kendo-module-meta: (
45836
+ name: "dock-manager",
45837
+ dependencies: (
45838
+ "splitter",
45839
+ "toolbar",
45840
+ "tabstrip"
45841
+ )
45842
+ );
45843
+
45844
+ // Dependencies
45845
+ // #region @import "../splitter/_index.scss"; -> scss/splitter/_index.scss
45846
+ // File already imported_once. Skipping output.
45847
+ // #endregion
45848
+ // #region @import "../toolbar/_index.scss"; -> scss/toolbar/_index.scss
45849
+ // File already imported_once. Skipping output.
45850
+ // #endregion
45851
+ // #region @import "../tabstrip/_index.scss"; -> scss/tabstrip/_index.scss
45852
+ // File already imported_once. Skipping output.
45853
+ // #endregion
45854
+
45855
+ // Component
45856
+ // #region @import "./_variables.scss"; -> scss/dock-manager/_variables.scss
45857
+ /// The width of the border around the DockManager component.
45858
+ /// @group dock-manager
45859
+ $kendo-dock-manager-border-width: 1px !default;
45860
+ /// The style of the border around the DockManager component.
45861
+ /// @group dock-manager
45862
+ $kendo-dock-manager-border-style: solid !default;
45863
+ /// The color of the border around the DockManager component.
45864
+ /// @group dock-manager
45865
+ $kendo-dock-manager-border: $kendo-base-border !default;
45866
+
45867
+ /// The vertical padding of the pane header in the DockManager component.
45868
+ /// @group dock-manager
45869
+ $kendo-dock-manager-pane-header-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
45870
+ /// The horizontal padding of the pane header in the DockManager component.
45871
+ /// @group dock-manager
45872
+ $kendo-dock-manager-pane-header-padding-x: k-map-get( $kendo-spacing, 6 ) !default;
45873
+ /// The width of the border around the pane header in the DockManager component.
45874
+ /// @group dock-manager
45875
+ $kendo-dock-manager-pane-header-border-width: $kendo-dock-manager-border-width !default;
45876
+ /// The style of the border around the pane header in the DockManager component.
45877
+ /// @group dock-manager
45878
+ $kendo-dock-manager-pane-header-border-style: solid !default;
45879
+ /// The background color of the pane header in the DockManager component.
45880
+ /// @group dock-manager
45881
+ $kendo-dock-manager-pane-header-bg: $kendo-component-bg !default;
45882
+
45883
+ /// The vertical padding of the pane title in the DockManager component.
45884
+ /// @group dock-manager
45885
+ $kendo-dock-manager-pane-title-padding-y: null !default;
45886
+ /// The horizontal padding of the pane title in the DockManager component.
45887
+ /// @group dock-manager
45888
+ $kendo-dock-manager-pane-title-padding-x: null !default;
45889
+ /// The font family of the pane title in the DockManager component.
45890
+ /// @group dock-manager
45891
+ $kendo-dock-manager-pane-title-font-family: $kendo-font-family !default;
45892
+ /// The font size of the pane title in the DockManager component.
45893
+ /// @group dock-manager
45894
+ $kendo-dock-manager-pane-title-font-size: $kendo-font-size-lg !default;
45895
+ /// The line height of the pane title in the DockManager component.
45896
+ /// @group dock-manager
45897
+ $kendo-dock-manager-pane-title-line-height: $kendo-line-height-sm !default;
45898
+ /// The font weight of the pane title in the DockManager component.
45899
+ /// @group dock-manager
45900
+ $kendo-dock-manager-pane-title-font-weight: $kendo-font-weight-normal !default;
45901
+
45902
+ /// The horizontal padding of the pane content in the DockManager component.
45903
+ /// @group dock-manager
45904
+ $kendo-dock-manager-pane-content-padding-x: $kendo-dock-manager-pane-header-padding-x !default;
45905
+ /// The vertical padding of the pane content in the DockManager component.
45906
+ /// @group dock-manager
45907
+ $kendo-dock-manager-pane-content-padding-y: $kendo-dock-manager-pane-header-padding-x !default;
45908
+
45909
+ /// The horizontal padding of the tabbed pane in the DockManager component.
45910
+ /// @group dock-manager
45911
+ $kendo-dock-manager-tabbed-pane-padding-y: null !default;
45912
+ /// The horizontal padding of the tabbed pane in the DockManager component.
45913
+ /// @group dock-manager
45914
+ $kendo-dock-manager-tabbed-pane-padding-x: null !default;
45915
+
45916
+ /// The width of the unpinned pane container in the DockManager component.
45917
+ /// @group dock-manager
45918
+ $kendo-dock-manager-unpinned-container-width: 300px !default;
45919
+ /// The background-color of the unpinned pane container in the DockManager component.
45920
+ /// @group dock-manager
45921
+ $kendo-dock-manager-unpinned-container-bg: $kendo-color-white !default;
45922
+ /// The box shadow of the unpinned pane container in the DockManager component.
45923
+ /// @group dock-manager
45924
+ $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;
45925
+
45926
+ /// The padding of the dock indicator in the DockManager component.
45927
+ /// @group dock-manager
45928
+ $kendo-dock-indicator-padding: k-map-get( $kendo-spacing, 1.5 ) !default;
45929
+ /// The background color of the dock indicator in the DockManager component.
45930
+ /// @group dock-manager
45931
+ $kendo-dock-indicator-bg: $kendo-base-bg !default;
45932
+ /// The text color of the dock indicator in the DockManager component.
45933
+ /// @group dock-manager
45934
+ $kendo-dock-indicator-text: $kendo-color-primary !default;
45935
+ /// The outline width of the dock indicator in the DockManager component.
45936
+ /// @group dock-manager
45937
+ $kendo-dock-indicator-outline-width: 1px !default;
45938
+ /// The outline style of the dock indicator in the DockManager component.
45939
+ /// @group dock-manager
45940
+ $kendo-dock-indicator-outline-style: solid !default;
45941
+ /// The outline color of the dock indicator in the DockManager component.
45942
+ /// @group dock-manager
45943
+ $kendo-dock-indicator-outline: $kendo-dock-indicator-text !default;
45944
+ /// The box shadow of the dock indicator in the DockManager component.
45945
+ /// @group dock-manager
45946
+ $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;
45947
+
45948
+ /// The background color of the hovered dock indicator in the DockManager component.
45949
+ /// @group dock-manager
45950
+ $kendo-dock-indicator-hover-bg: k-color-mix( $kendo-color-white, $kendo-color-primary, 8% ) !default;
45951
+ /// The text color of the hovered dock indicator in the DockManager component.
45952
+ /// @group dock-manager
45953
+ $kendo-dock-indicator-hover-text: $kendo-color-white !default;
45954
+
45955
+ /// The width of the border around the dropping area in the DockManager component.
45956
+ /// @group dock-manager
45957
+ $kendo-dock-manager-dock-preview-border-width: 1px !default;
45958
+ /// The style of the border around the dropping area in the DockManager component.
45959
+ /// @group dock-manager
45960
+ $kendo-dock-manager-dock-preview-border-style: dashed !default;
45961
+ /// The border radius of the dropping area in the DockManager component.
45962
+ /// @group dock-manager
45963
+ $kendo-dock-manager-dock-preview-border-radius: $kendo-border-radius-sm !default;
45964
+ /// The background color of the dropping area in the DockManager component.
45965
+ /// @group dock-manager
45966
+ $kendo-dock-manager-dock-preview-bg: rgba( $kendo-color-primary, .16 ) !default;
45967
+ /// The border color of the dropping area in the DockManager component.
45968
+ /// @group dock-manager
45969
+ $kendo-dock-manager-dock-preview-border: $kendo-color-primary !default;
45970
+
45971
+ // #endregion
45972
+ // #region @import "./_layout.scss"; -> scss/dock-manager/_layout.scss
45973
+ // #region @import "@progress/kendo-theme-default/scss/dock-manager/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/dock-manager/_layout.scss
45974
+ @mixin kendo-dock-manager--layout-base() {
45975
+
45976
+ // DockManager
45977
+ .k-dock-manager {
45978
+ width: 100%;
45979
+ height: 100%;
45980
+ border-width: $kendo-dock-manager-border-width;
45981
+ border-style: $kendo-dock-manager-border-style;
45982
+ position: relative;
45983
+ display: flex;
45984
+ flex-flow: row nowrap;
45985
+ overflow: auto;
45986
+ box-sizing: border-box;
45987
+ }
45988
+
45989
+ // Toolbar
45990
+ .k-dock-manager-toolbar {
45991
+ border-width: 0 $kendo-dock-manager-border-width 0 0;
45992
+ border-color: inherit;
45993
+ flex-shrink: 0;
45994
+ writing-mode: vertical-lr;
45995
+ box-shadow: none;
45996
+
45997
+ &::before {
45998
+ height: 0;
45999
+ }
46000
+
46001
+ .k-separator-horizontal {
46002
+ width: $kendo-line-height-em;
46003
+ height: 0;
46004
+ border-width: $kendo-dock-manager-border-width 0 0;
46005
+ }
46006
+
46007
+ // Needed because of a bug in Chrome - Issue 1473554
46008
+ // A fix will be shipped likely in milestone 118 and then we can revisit this
46009
+ @supports (not (-ms-ime-mode: none)) and (not (overflow: -webkit-marquee)) and (not (-moz-appearance:none)) {
46010
+ .k-toolbar-button {
46011
+ padding-block: $kendo-button-padding-x;
46012
+ padding-inline: $kendo-button-padding-y;
46013
+ }
46014
+ .k-toolbar-button .k-button-text {
46015
+ writing-mode: vertical-lr;
46016
+ }
46017
+ }
46018
+ }
46019
+
46020
+ // Panes
46021
+ .k-dock-manager-pane-container {
46022
+ width: 100%;
46023
+ height: 100%;
46024
+ display: flex;
46025
+ flex-grow: 1;
46026
+ overflow: hidden;
46027
+ }
46028
+
46029
+ // Splitter
46030
+ .k-dock-manager-splitter,
46031
+ .k-dock-manager-unpinned-container {
46032
+ height: 100%;
46033
+ border-width: 0;
46034
+ align-items: stretch;
46035
+
46036
+ > .k-pane {
46037
+ height: auto;
46038
+ flex-direction: column;
46039
+ border-color: inherit;
46040
+ }
46041
+
46042
+ .k-pane-header {
46043
+ display: flex;
46044
+ align-items: center;
46045
+ justify-content: center;
46046
+ padding-block: $kendo-dock-manager-pane-header-padding-y;
46047
+ padding-inline: $kendo-dock-manager-pane-header-padding-x;
46048
+ border-block-end-width: $kendo-dock-manager-pane-header-border-width;
46049
+ border-block-end-style: $kendo-dock-manager-pane-header-border-style;
46050
+ border-color: inherit;
46051
+ }
46052
+
46053
+ .k-pane-title {
46054
+ padding-block: $kendo-dock-manager-pane-title-padding-y;
46055
+ padding-inline: $kendo-dock-manager-pane-title-padding-x;
46056
+ font-family: $kendo-dock-manager-pane-title-font-family;
46057
+ font-size: $kendo-dock-manager-pane-title-font-size;
46058
+ line-height: $kendo-dock-manager-pane-title-line-height;
46059
+ font-weight: $kendo-dock-manager-pane-title-font-weight;
46060
+ flex: 1 1 auto;
46061
+ white-space: nowrap;
46062
+ text-overflow: ellipsis;
46063
+ overflow: hidden;
46064
+ }
46065
+
46066
+ .k-pane-scrollable {
46067
+ height: 100%;
46068
+ display: flex;
46069
+ flex-direction: column;
46070
+ border-color: inherit;
46071
+ }
46072
+
46073
+ .k-pane-content {
46074
+ height: 100%;
46075
+ padding-block: $kendo-dock-manager-pane-content-padding-y;
46076
+ padding-inline: $kendo-dock-manager-pane-content-padding-x;
46077
+ overflow: auto;
46078
+ flex: 1;
46079
+ }
46080
+
46081
+ .k-pane-actions {
46082
+ display: flex;
46083
+ flex-flow: row nowrap;
46084
+ align-items: center;
46085
+ justify-content: center;
46086
+ }
46087
+
46088
+ .k-pane-tabbed {
46089
+ padding-block-start: $kendo-dock-manager-tabbed-pane-padding-y;
46090
+ padding-block-end: $kendo-dock-manager-tabbed-pane-padding-x;
46091
+ padding-inline: $kendo-dock-manager-tabbed-pane-padding-x;
46092
+ }
46093
+
46094
+ .k-splitbar {
46095
+ border-width: 0 1px;
46096
+ border-style: solid;
46097
+ border-color: inherit;
46098
+ }
46099
+ .k-splitbar-vertical {
46100
+ border-width: 1px 0;
46101
+ }
46102
+ }
46103
+
46104
+ // Unpinned pane
46105
+ .k-dock-manager-unpinned-container {
46106
+ width: $kendo-dock-manager-unpinned-container-width;
46107
+ position: absolute;
46108
+ display: flex;
46109
+ height: 100%;
46110
+ border-color: inherit;
46111
+ z-index: 20;
46112
+
46113
+ .k-pane {
46114
+ display: inline-flex;
46115
+ flex-direction: column;
46116
+ position: relative;
46117
+ flex: 1 1 auto;
46118
+ }
46119
+
46120
+ .k-splitbar {
46121
+ height: 100%;
46122
+ position: relative;
46123
+ flex: none;
46124
+ }
46125
+ }
46126
+
46127
+ // Docking preview
46128
+ .k-docking-preview {
46129
+ width: 100%;
46130
+ height: 100%;
46131
+ box-sizing: border-box;
46132
+ display: flex;
46133
+ position: absolute;
46134
+ top: 0;
46135
+ left: 0;
46136
+ border-width: $kendo-dock-manager-dock-preview-border-width;
46137
+ border-style: $kendo-dock-manager-dock-preview-border-style;
46138
+ border-radius: $kendo-dock-manager-dock-preview-border-radius;
46139
+ z-index: 10;
46140
+ }
46141
+
46142
+ }
46143
+
46144
+ @mixin kendo-dock-navigator--layout() {
46145
+
46146
+ // DockNavigator
46147
+ .k-dock-navigator-container {
46148
+ width: 100%;
46149
+ height: 100%;
46150
+ display: flex;
46151
+ flex-direction: column;
46152
+ align-items: center;
46153
+ position: absolute;
46154
+ z-index: 10001;
46155
+ pointer-events: none;
46156
+ }
46157
+
46158
+ .k-dock-navigator {
46159
+ display: grid;
46160
+ grid-template-columns: repeat(3, auto);
46161
+ grid-template-rows: repeat(3, auto);
46162
+ justify-content: center;
46163
+ position: absolute;
46164
+ }
46165
+
46166
+ .k-dock-indicator {
46167
+ padding: $kendo-dock-indicator-padding;
46168
+ display: inline-flex;
46169
+ align-items: center;
46170
+ justify-content: center;
46171
+ box-sizing: border-box;
46172
+ position: relative;
46173
+ pointer-events: all;
46174
+ outline-width: $kendo-dock-indicator-outline-width;
46175
+ outline-style: $kendo-dock-indicator-outline-style;
46176
+
46177
+ &.k-dock-indicator-middle {
46178
+ filter: none;
46179
+ }
46180
+ }
46181
+
46182
+ .k-dock-indicator-top {
46183
+ grid-area: 1 / 2 / auto;
46184
+ }
46185
+ .k-dock-indicator-right {
46186
+ grid-area: 2 / 3 / auto;
46187
+ }
46188
+ .k-dock-indicator-bottom {
46189
+ grid-area: 3 / 2 / auto;
46190
+ }
46191
+ .k-dock-indicator-left {
46192
+ grid-area: 2 / 1 / auto;
46193
+ }
46194
+ .k-dock-indicator-middle {
46195
+ grid-area: 2 / 2 / auto;
46196
+ }
46197
+
46198
+ }
46199
+
46200
+ @mixin kendo-dock-manager--layout() {
46201
+ @include kendo-dock-manager--layout-base();
46202
+ @include kendo-dock-navigator--layout();
46203
+ }
46204
+
46205
+ // #endregion
46206
+
46207
+ @mixin kendo-dock-manager--layout() {
46208
+ @include kendo-dock-manager--layout-base();
46209
+ @include kendo-dock-navigator--layout();
46210
+ }
46211
+
46212
+ // #endregion
46213
+ // #region @import "./_theme.scss"; -> scss/dock-manager/_theme.scss
46214
+ // #region @import "@progress/kendo-theme-default/scss/dock-manager/_theme.scss"; -> node_modules/@progress/kendo-theme-default/scss/dock-manager/_theme.scss
46215
+ @mixin kendo-dock-manager--theme-base() {
46216
+
46217
+ // DockManager
46218
+ .k-dock-manager {
46219
+ border-color: $kendo-dock-manager-border;
46220
+ }
46221
+
46222
+ // Splitter
46223
+ .k-dock-manager-splitter .k-pane-header,
46224
+ .k-dock-manager-unpinned-container .k-pane-header {
46225
+ background-color: $kendo-dock-manager-pane-header-bg;
46226
+ }
46227
+
46228
+ .k-dock-manager-unpinned-container {
46229
+ background-color: $kendo-dock-manager-unpinned-container-bg;
46230
+ @include box-shadow( $kendo-dock-manager-unpinned-container-shadow );
46231
+ }
46232
+
46233
+ // Docking preview
46234
+ .k-docking-preview {
46235
+ background-color: $kendo-dock-manager-dock-preview-bg;
46236
+ border-color: $kendo-dock-manager-dock-preview-border;
46237
+ }
46238
+
46239
+ }
46240
+
46241
+ @mixin kendo-dock-navigator--theme() {
46242
+
46243
+ .k-dock-indicator {
46244
+ color: $kendo-dock-indicator-text;
46245
+ background-color: $kendo-dock-indicator-bg;
46246
+ outline-color: $kendo-dock-indicator-outline;
46247
+ filter: $kendo-dock-indicator-shadow;
46248
+
46249
+ &:hover,
46250
+ &.k-hover {
46251
+ background-color: $kendo-dock-indicator-hover-bg;
46252
+ color: $kendo-dock-indicator-hover-text;
46253
+ }
46254
+ }
46255
+
46256
+ }
46257
+
46258
+ @mixin kendo-dock-manager--theme() {
46259
+ @include kendo-dock-manager--theme-base();
46260
+ @include kendo-dock-navigator--theme();
46261
+ }
46262
+
46263
+ // #endregion
46264
+
46265
+ @mixin kendo-dock-manager--theme() {
46266
+ @include kendo-dock-manager--theme-base();
46267
+ @include kendo-dock-navigator--theme();
46268
+ }
46269
+
46270
+ // #endregion
46271
+
46272
+ // Register
46273
+ // #region @import "../core/module-system/index.import.scss"; -> scss/core/module-system/index.import.scss
46274
+ // File already imported_once. Skipping output.
46275
+ // #endregion
46276
+ @include module-register( $_kendo-module-meta... );
46277
+
46278
+ // Expose
46279
+ @mixin kendo-dock-manager--styles() {
46280
+ @include module-render("dock-manager") {
46281
+ @include kendo-dock-manager--layout();
46282
+ @include kendo-dock-manager--theme();
46283
+ }
46284
+ }
46285
+
46286
+ @if $kendo-auto-bootstrap {
46287
+ @include kendo-dock-manager--styles();
46288
+ }
46289
+
45818
46290
  // #endregion
45819
46291
 
45820
46292
 
@@ -59795,6 +60267,9 @@ $kendo-pdf-viewer-page-text: $kendo-component-text !default;
59795
60267
  $kendo-pdf-viewer-page-border: $kendo-component-border !default;
59796
60268
  $kendo-pdf-viewer-page-shadow: 0 0 k-math-div( $kendo-pdf-viewer-page-spacing, 2 ) $kendo-pdf-viewer-page-border !default;
59797
60269
 
60270
+ $kendo-pdf-viewer-search-panel-padding-x: $kendo-toolbar-md-padding-x !default;
60271
+ $kendo-pdf-viewer-search-panel-padding-y: calc( #{$kendo-toolbar-md-padding-x} * 2 ) !default;
60272
+ $kendo-pdf-viewer-search-panel-spacing: $kendo-toolbar-md-spacing !default;
59798
60273
  $kendo-pdf-viewer-search-panel-border-width: 1px !default;
59799
60274
  $kendo-pdf-viewer-search-panel-border-radius: k-map-get( $kendo-spacing, 1 ) !default;
59800
60275
  $kendo-pdf-viewer-search-panel-bg: $kendo-component-bg !default;
@@ -59803,10 +60278,6 @@ $kendo-pdf-viewer-search-panel-border: $kendo-component-border !default;
59803
60278
  $kendo-pdf-viewer-search-panel-shadow: $kendo-window-shadow !default;
59804
60279
  $kendo-pdf-viewer-search-panel-matches-spacing: $kendo-padding-sm-x !default;
59805
60280
 
59806
- $kendo-pdf-viewer-search-dialog-padding-x: $kendo-toolbar-md-padding-x !default;
59807
- $kendo-pdf-viewer-search-dialog-padding-y: calc( #{$kendo-toolbar-md-padding-x} * 2 ) !default;
59808
- $kendo-pdf-viewer-search-dialog-spacing: $kendo-toolbar-md-spacing !default;
59809
-
59810
60281
  $kendo-pdf-viewer-selection-line-height: $kendo-line-height-sm !default;
59811
60282
 
59812
60283
  $kendo-pdf-viewer-search-highlight-bg: $kendo-body-text !default;
@@ -59861,19 +60332,17 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
59861
60332
  flex: 1 1 auto;
59862
60333
  outline: none;
59863
60334
 
59864
- .k-enable-text-select,
59865
60335
  &.k-enable-text-select {
59866
60336
  user-select: text;
59867
60337
  cursor: text;
59868
60338
  }
59869
60339
 
59870
- .k-enable-panning,
59871
60340
  &.k-enable-panning {
59872
60341
  cursor: grab;
59873
- }
59874
- .k-enable-panning span::selection,
59875
- &.k-enable-panning span::selection {
59876
- background-color: transparent;
60342
+
60343
+ span::selection {
60344
+ background-color: transparent;
60345
+ }
59877
60346
  }
59878
60347
  }
59879
60348
 
@@ -59906,10 +60375,6 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
59906
60375
  color: transparent;
59907
60376
  }
59908
60377
 
59909
- mark {
59910
- color: transparent;
59911
- }
59912
-
59913
60378
  .k-search-highlight-mark {
59914
60379
  color: transparent;
59915
60380
  }
@@ -59937,19 +60402,22 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
59937
60402
  }
59938
60403
 
59939
60404
  // Search
59940
- .k-pdf-viewer-search-dialog {
59941
- padding: 0 !important; // stylelint-disable-line declaration-no-important
59942
- }
59943
-
59944
- .k-search-panel {
59945
- padding-block: $kendo-pdf-viewer-search-dialog-padding-y;
59946
- padding-inline: $kendo-pdf-viewer-search-dialog-padding-x;
60405
+ .k-pdf-viewer-canvas > .k-search-panel {
60406
+ width: max-content;
60407
+ margin-top: calc( (#{$kendo-button-calc-size} + ( 2 * #{$kendo-pdf-viewer-search-panel-border-width} ) + ( 2 * #{$kendo-pdf-viewer-search-panel-padding-y} )) * -1 );
60408
+ padding-block: $kendo-pdf-viewer-search-panel-padding-y;
60409
+ padding-inline: $kendo-pdf-viewer-search-panel-padding-x;
60410
+ border-width: $kendo-pdf-viewer-search-panel-border-width;
60411
+ border-style: solid;
60412
+ border-radius: $kendo-pdf-viewer-search-panel-border-radius;
59947
60413
  display: flex;
59948
- gap: $kendo-pdf-viewer-search-dialog-spacing;
60414
+ gap: $kendo-pdf-viewer-search-panel-spacing;
59949
60415
  flex-flow: row nowrap;
59950
60416
  flex: 0 0 auto;
59951
60417
  justify-content: flex-start;
59952
60418
  align-items: center;
60419
+ z-index: 10;
60420
+ cursor: default;
59953
60421
 
59954
60422
  .k-search-dialog-draghandle {
59955
60423
  cursor: move;
@@ -59971,21 +60439,6 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
59971
60439
  }
59972
60440
  }
59973
60441
 
59974
- .k-pdf-viewer-canvas > .k-search-panel {
59975
- width: max-content;
59976
- margin-top: calc( (#{$kendo-button-calc-size} + ( 2 * #{$kendo-pdf-viewer-search-panel-border-width} ) + ( 2 * #{$kendo-pdf-viewer-search-dialog-padding-y} )) * -1 );
59977
- border-width: $kendo-pdf-viewer-search-panel-border-width;
59978
- border-style: solid;
59979
- border-radius: $kendo-pdf-viewer-search-panel-border-radius;
59980
- z-index: 10;
59981
- cursor: default;
59982
- }
59983
-
59984
- // Alias
59985
- .k-search-container {
59986
- @extend .k-search-panel !optional;
59987
- }
59988
-
59989
60442
  }
59990
60443
 
59991
60444
 
@@ -60071,10 +60524,6 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
60071
60524
  @include box-shadow( $kendo-pdf-viewer-search-panel-shadow );
60072
60525
  }
60073
60526
 
60074
- .k-search-container {
60075
- @extend .k-search-panel !optional;
60076
- }
60077
-
60078
60527
  }
60079
60528
 
60080
60529
 
@@ -62552,6 +63001,7 @@ $kendo-signature-maximized-line-width: 3px !default;
62552
63001
  @include kendo-panelbar--styles();
62553
63002
  @include kendo-splitter--styles();
62554
63003
  @include kendo-tile-layout--styles();
63004
+ @include kendo-dock-manager--styles();
62555
63005
 
62556
63006
 
62557
63007
  // Data management