@progress/kendo-theme-bootstrap 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
@@ -5802,6 +5802,7 @@ $kendo-components: (
5802
5802
  "panelbar",
5803
5803
  "splitter",
5804
5804
  "tile-layout",
5805
+ "dock-manager",
5805
5806
 
5806
5807
  // Data management
5807
5808
  "grid",
@@ -5974,6 +5975,11 @@ $_kendo-dependencies: (
5974
5975
  "treeview"
5975
5976
  ),
5976
5977
  dropzone: (),
5978
+ dock-manager: (
5979
+ "splitter",
5980
+ "toolbar",
5981
+ "tabstrip"
5982
+ ),
5977
5983
  editor: (
5978
5984
  "button",
5979
5985
  "checkbox",
@@ -45521,6 +45527,7 @@ $kendo-splitbar-selected-text: $kendo-selected-text !default;
45521
45527
  // Pane
45522
45528
  .k-pane {
45523
45529
  overflow: hidden;
45530
+ box-sizing: border-box;
45524
45531
  }
45525
45532
  .k-scrollable {
45526
45533
  overflow: auto;
@@ -45961,6 +45968,471 @@ $kendo-tile-layout-hint-bg: rgba( white, .2 ) !default;
45961
45968
  @include kendo-tile-layout--styles();
45962
45969
  }
45963
45970
 
45971
+ // #endregion
45972
+ // #region @import "./dock-manager/_index.scss"; -> scss/dock-manager/_index.scss
45973
+ // #region @import "../core/_index.scss"; -> scss/core/_index.scss
45974
+ // File already imported_once. Skipping output.
45975
+ // #endregion
45976
+ // #region @import "../utils/_index.scss"; -> scss/utils/_index.scss
45977
+ // File already imported_once. Skipping output.
45978
+ // #endregion
45979
+
45980
+ // Module meta
45981
+ $_kendo-module-meta: (
45982
+ name: "dock-manager",
45983
+ dependencies: (
45984
+ "splitter",
45985
+ "toolbar",
45986
+ "tabstrip"
45987
+ )
45988
+ );
45989
+
45990
+ // Dependencies
45991
+ // #region @import "../splitter/_index.scss"; -> scss/splitter/_index.scss
45992
+ // File already imported_once. Skipping output.
45993
+ // #endregion
45994
+ // #region @import "../toolbar/_index.scss"; -> scss/toolbar/_index.scss
45995
+ // File already imported_once. Skipping output.
45996
+ // #endregion
45997
+ // #region @import "../tabstrip/_index.scss"; -> scss/tabstrip/_index.scss
45998
+ // File already imported_once. Skipping output.
45999
+ // #endregion
46000
+
46001
+ // Component
46002
+ // #region @import "./_variables.scss"; -> scss/dock-manager/_variables.scss
46003
+ /// The width of the border around the DockManager component.
46004
+ /// @group dock-manager
46005
+ $kendo-dock-manager-border-width: 1px !default;
46006
+ /// The style of the border around the DockManager component.
46007
+ /// @group dock-manager
46008
+ $kendo-dock-manager-border-style: solid !default;
46009
+ /// The color of the border around the DockManager component.
46010
+ /// @group dock-manager
46011
+ $kendo-dock-manager-border: $kendo-base-border !default;
46012
+
46013
+ /// The vertical padding of the pane header in the DockManager component.
46014
+ /// @group dock-manager
46015
+ $kendo-dock-manager-pane-header-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
46016
+ /// The horizontal padding of the pane header in the DockManager component.
46017
+ /// @group dock-manager
46018
+ $kendo-dock-manager-pane-header-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
46019
+ /// The width of the border around the pane header in the DockManager component.
46020
+ /// @group dock-manager
46021
+ $kendo-dock-manager-pane-header-border-width: $kendo-dock-manager-border-width !default;
46022
+ /// The style of the border around the pane header in the DockManager component.
46023
+ /// @group dock-manager
46024
+ $kendo-dock-manager-pane-header-border-style: solid !default;
46025
+ /// The background color of the pane header in the DockManager component.
46026
+ /// @group dock-manager
46027
+ $kendo-dock-manager-pane-header-bg: $kendo-component-bg !default;
46028
+
46029
+ /// The vertical padding of the pane title in the DockManager component.
46030
+ /// @group dock-manager
46031
+ $kendo-dock-manager-pane-title-padding-y: null !default;
46032
+ /// The horizontal padding of the pane title in the DockManager component.
46033
+ /// @group dock-manager
46034
+ $kendo-dock-manager-pane-title-padding-x: null !default;
46035
+ /// The font family of the pane title in the DockManager component.
46036
+ /// @group dock-manager
46037
+ $kendo-dock-manager-pane-title-font-family: $kendo-font-family !default;
46038
+ /// The font size of the pane title in the DockManager component.
46039
+ /// @group dock-manager
46040
+ $kendo-dock-manager-pane-title-font-size: $kendo-font-size-lg !default;
46041
+ /// The line height of the pane title in the DockManager component.
46042
+ /// @group dock-manager
46043
+ $kendo-dock-manager-pane-title-line-height: $kendo-line-height-sm !default;
46044
+ /// The font weight of the pane title in the DockManager component.
46045
+ /// @group dock-manager
46046
+ $kendo-dock-manager-pane-title-font-weight: $kendo-font-weight-normal !default;
46047
+
46048
+ /// The horizontal padding of the pane content in the DockManager component.
46049
+ /// @group dock-manager
46050
+ $kendo-dock-manager-pane-content-padding-x: $kendo-dock-manager-pane-header-padding-x !default;
46051
+ /// The vertical padding of the pane content in the DockManager component.
46052
+ /// @group dock-manager
46053
+ $kendo-dock-manager-pane-content-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
46054
+
46055
+ /// The horizontal padding of the tabbed pane in the DockManager component.
46056
+ /// @group dock-manager
46057
+ $kendo-dock-manager-tabbed-pane-padding-y: k-map-get( $kendo-spacing, 3.5 ) !default;
46058
+ /// The horizontal padding of the tabbed pane in the DockManager component.
46059
+ /// @group dock-manager
46060
+ $kendo-dock-manager-tabbed-pane-padding-x: $kendo-dock-manager-pane-content-padding-y !default;
46061
+
46062
+ /// The width of the unpinned pane container in the DockManager component.
46063
+ /// @group dock-manager
46064
+ $kendo-dock-manager-unpinned-container-width: 300px !default;
46065
+ /// The background-color of the unpinned pane container in the DockManager component.
46066
+ /// @group dock-manager
46067
+ $kendo-dock-manager-unpinned-container-bg: $kendo-component-bg !default;
46068
+ /// The box shadow of the unpinned pane container in the DockManager component.
46069
+ /// @group dock-manager
46070
+ $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;
46071
+
46072
+ /// The padding of the dock indicator in the DockManager component.
46073
+ /// @group dock-manager
46074
+ $kendo-dock-indicator-padding: k-map-get( $kendo-spacing, 1.5 ) !default;
46075
+ /// The background color of the dock indicator in the DockManager component.
46076
+ /// @group dock-manager
46077
+ $kendo-dock-indicator-bg: $kendo-component-bg !default;
46078
+ /// The text color of the dock indicator in the DockManager component.
46079
+ /// @group dock-manager
46080
+ $kendo-dock-indicator-text: $kendo-color-primary !default;
46081
+ /// The outline width of the dock indicator in the DockManager component.
46082
+ /// @group dock-manager
46083
+ $kendo-dock-indicator-outline-width: 1px !default;
46084
+ /// The outline style of the dock indicator in the DockManager component.
46085
+ /// @group dock-manager
46086
+ $kendo-dock-indicator-outline-style: solid !default;
46087
+ /// The outline color of the dock indicator in the DockManager component.
46088
+ /// @group dock-manager
46089
+ $kendo-dock-indicator-outline: $kendo-dock-indicator-text !default;
46090
+ /// The box shadow of the dock indicator in the DockManager component.
46091
+ /// @group dock-manager
46092
+ $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;
46093
+
46094
+ /// The background color of the hovered dock indicator in the DockManager component.
46095
+ /// @group dock-manager
46096
+ $kendo-dock-indicator-hover-bg: $kendo-color-primary !default;
46097
+ /// The text color of the hovered dock indicator in the DockManager component.
46098
+ /// @group dock-manager
46099
+ $kendo-dock-indicator-hover-text: $kendo-color-white !default;
46100
+
46101
+ /// The width of the border around the dropping area in the DockManager component.
46102
+ /// @group dock-manager
46103
+ $kendo-dock-manager-dock-preview-border-width: 1px !default;
46104
+ /// The style of the border around the dropping area in the DockManager component.
46105
+ /// @group dock-manager
46106
+ $kendo-dock-manager-dock-preview-border-style: dashed !default;
46107
+ /// The border radius of the dropping area in the DockManager component.
46108
+ /// @group dock-manager
46109
+ $kendo-dock-manager-dock-preview-border-radius: $kendo-border-radius-sm !default;
46110
+ /// The background color of the dropping area in the DockManager component.
46111
+ /// @group dock-manager
46112
+ $kendo-dock-manager-dock-preview-bg: rgba( $kendo-color-primary, .16 ) !default;
46113
+ /// The border color of the dropping area in the DockManager component.
46114
+ /// @group dock-manager
46115
+ $kendo-dock-manager-dock-preview-border: $kendo-color-primary !default;
46116
+
46117
+ // #endregion
46118
+ // #region @import "./_layout.scss"; -> scss/dock-manager/_layout.scss
46119
+ // #region @import "@progress/kendo-theme-default/scss/dock-manager/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/dock-manager/_layout.scss
46120
+ @mixin kendo-dock-manager--layout-base() {
46121
+
46122
+ // DockManager
46123
+ .k-dock-manager {
46124
+ width: 100%;
46125
+ height: 100%;
46126
+ border-width: $kendo-dock-manager-border-width;
46127
+ border-style: $kendo-dock-manager-border-style;
46128
+ position: relative;
46129
+ display: flex;
46130
+ flex-flow: row nowrap;
46131
+ overflow: auto;
46132
+ box-sizing: border-box;
46133
+ }
46134
+
46135
+ // Toolbar
46136
+ .k-dock-manager-toolbar {
46137
+ border-width: 0 $kendo-dock-manager-border-width 0 0;
46138
+ border-color: inherit;
46139
+ flex-shrink: 0;
46140
+ writing-mode: vertical-lr;
46141
+ box-shadow: none;
46142
+
46143
+ &::before {
46144
+ height: 0;
46145
+ }
46146
+
46147
+ .k-separator-horizontal {
46148
+ width: $kendo-line-height-em;
46149
+ height: 0;
46150
+ border-width: $kendo-dock-manager-border-width 0 0;
46151
+ }
46152
+
46153
+ // Needed because of a bug in Chrome - Issue 1473554
46154
+ // A fix will be shipped likely in milestone 118 and then we can revisit this
46155
+ @supports (not (-ms-ime-mode: none)) and (not (overflow: -webkit-marquee)) and (not (-moz-appearance:none)) {
46156
+ .k-toolbar-button {
46157
+ padding-block: $kendo-button-padding-x;
46158
+ padding-inline: $kendo-button-padding-y;
46159
+ }
46160
+ .k-toolbar-button .k-button-text {
46161
+ writing-mode: vertical-lr;
46162
+ }
46163
+ }
46164
+ }
46165
+
46166
+ // Panes
46167
+ .k-dock-manager-pane-container {
46168
+ width: 100%;
46169
+ height: 100%;
46170
+ display: flex;
46171
+ flex-grow: 1;
46172
+ overflow: hidden;
46173
+ }
46174
+
46175
+ // Splitter
46176
+ .k-dock-manager-splitter,
46177
+ .k-dock-manager-unpinned-container {
46178
+ height: 100%;
46179
+ border-width: 0;
46180
+ align-items: stretch;
46181
+
46182
+ > .k-pane {
46183
+ height: auto;
46184
+ flex-direction: column;
46185
+ border-color: inherit;
46186
+ }
46187
+
46188
+ .k-pane-header {
46189
+ display: flex;
46190
+ align-items: center;
46191
+ justify-content: center;
46192
+ padding-block: $kendo-dock-manager-pane-header-padding-y;
46193
+ padding-inline: $kendo-dock-manager-pane-header-padding-x;
46194
+ border-block-end-width: $kendo-dock-manager-pane-header-border-width;
46195
+ border-block-end-style: $kendo-dock-manager-pane-header-border-style;
46196
+ border-color: inherit;
46197
+ }
46198
+
46199
+ .k-pane-title {
46200
+ padding-block: $kendo-dock-manager-pane-title-padding-y;
46201
+ padding-inline: $kendo-dock-manager-pane-title-padding-x;
46202
+ font-family: $kendo-dock-manager-pane-title-font-family;
46203
+ font-size: $kendo-dock-manager-pane-title-font-size;
46204
+ line-height: $kendo-dock-manager-pane-title-line-height;
46205
+ font-weight: $kendo-dock-manager-pane-title-font-weight;
46206
+ flex: 1 1 auto;
46207
+ white-space: nowrap;
46208
+ text-overflow: ellipsis;
46209
+ overflow: hidden;
46210
+ }
46211
+
46212
+ .k-pane-scrollable {
46213
+ height: 100%;
46214
+ display: flex;
46215
+ flex-direction: column;
46216
+ border-color: inherit;
46217
+ }
46218
+
46219
+ .k-pane-content {
46220
+ height: 100%;
46221
+ padding-block: $kendo-dock-manager-pane-content-padding-y;
46222
+ padding-inline: $kendo-dock-manager-pane-content-padding-x;
46223
+ overflow: auto;
46224
+ flex: 1;
46225
+ }
46226
+
46227
+ .k-pane-actions {
46228
+ display: flex;
46229
+ flex-flow: row nowrap;
46230
+ align-items: center;
46231
+ justify-content: center;
46232
+ }
46233
+
46234
+ .k-pane-tabbed {
46235
+ padding-block-start: $kendo-dock-manager-tabbed-pane-padding-y;
46236
+ padding-block-end: $kendo-dock-manager-tabbed-pane-padding-x;
46237
+ padding-inline: $kendo-dock-manager-tabbed-pane-padding-x;
46238
+ }
46239
+
46240
+ .k-splitbar {
46241
+ border-width: 0 1px;
46242
+ border-style: solid;
46243
+ border-color: inherit;
46244
+ }
46245
+ .k-splitbar-vertical {
46246
+ border-width: 1px 0;
46247
+ }
46248
+ }
46249
+
46250
+ // Unpinned pane
46251
+ .k-dock-manager-unpinned-container {
46252
+ width: $kendo-dock-manager-unpinned-container-width;
46253
+ position: absolute;
46254
+ display: flex;
46255
+ height: 100%;
46256
+ border-color: inherit;
46257
+ z-index: 20;
46258
+
46259
+ .k-pane {
46260
+ display: inline-flex;
46261
+ flex-direction: column;
46262
+ position: relative;
46263
+ flex: 1 1 auto;
46264
+ }
46265
+
46266
+ .k-splitbar {
46267
+ height: 100%;
46268
+ position: relative;
46269
+ flex: none;
46270
+ }
46271
+ }
46272
+
46273
+ // Docking preview
46274
+ .k-docking-preview {
46275
+ width: 100%;
46276
+ height: 100%;
46277
+ box-sizing: border-box;
46278
+ display: flex;
46279
+ position: absolute;
46280
+ top: 0;
46281
+ left: 0;
46282
+ border-width: $kendo-dock-manager-dock-preview-border-width;
46283
+ border-style: $kendo-dock-manager-dock-preview-border-style;
46284
+ border-radius: $kendo-dock-manager-dock-preview-border-radius;
46285
+ z-index: 10;
46286
+ }
46287
+
46288
+ }
46289
+
46290
+ @mixin kendo-dock-navigator--layout() {
46291
+
46292
+ // DockNavigator
46293
+ .k-dock-navigator-container {
46294
+ width: 100%;
46295
+ height: 100%;
46296
+ display: flex;
46297
+ flex-direction: column;
46298
+ align-items: center;
46299
+ position: absolute;
46300
+ z-index: 10001;
46301
+ pointer-events: none;
46302
+ }
46303
+
46304
+ .k-dock-navigator {
46305
+ display: grid;
46306
+ grid-template-columns: repeat(3, auto);
46307
+ grid-template-rows: repeat(3, auto);
46308
+ justify-content: center;
46309
+ position: absolute;
46310
+ }
46311
+
46312
+ .k-dock-indicator {
46313
+ padding: $kendo-dock-indicator-padding;
46314
+ display: inline-flex;
46315
+ align-items: center;
46316
+ justify-content: center;
46317
+ box-sizing: border-box;
46318
+ position: relative;
46319
+ pointer-events: all;
46320
+ outline-width: $kendo-dock-indicator-outline-width;
46321
+ outline-style: $kendo-dock-indicator-outline-style;
46322
+
46323
+ &.k-dock-indicator-middle {
46324
+ filter: none;
46325
+ }
46326
+ }
46327
+
46328
+ .k-dock-indicator-top {
46329
+ grid-area: 1 / 2 / auto;
46330
+ }
46331
+ .k-dock-indicator-right {
46332
+ grid-area: 2 / 3 / auto;
46333
+ }
46334
+ .k-dock-indicator-bottom {
46335
+ grid-area: 3 / 2 / auto;
46336
+ }
46337
+ .k-dock-indicator-left {
46338
+ grid-area: 2 / 1 / auto;
46339
+ }
46340
+ .k-dock-indicator-middle {
46341
+ grid-area: 2 / 2 / auto;
46342
+ }
46343
+
46344
+ }
46345
+
46346
+ @mixin kendo-dock-manager--layout() {
46347
+ @include kendo-dock-manager--layout-base();
46348
+ @include kendo-dock-navigator--layout();
46349
+ }
46350
+
46351
+ // #endregion
46352
+
46353
+ @mixin kendo-dock-manager--layout() {
46354
+ @include kendo-dock-manager--layout-base();
46355
+ @include kendo-dock-navigator--layout();
46356
+ }
46357
+
46358
+ // #endregion
46359
+ // #region @import "./_theme.scss"; -> scss/dock-manager/_theme.scss
46360
+ // #region @import "@progress/kendo-theme-default/scss/dock-manager/_theme.scss"; -> node_modules/@progress/kendo-theme-default/scss/dock-manager/_theme.scss
46361
+ @mixin kendo-dock-manager--theme-base() {
46362
+
46363
+ // DockManager
46364
+ .k-dock-manager {
46365
+ border-color: $kendo-dock-manager-border;
46366
+ }
46367
+
46368
+ // Splitter
46369
+ .k-dock-manager-splitter .k-pane-header,
46370
+ .k-dock-manager-unpinned-container .k-pane-header {
46371
+ background-color: $kendo-dock-manager-pane-header-bg;
46372
+ }
46373
+
46374
+ .k-dock-manager-unpinned-container {
46375
+ background-color: $kendo-dock-manager-unpinned-container-bg;
46376
+ @include box-shadow( $kendo-dock-manager-unpinned-container-shadow );
46377
+ }
46378
+
46379
+ // Docking preview
46380
+ .k-docking-preview {
46381
+ background-color: $kendo-dock-manager-dock-preview-bg;
46382
+ border-color: $kendo-dock-manager-dock-preview-border;
46383
+ }
46384
+
46385
+ }
46386
+
46387
+ @mixin kendo-dock-navigator--theme() {
46388
+
46389
+ .k-dock-indicator {
46390
+ color: $kendo-dock-indicator-text;
46391
+ background-color: $kendo-dock-indicator-bg;
46392
+ outline-color: $kendo-dock-indicator-outline;
46393
+ filter: $kendo-dock-indicator-shadow;
46394
+
46395
+ &:hover,
46396
+ &.k-hover {
46397
+ background-color: $kendo-dock-indicator-hover-bg;
46398
+ color: $kendo-dock-indicator-hover-text;
46399
+ }
46400
+ }
46401
+
46402
+ }
46403
+
46404
+ @mixin kendo-dock-manager--theme() {
46405
+ @include kendo-dock-manager--theme-base();
46406
+ @include kendo-dock-navigator--theme();
46407
+ }
46408
+
46409
+ // #endregion
46410
+
46411
+ @mixin kendo-dock-manager--theme() {
46412
+ @include kendo-dock-manager--theme-base();
46413
+ @include kendo-dock-navigator--theme();
46414
+ }
46415
+
46416
+ // #endregion
46417
+
46418
+ // Register
46419
+ // #region @import "../core/module-system/index.import.scss"; -> scss/core/module-system/index.import.scss
46420
+ // File already imported_once. Skipping output.
46421
+ // #endregion
46422
+ @include module-register( $_kendo-module-meta... );
46423
+
46424
+ // Expose
46425
+ @mixin kendo-dock-manager--styles() {
46426
+ @include module-render("dock-manager") {
46427
+ @include kendo-dock-manager--layout();
46428
+ @include kendo-dock-manager--theme();
46429
+ }
46430
+ }
46431
+
46432
+ @if $kendo-auto-bootstrap {
46433
+ @include kendo-dock-manager--styles();
46434
+ }
46435
+
45964
46436
  // #endregion
45965
46437
 
45966
46438
 
@@ -59757,10 +60229,9 @@ $kendo-pdf-viewer-page-text: $kendo-component-text !default;
59757
60229
  $kendo-pdf-viewer-page-border: $kendo-component-border !default;
59758
60230
  $kendo-pdf-viewer-page-shadow: 0 0 k-math-div( $kendo-pdf-viewer-page-spacing, 2 ) $kendo-pdf-viewer-page-border !default;
59759
60231
 
59760
- $kendo-pdf-viewer-search-dialog-padding-x: $kendo-toolbar-md-padding-x !default;
59761
- $kendo-pdf-viewer-search-dialog-padding-y: calc( #{$kendo-toolbar-md-padding-x} * 2 ) !default;
59762
- $kendo-pdf-viewer-search-dialog-spacing: $kendo-toolbar-md-spacing !default;
59763
-
60232
+ $kendo-pdf-viewer-search-panel-padding-x: $kendo-toolbar-md-padding-x !default;
60233
+ $kendo-pdf-viewer-search-panel-padding-y: calc( #{$kendo-toolbar-md-padding-x} * 2 ) !default;
60234
+ $kendo-pdf-viewer-search-panel-spacing: $kendo-toolbar-md-spacing !default;
59764
60235
  $kendo-pdf-viewer-search-panel-border-width: 1px !default;
59765
60236
  $kendo-pdf-viewer-search-panel-border-radius: k-map-get( $kendo-spacing, 1 ) !default;
59766
60237
  $kendo-pdf-viewer-search-panel-bg: $kendo-component-bg !default;
@@ -59823,19 +60294,17 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
59823
60294
  flex: 1 1 auto;
59824
60295
  outline: none;
59825
60296
 
59826
- .k-enable-text-select,
59827
60297
  &.k-enable-text-select {
59828
60298
  user-select: text;
59829
60299
  cursor: text;
59830
60300
  }
59831
60301
 
59832
- .k-enable-panning,
59833
60302
  &.k-enable-panning {
59834
60303
  cursor: grab;
59835
- }
59836
- .k-enable-panning span::selection,
59837
- &.k-enable-panning span::selection {
59838
- background-color: transparent;
60304
+
60305
+ span::selection {
60306
+ background-color: transparent;
60307
+ }
59839
60308
  }
59840
60309
  }
59841
60310
 
@@ -59868,10 +60337,6 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
59868
60337
  color: transparent;
59869
60338
  }
59870
60339
 
59871
- mark {
59872
- color: transparent;
59873
- }
59874
-
59875
60340
  .k-search-highlight-mark {
59876
60341
  color: transparent;
59877
60342
  }
@@ -59899,19 +60364,22 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
59899
60364
  }
59900
60365
 
59901
60366
  // Search
59902
- .k-pdf-viewer-search-dialog {
59903
- padding: 0 !important; // stylelint-disable-line declaration-no-important
59904
- }
59905
-
59906
- .k-search-panel {
59907
- padding-block: $kendo-pdf-viewer-search-dialog-padding-y;
59908
- padding-inline: $kendo-pdf-viewer-search-dialog-padding-x;
60367
+ .k-pdf-viewer-canvas > .k-search-panel {
60368
+ width: max-content;
60369
+ margin-top: calc( (#{$kendo-button-calc-size} + ( 2 * #{$kendo-pdf-viewer-search-panel-border-width} ) + ( 2 * #{$kendo-pdf-viewer-search-panel-padding-y} )) * -1 );
60370
+ padding-block: $kendo-pdf-viewer-search-panel-padding-y;
60371
+ padding-inline: $kendo-pdf-viewer-search-panel-padding-x;
60372
+ border-width: $kendo-pdf-viewer-search-panel-border-width;
60373
+ border-style: solid;
60374
+ border-radius: $kendo-pdf-viewer-search-panel-border-radius;
59909
60375
  display: flex;
59910
- gap: $kendo-pdf-viewer-search-dialog-spacing;
60376
+ gap: $kendo-pdf-viewer-search-panel-spacing;
59911
60377
  flex-flow: row nowrap;
59912
60378
  flex: 0 0 auto;
59913
60379
  justify-content: flex-start;
59914
60380
  align-items: center;
60381
+ z-index: 10;
60382
+ cursor: default;
59915
60383
 
59916
60384
  .k-search-dialog-draghandle {
59917
60385
  cursor: move;
@@ -59933,21 +60401,6 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
59933
60401
  }
59934
60402
  }
59935
60403
 
59936
- .k-pdf-viewer-canvas > .k-search-panel {
59937
- width: max-content;
59938
- margin-top: calc( (#{$kendo-button-calc-size} + ( 2 * #{$kendo-pdf-viewer-search-panel-border-width} ) + ( 2 * #{$kendo-pdf-viewer-search-dialog-padding-y} )) * -1 );
59939
- border-width: $kendo-pdf-viewer-search-panel-border-width;
59940
- border-style: solid;
59941
- border-radius: $kendo-pdf-viewer-search-panel-border-radius;
59942
- z-index: 10;
59943
- cursor: default;
59944
- }
59945
-
59946
- // Alias
59947
- .k-search-container {
59948
- @extend .k-search-panel !optional;
59949
- }
59950
-
59951
60404
  }
59952
60405
 
59953
60406
 
@@ -60033,10 +60486,6 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
60033
60486
  @include box-shadow( $kendo-pdf-viewer-search-panel-shadow );
60034
60487
  }
60035
60488
 
60036
- .k-search-container {
60037
- @extend .k-search-panel !optional;
60038
- }
60039
-
60040
60489
  }
60041
60490
 
60042
60491
 
@@ -62596,6 +63045,7 @@ $kendo-signature-maximized-line-width: 3px !default;
62596
63045
  @include kendo-panelbar--styles();
62597
63046
  @include kendo-splitter--styles();
62598
63047
  @include kendo-tile-layout--styles();
63048
+ @include kendo-dock-manager--styles();
62599
63049
 
62600
63050
 
62601
63051
  // Data management