@progress/kendo-theme-bootstrap 9.1.0-dev.4 → 9.1.0-dev.5

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.
Files changed (42) hide show
  1. package/dist/all.css +1 -1
  2. package/dist/all.scss +465 -82
  3. package/dist/bootstrap-3-dark.css +1 -1
  4. package/dist/bootstrap-3.css +1 -1
  5. package/dist/bootstrap-4-dark.css +1 -1
  6. package/dist/bootstrap-4.css +1 -1
  7. package/dist/bootstrap-dataviz-v4.css +1 -1
  8. package/dist/bootstrap-main-dark.css +1 -1
  9. package/dist/bootstrap-main.css +1 -1
  10. package/dist/bootstrap-nordic.css +1 -1
  11. package/dist/bootstrap-turquoise-dark.css +1 -1
  12. package/dist/bootstrap-turquoise.css +1 -1
  13. package/dist/bootstrap-urban.css +1 -1
  14. package/dist/bootstrap-vintage.css +1 -1
  15. package/dist/meta/sassdoc-data.json +1038 -114
  16. package/dist/meta/sassdoc-raw-data.json +475 -50
  17. package/dist/meta/variables.json +97 -9
  18. package/lib/swatches/bootstrap-3-dark.json +1 -1
  19. package/lib/swatches/bootstrap-3.json +1 -1
  20. package/lib/swatches/bootstrap-4-dark.json +1 -1
  21. package/lib/swatches/bootstrap-4.json +1 -1
  22. package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
  23. package/lib/swatches/bootstrap-main-dark.json +1 -1
  24. package/lib/swatches/bootstrap-main.json +1 -1
  25. package/lib/swatches/bootstrap-nordic.json +1 -1
  26. package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
  27. package/lib/swatches/bootstrap-turquoise.json +1 -1
  28. package/lib/swatches/bootstrap-urban.json +1 -1
  29. package/lib/swatches/bootstrap-vintage.json +1 -1
  30. package/package.json +5 -5
  31. package/scss/dataviz/_index.scss +3 -1
  32. package/scss/dataviz/_variables.scss +9 -0
  33. package/scss/index.scss +2 -0
  34. package/scss/list/_index.scss +3 -1
  35. package/scss/list/_variables.scss +0 -4
  36. package/scss/no-data/_index.scss +32 -0
  37. package/scss/no-data/_layout.scss +5 -0
  38. package/scss/no-data/_theme.scss +5 -0
  39. package/scss/no-data/_variables.scss +7 -0
  40. package/scss/pdf-viewer/_variables.scss +23 -0
  41. package/scss/scheduler/_index.scss +3 -1
  42. package/scss/toolbar/_variables.scss +32 -4
package/dist/all.scss CHANGED
@@ -7184,6 +7184,7 @@ $kendo-components: (
7184
7184
  "overlay",
7185
7185
  "ripple",
7186
7186
  "virtual-scroller",
7187
+ "no-data",
7187
7188
 
7188
7189
  // Indicators
7189
7190
  "avatar",
@@ -7689,6 +7690,7 @@ $_kendo-dependencies: (
7689
7690
  "icon",
7690
7691
  "input"
7691
7692
  ),
7693
+ no-data: (),
7692
7694
  orgchart: (
7693
7695
  "action-buttons",
7694
7696
  "avatar",
@@ -19551,7 +19553,8 @@ $_kendo-module-meta: (
19551
19553
  name: "list",
19552
19554
  dependencies: (
19553
19555
  "checkbox",
19554
- "icon"
19556
+ "icon",
19557
+ "no-data"
19555
19558
  )
19556
19559
  );
19557
19560
 
@@ -19820,10 +19823,6 @@ $kendo-list-group-item-border: inherit !default;
19820
19823
  /// @group list
19821
19824
  $kendo-list-group-item-shadow: null !default;
19822
19825
 
19823
- /// The color of the 'No Data' text.
19824
- /// @group list
19825
- $kendo-list-no-data-text: $kendo-subtle-text !default;
19826
-
19827
19826
  /// The color of the 'Option Label' text.
19828
19827
  /// @group list
19829
19828
  $kendo-list-option-label-text: $kendo-subtle-text !default;
@@ -20405,6 +20404,108 @@ $kendo-checkbox-ripple-opacity: .25 !default;
20405
20404
  @include kendo-checkbox--styles();
20406
20405
  }
20407
20406
 
20407
+ // #endregion
20408
+ // #region @import "../no-data/_index.scss"; -> scss/no-data/_index.scss
20409
+ // #region @import "../core/_index.scss"; -> scss/core/_index.scss
20410
+ // File already imported_once. Skipping output.
20411
+ // #endregion
20412
+
20413
+
20414
+ // Module meta
20415
+ $_kendo-module-meta: (
20416
+ name: "no-data",
20417
+ dependencies: ()
20418
+ );
20419
+
20420
+ // Dependencies
20421
+
20422
+
20423
+ // Component
20424
+ // #region @import "./_variables.scss"; -> scss/no-data/_variables.scss
20425
+ /// The minimum height of the 'No Data' text container.
20426
+ /// @group no-data
20427
+ $kendo-no-data-min-height: 140px !default;
20428
+
20429
+ /// The color of the 'No Data' text.
20430
+ /// @group no-data
20431
+ $kendo-no-data-text: $kendo-subtle-text !default;
20432
+
20433
+ // #endregion
20434
+ // #region @import "./_layout.scss"; -> scss/no-data/_layout.scss
20435
+ // #region @import "@progress/kendo-theme-default/scss/no-data/_layout.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-default/scss/no-data/_layout.scss
20436
+ @mixin kendo-no-data--layout-base() {
20437
+
20438
+ .k-no-data {
20439
+ min-height: $kendo-no-data-min-height;
20440
+ display: flex;
20441
+ align-items: center;
20442
+ justify-content: center;
20443
+ font-weight: lighter;
20444
+ text-align: center;
20445
+ white-space: normal;
20446
+ }
20447
+
20448
+
20449
+ // Alias
20450
+ .k-nodata {
20451
+ @extend .k-no-data !optional;
20452
+ }
20453
+
20454
+
20455
+ }
20456
+
20457
+ @mixin kendo-no-data--layout() {
20458
+ @include kendo-no-data--layout-base();
20459
+ }
20460
+
20461
+ // #endregion
20462
+
20463
+ @mixin kendo-no-data--layout() {
20464
+ @include kendo-no-data--layout-base();
20465
+ }
20466
+
20467
+ // #endregion
20468
+ // #region @import "./_theme.scss"; -> scss/no-data/_theme.scss
20469
+ // #region @import "@progress/kendo-theme-default/scss/no-data/_theme.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-default/scss/no-data/_theme.scss
20470
+ @mixin kendo-no-data--theme-base() {
20471
+
20472
+ .k-no-data {
20473
+ color: $kendo-no-data-text;
20474
+ }
20475
+
20476
+ }
20477
+
20478
+
20479
+ @mixin kendo-no-data--theme() {
20480
+ @include kendo-no-data--theme-base();
20481
+ }
20482
+
20483
+ // #endregion
20484
+
20485
+ @mixin kendo-no-data--theme() {
20486
+ @include kendo-no-data--theme-base();
20487
+ }
20488
+
20489
+ // #endregion
20490
+
20491
+ // Register
20492
+ // #region @import "../core/module-system/index.import.scss"; -> scss/core/module-system/index.import.scss
20493
+ // File already imported_once. Skipping output.
20494
+ // #endregion
20495
+ @include module-register( $_kendo-module-meta... );
20496
+
20497
+ // Expose
20498
+ @mixin kendo-no-data--styles() {
20499
+ @include module-render( "no-data" ) {
20500
+ @include kendo-no-data--layout();
20501
+ @include kendo-no-data--theme();
20502
+ }
20503
+ }
20504
+
20505
+ @if $kendo-auto-bootstrap {
20506
+ @include kendo-no-data--styles();
20507
+ }
20508
+
20408
20509
  // #endregion
20409
20510
 
20410
20511
 
@@ -20654,25 +20755,6 @@ $kendo-checkbox-ripple-opacity: .25 !default;
20654
20755
  }
20655
20756
  }
20656
20757
  }
20657
-
20658
-
20659
- // No data
20660
- .k-no-data {
20661
- min-height: 140px;
20662
- display: flex;
20663
- align-items: center;
20664
- justify-content: center;
20665
- font-weight: lighter;
20666
- text-align: center;
20667
- white-space: normal;
20668
- }
20669
-
20670
-
20671
- // Alias
20672
- .k-nodata {
20673
- @extend .k-no-data !optional;
20674
- }
20675
-
20676
20758
  }
20677
20759
 
20678
20760
 
@@ -20780,12 +20862,6 @@ $kendo-checkbox-ripple-opacity: .25 !default;
20780
20862
  );
20781
20863
  }
20782
20864
 
20783
-
20784
- // No data
20785
- .k-no-data {
20786
- color: $kendo-list-no-data-text;
20787
- }
20788
-
20789
20865
  }
20790
20866
 
20791
20867
 
@@ -22281,6 +22357,9 @@ $_kendo-module-meta: (
22281
22357
  }
22282
22358
 
22283
22359
  // #endregion
22360
+ // #region @import "./no-data/_index.scss"; -> scss/no-data/_index.scss
22361
+ // File already imported_once. Skipping output.
22362
+ // #endregion
22284
22363
 
22285
22364
 
22286
22365
  // Indicators
@@ -26735,6 +26814,38 @@ $kendo-toolbar-gradient: null !default;
26735
26814
  /// @group toolbar
26736
26815
  $kendo-toolbar-shadow: null !default;
26737
26816
 
26817
+ /// The text color of the outline Toolbar.
26818
+ /// @group toolbar
26819
+ $kendo-toolbar-outline-text: $kendo-button-text !default;
26820
+ /// The color of the border around the outline Toolbar.
26821
+ /// @group toolbar
26822
+ $kendo-toolbar-outline-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( $kendo-toolbar-outline-text, .5 )) !default;
26823
+ /// The gradient of the outline Toolbar.
26824
+ /// @group toolbar
26825
+ $kendo-toolbar-outline-gradient: null !default;
26826
+ /// The box shadow of the outline Toolbar.
26827
+ /// @group toolbar
26828
+ $kendo-toolbar-outline-shadow: null !default;
26829
+ /// The width of the border around the outline Toolbar.
26830
+ /// @group toolbar
26831
+ $kendo-toolbar-outline-border-width: $kendo-toolbar-border-width !default;
26832
+
26833
+ /// The text color of the flat Toolbar.
26834
+ /// @group toolbar
26835
+ $kendo-toolbar-flat-text: null !default;
26836
+ /// The color of the border around the flat Toolbar.
26837
+ /// @group toolbar
26838
+ $kendo-toolbar-flat-border: $kendo-toolbar-border !default;
26839
+ /// The gradient of the flat Toolbar.
26840
+ /// @group toolbar
26841
+ $kendo-toolbar-flat-gradient: null !default;
26842
+ /// The box shadow of the flat Toolbar.
26843
+ /// @group toolbar
26844
+ $kendo-toolbar-flat-shadow: null !default;
26845
+ /// Border width of the flat Toolbar.
26846
+ /// @group toolbar
26847
+ $kendo-toolbar-flat-border-width: 1px !default;
26848
+
26738
26849
  /// The color of the separator border of the Toolbar.
26739
26850
  /// @group toolbar
26740
26851
  $kendo-toolbar-separator-border: inherit !default;
@@ -26747,10 +26858,6 @@ $kendo-toolbar-input-width: 10em !default;
26747
26858
  /// @group toolbar
26748
26859
  $kendo-toolbar-item-shadow: 0 0 0 .25rem if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-color-primary, .25 )) !default;
26749
26860
 
26750
- /// Border width of the flat Toolbar.
26751
- /// @group toolbar
26752
- $kendo-toolbar-flat-border-width: 1px !default;
26753
-
26754
26861
  /// The sizes map for the Toolbar.
26755
26862
  /// @group toolbar
26756
26863
  $kendo-toolbar-sizes: (
@@ -26877,7 +26984,19 @@ $kendo-toolbar-sizes: (
26877
26984
  text-decoration: none;
26878
26985
  outline: 0;
26879
26986
  }
26987
+ }
26880
26988
 
26989
+ // Outline Toolbar
26990
+ .k-toolbar-outline {
26991
+ border-width: $kendo-toolbar-outline-border-width;
26992
+ background: none;
26993
+ }
26994
+
26995
+ // Flat Toolbar
26996
+ .k-toolbar-flat {
26997
+ border-top-color: transparent !important; // stylelint-disable-line declaration-no-important
26998
+ border-inline-color: transparent !important; // stylelint-disable-line declaration-no-important
26999
+ background: none !important; // stylelint-disable-line declaration-no-important
26881
27000
  }
26882
27001
 
26883
27002
 
@@ -27024,16 +27143,6 @@ $kendo-toolbar-sizes: (
27024
27143
  }
27025
27144
  }
27026
27145
 
27027
- // Flat Toolbar
27028
- .k-toolbar.k-toolbar-flat {
27029
- border-width: $kendo-toolbar-flat-border-width 0;
27030
- border-top-color: transparent !important; // stylelint-disable-line declaration-no-important
27031
- border-bottom-color: inherit;
27032
- color: inherit;
27033
- background: none !important; // stylelint-disable-line declaration-no-important
27034
- box-shadow: none;
27035
- }
27036
-
27037
27146
  }
27038
27147
 
27039
27148
 
@@ -27055,15 +27164,6 @@ $kendo-toolbar-sizes: (
27055
27164
 
27056
27165
  // Theme
27057
27166
  .k-toolbar {
27058
- @include fill(
27059
- $kendo-toolbar-text,
27060
- $kendo-toolbar-bg,
27061
- $kendo-toolbar-border,
27062
- $kendo-toolbar-gradient
27063
- );
27064
- @include box-shadow( $kendo-toolbar-shadow );
27065
-
27066
-
27067
27167
  // Separator
27068
27168
  .k-separator,
27069
27169
  .k-toolbar-separator {
@@ -27083,6 +27183,39 @@ $kendo-toolbar-sizes: (
27083
27183
 
27084
27184
  }
27085
27185
 
27186
+ // Solid Toolbar
27187
+ .k-toolbar-solid {
27188
+ @include fill(
27189
+ $kendo-toolbar-text,
27190
+ $kendo-toolbar-bg,
27191
+ $kendo-toolbar-border,
27192
+ $kendo-toolbar-gradient
27193
+ );
27194
+ @include box-shadow( $kendo-toolbar-shadow );
27195
+ }
27196
+
27197
+ // Outline Toolbar
27198
+ .k-toolbar-outline {
27199
+ @include fill(
27200
+ $color: $kendo-toolbar-outline-text,
27201
+ $border: $kendo-toolbar-outline-border
27202
+ );
27203
+ @include box-shadow( $kendo-toolbar-outline-shadow );
27204
+ }
27205
+
27206
+ // Flat Toolbar
27207
+ .k-toolbar-flat {
27208
+ @include fill(
27209
+ $color: $kendo-toolbar-flat-text,
27210
+ $border: $kendo-toolbar-flat-border
27211
+ );
27212
+ @include box-shadow( $kendo-toolbar-flat-shadow );
27213
+
27214
+ > .k-separator {
27215
+ border-inline-color: $kendo-toolbar-flat-border;
27216
+ }
27217
+ }
27218
+
27086
27219
  .k-floating-toolbar,
27087
27220
  .editorToolbarWindow.k-window-content { // stylelint-disable-line
27088
27221
  @include fill(
@@ -48975,7 +49108,8 @@ $_kendo-module-meta: (
48975
49108
  dependencies: (
48976
49109
  "icon",
48977
49110
  "popup",
48978
- "tooltip"
49111
+ "tooltip",
49112
+ "no-data"
48979
49113
  )
48980
49114
  );
48981
49115
 
@@ -48987,6 +49121,9 @@ $_kendo-module-meta: (
48987
49121
  // #region @import "../tooltip/_index.scss"; -> scss/tooltip/_index.scss
48988
49122
  // File already imported_once. Skipping output.
48989
49123
  // #endregion
49124
+ // #region @import "../no-data/_index.scss"; -> scss/no-data/_index.scss
49125
+ // File already imported_once. Skipping output.
49126
+ // #endregion
48990
49127
 
48991
49128
 
48992
49129
  // Component
@@ -49127,12 +49264,21 @@ $kendo-chart-selection-handle-size: 22px !default;
49127
49264
  $kendo-chart-selection-border-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 8%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 )) !default;
49128
49265
  $kendo-chart-selection-shadow: inset 0 1px 7px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 15%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .15 )) !default;
49129
49266
 
49267
+ $kendo-chart-computed-title-height: 0px !default;
49130
49268
 
49131
49269
  // TreeMap
49132
49270
  $kendo-treemap-font-family: var( --kendo-font-family, inherit ) !default;
49133
49271
  $kendo-treemap-font-size: var( --kendo-font-size, inherit ) !default;
49134
49272
  $kendo-treemap-line-height: var( --kendo-line-height, normal ) !default;
49135
49273
 
49274
+ // Chart Overlay
49275
+ $kendo-chart-overlay-bg: $kendo-base-bg !default;
49276
+
49277
+ // No Data
49278
+ $kendo-chart-no-data-font-size: var( --kendo-font-size-lg, inherit ) !default;
49279
+ $kendo-chart-no-data-font-weight: var( --kendo-font-weight, normal ) !default;
49280
+ $kendo-chart-no-data-padding-y: k-spacing( 25 ) !default;
49281
+
49136
49282
  // #endregion
49137
49283
  // #region @import "./_layout.scss"; -> scss/dataviz/_layout.scss
49138
49284
  // #region @import "@progress/kendo-theme-default/scss/dataviz/_layout.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-default/scss/dataviz/_layout.scss
@@ -49380,8 +49526,29 @@ $kendo-treemap-line-height: var( --kendo-line-height, normal ) !default;
49380
49526
  }
49381
49527
  }
49382
49528
 
49529
+ // Chart Overlay
49530
+ .k-chart-overlay {
49531
+ margin: 0;
49532
+ width: 100%;
49533
+ height: if( --kendo-chart-computed-title-height, calc( 100% - var( --kendo-chart-computed-title-height, #{$kendo-chart-computed-title-height} ) ), 100% );
49534
+ position: absolute;
49535
+ top: 0;
49536
+ left: 0;
49537
+ opacity: 1;
49538
+ z-index: 10001;
49383
49539
 
49540
+ &-top {
49541
+ top: var( --kendo-chart-computed-title-height, #{$kendo-chart-computed-title-height} );
49542
+ }
49384
49543
 
49544
+ .k-no-data {
49545
+ min-height: auto;
49546
+ padding-block-start: $kendo-chart-no-data-padding-y;
49547
+ color: inherit;
49548
+ font-size: $kendo-chart-no-data-font-size;
49549
+ font-weight: $kendo-chart-no-data-font-weight;
49550
+ }
49551
+ }
49385
49552
 
49386
49553
  // Diagram
49387
49554
  .k-diagram {
@@ -49748,7 +49915,9 @@ $kendo-treemap-line-height: var( --kendo-line-height, normal ) !default;
49748
49915
  opacity: .8;
49749
49916
  }
49750
49917
 
49751
-
49918
+ .k-chart-overlay {
49919
+ background-color: $kendo-chart-overlay-bg;
49920
+ }
49752
49921
 
49753
49922
 
49754
49923
  // Treemap
@@ -54112,7 +54281,8 @@ $kendo-spreadsheet-dropzone-spacing-y: k-spacing(4) !default;
54112
54281
 
54113
54282
  // Toolbar
54114
54283
  .k-spreadsheet-toolbar {
54115
- border-width: 0;
54284
+ border-top-width: 0;
54285
+ border-inline-width: 0;
54116
54286
  }
54117
54287
 
54118
54288
  // Action bar
@@ -61155,7 +61325,8 @@ $_kendo-module-meta: (
61155
61325
  "toolbar",
61156
61326
  "tooltip",
61157
61327
  "time-marker",
61158
- "window"
61328
+ "window",
61329
+ "no-data"
61159
61330
  )
61160
61331
  );
61161
61332
 
@@ -61182,6 +61353,9 @@ $_kendo-module-meta: (
61182
61353
  // #region @import "../tooltip/_index.scss"; -> scss/tooltip/_index.scss
61183
61354
  // File already imported_once. Skipping output.
61184
61355
  // #endregion
61356
+ // #region @import "../no-data/_index.scss"; -> scss/no-data/_index.scss
61357
+ // File already imported_once. Skipping output.
61358
+ // #endregion
61185
61359
 
61186
61360
 
61187
61361
  // Component
@@ -64835,6 +65009,29 @@ $kendo-pdf-viewer-search-highlight-mark-bg: yellow !default;
64835
65009
  /// @group pdf-viewer
64836
65010
  $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
64837
65011
 
65012
+ /// The vertical padding of the PDFViewer popup.
65013
+ /// @group pdf-viewer
65014
+ $kendo-pdf-viewer-popup-padding-x: k-spacing(2) !default;
65015
+ /// The horizontal padding of the PDFViewer popup.
65016
+ /// @group pdf-viewer
65017
+ $kendo-pdf-viewer-popup-padding-y: $kendo-pdf-viewer-popup-padding-x !default;
65018
+
65019
+ /// The border color of the PDFViewer selected highlight annotation.
65020
+ /// @group pdf-viewer
65021
+ $kendo-pdf-viewer-highlight-annotation-border: if($kendo-enable-color-system, k-color(primary), $kendo-color-primary) !default;
65022
+ /// The background color of the PDFViewer hover highlight annotation.
65023
+ /// @group pdf-viewer
65024
+ $kendo-pdf-viewer-highlight-annotation-hover-border: if($kendo-enable-color-system, k-color( primary-hover ), $kendo-color-primary-darker) !default;
65025
+ /// The border color of the PDFViewer selected free text annotation.
65026
+ /// @group pdf-viewer
65027
+ $kendo-pdf-viewer-free-text-annotation-border: if($kendo-enable-color-system, k-color(primary), $kendo-color-primary) !default;
65028
+ /// The placeholder text color of the PDFViewer free text annotation.
65029
+ /// @group pdf-viewer
65030
+ $kendo-pdf-viewer-free-text-annotation-placeholder-text: rgba(124, 22, 27, 0.5) !default;
65031
+ /// The text color of the PDFViewer free text annotation.
65032
+ /// @group pdf-viewer
65033
+ $kendo-pdf-viewer-free-text-annotation-text: rgba(124, 22, 27, 0.7) !default;
65034
+
64838
65035
  // #endregion
64839
65036
  // #region @import "./_layout.scss"; -> scss/pdf-viewer/_layout.scss
64840
65037
  // #region @import "@progress/kendo-theme-default/scss/pdf-viewer/_layout.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-default/scss/pdf-viewer/_layout.scss
@@ -64873,44 +65070,69 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
64873
65070
  background: none;
64874
65071
  overflow: visible;
64875
65072
  }
65073
+ }
64876
65074
 
64877
65075
 
64878
- // Canvas
64879
- .k-canvas {
64880
- display: flex;
64881
- flex-direction: column;
64882
- flex: 1 1 auto;
64883
- outline: none;
65076
+ // Canvas
65077
+ .k-pdf-viewer-canvas {
65078
+ display: flex;
65079
+ flex-direction: column;
65080
+ flex: 1 1 auto;
65081
+ outline: none;
64884
65082
 
64885
- &.k-enable-text-select {
64886
- user-select: text;
64887
- cursor: text;
64888
- }
65083
+ &.k-enable-text-select {
65084
+ user-select: text;
65085
+ cursor: text;
65086
+ }
64889
65087
 
64890
- &.k-enable-panning {
64891
- cursor: grab;
65088
+ &.k-enable-panning {
65089
+ cursor: grab !important; // stylelint-disable-line declaration-no-important
64892
65090
 
64893
- span::selection {
64894
- background-color: transparent;
64895
- }
65091
+ span::selection {
65092
+ background-color: transparent;
64896
65093
  }
64897
65094
  }
65095
+ }
64898
65096
 
64899
-
64900
- // Pages
64901
- .k-pdf-viewer-pages {
64902
- flex: 1 1 auto;
64903
- }
65097
+ // Pages
65098
+ .k-pdf-viewer-pages {
65099
+ flex: 1 1 auto;
64904
65100
 
64905
65101
  .k-page {
64906
65102
  position: relative;
64907
65103
  margin-block: $kendo-pdf-viewer-page-spacing;
64908
65104
  margin-inline: auto;
65105
+ z-index: 1;
65106
+
65107
+ // Canvas
65108
+ .k-canvas-wrapper {
65109
+ overflow: hidden;
65110
+ width: 100%;
65111
+ height: 100%;
64909
65112
 
64910
- canvas {
64911
- direction: ltr;
65113
+ canvas {
65114
+ direction: ltr;
65115
+ }
65116
+
65117
+ svg {
65118
+ transform: none;
65119
+ }
65120
+
65121
+ .k-highlight {
65122
+ position: absolute;
65123
+ mix-blend-mode: multiply;
65124
+ fill-opacity: 1;
65125
+
65126
+ }
65127
+ .k-highlight-outline {
65128
+ position: absolute;
65129
+ fill: none;
65130
+ stroke-width: 2px;
65131
+ stroke-dasharray: 2;
65132
+ }
64912
65133
  }
64913
65134
 
65135
+
64914
65136
  .k-text-layer {
64915
65137
  position: absolute;
64916
65138
  top: 0;
@@ -64918,16 +65140,131 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
64918
65140
  opacity: .2;
64919
65141
  overflow: hidden;
64920
65142
 
64921
- > span {
65143
+ .k-marked-content > span,
65144
+ > span, br {
64922
65145
  position: absolute;
64923
65146
  line-height: $kendo-pdf-viewer-selection-line-height;
64924
65147
  transform-origin: 0% 0%;
64925
65148
  color: transparent;
65149
+ white-space: pre;
65150
+ cursor: text;
65151
+ }
65152
+
65153
+ .k-marked-content {
65154
+ top: 0;
65155
+ height: 0;
65156
+ }
65157
+
65158
+ .k-end-of-content {
65159
+ display: block;
65160
+ position: absolute;
65161
+ inset: 100% 0 0;
65162
+ z-index: 0;
65163
+ cursor: default;
65164
+ user-select: none;
64926
65165
  }
64927
65166
 
64928
65167
  .k-search-highlight-mark {
64929
65168
  color: transparent;
64930
65169
  }
65170
+
65171
+ .k-highlighting {
65172
+ touch-action: none;
65173
+ }
65174
+ }
65175
+
65176
+ .k-annotation-layer {
65177
+ position: absolute;
65178
+ top: 0;
65179
+ left: 0;
65180
+ transform-origin: 0 0;
65181
+ pointer-events: none;
65182
+
65183
+ section {
65184
+ position: absolute;
65185
+ }
65186
+
65187
+ .k-annotation-text-content {
65188
+ position: absolute;
65189
+ width: 100%;
65190
+ height: 100%;
65191
+ opacity: 0;
65192
+ color: transparent;
65193
+ user-select: none;
65194
+ pointer-events: none;
65195
+ }
65196
+ }
65197
+
65198
+ .k-annotation-editor-layer {
65199
+ background: transparent;
65200
+ position: absolute;
65201
+ inset: 0;
65202
+ transform-origin: 0 0;
65203
+ cursor: auto;
65204
+
65205
+ .k-selected {
65206
+ z-index: 100000 !important; // stylelint-disable-line declaration-no-important
65207
+ }
65208
+
65209
+ .k-highlight-editor {
65210
+ position: absolute;
65211
+ background: transparent;
65212
+ z-index: 1;
65213
+ cursor: auto;
65214
+ max-width: 100%;
65215
+ max-height: 100%;
65216
+ border: none;
65217
+ outline: none;
65218
+ pointer-events: none;
65219
+ transform-origin: 0 0;
65220
+
65221
+ .k-internal {
65222
+ position: absolute;
65223
+ top: 0;
65224
+ left: 0;
65225
+ width: 100%;
65226
+ height: 100%;
65227
+ pointer-events: auto;
65228
+ }
65229
+ }
65230
+
65231
+ .k-free-text-editor {
65232
+ position: absolute;
65233
+ background: transparent;
65234
+ z-index: 1;
65235
+ transform-origin: 0 0;
65236
+ cursor: text;
65237
+ caret-color: $kendo-pdf-viewer-free-text-annotation-text;
65238
+ max-width: 100%;
65239
+ max-height: 100%;
65240
+ border: solid 2px transparent;
65241
+
65242
+ &.k-selected.k-draggable {
65243
+ cursor: move;;
65244
+ }
65245
+
65246
+ &.k-selected .k-internal {
65247
+ border-radius: 0px;
65248
+ outline: 2px dashed $kendo-pdf-viewer-free-text-annotation-border;
65249
+ }
65250
+
65251
+ .k-internal {
65252
+ background: transparent;
65253
+ border: none;
65254
+ inset: 0;
65255
+ overflow: visible;
65256
+ white-space: nowrap;
65257
+ user-select: none;
65258
+ }
65259
+
65260
+ .k-internal:empty::before {
65261
+ content: attr(default-content);
65262
+ }
65263
+ }
65264
+ }
65265
+
65266
+ .k-annotation-editor-layer-disabled {
65267
+ pointer-events: none;
64931
65268
  }
64932
65269
  }
64933
65270
 
@@ -64948,7 +65285,6 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
64948
65285
  background: none;
64949
65286
  }
64950
65287
  }
64951
-
64952
65288
  }
64953
65289
 
64954
65290
  // Search
@@ -64989,6 +65325,28 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
64989
65325
  }
64990
65326
  }
64991
65327
 
65328
+ // Annotation Toolbar
65329
+ .k-pdf-viewer-annotation-editor-toolbar > .k-toolbar {
65330
+ width: min-content;
65331
+ border-bottom-width: 0;
65332
+ }
65333
+
65334
+
65335
+ // Annotation Editor
65336
+ .k-pdf-viewer-annotation-editor {
65337
+ padding-block: $kendo-pdf-viewer-popup-padding-y;
65338
+ padding-inline: $kendo-pdf-viewer-popup-padding-x;
65339
+
65340
+ .k-column-menu-group-header {
65341
+ padding-inline: 0;
65342
+ }
65343
+
65344
+ .k-form-field {
65345
+ margin-top: 0;
65346
+ }
65347
+
65348
+ }
65349
+
64992
65350
  }
64993
65351
 
64994
65352
 
@@ -65029,7 +65387,7 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
65029
65387
 
65030
65388
 
65031
65389
  // Canvas
65032
- .k-canvas {
65390
+ .k-pdf-viewer-canvas {
65033
65391
  @include fill(
65034
65392
  $kendo-pdf-viewer-canvas-text,
65035
65393
  $kendo-pdf-viewer-canvas-bg,
@@ -65052,6 +65410,16 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
65052
65410
  @include fill( $color: $kendo-pdf-viewer-icon-text );
65053
65411
  }
65054
65412
 
65413
+ .k-canvas-wrapper .k-highlight-outline {
65414
+ &.k-hover,
65415
+ &:hover {
65416
+ stroke: $kendo-pdf-viewer-highlight-annotation-hover-border;
65417
+ }
65418
+
65419
+ &.k-selected {
65420
+ stroke: $kendo-pdf-viewer-highlight-annotation-border;
65421
+ }
65422
+ }
65055
65423
 
65056
65424
  // Search
65057
65425
  .k-search-highlight {
@@ -65062,6 +65430,14 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
65062
65430
  @include fill( $bg: $kendo-pdf-viewer-search-highlight-mark-bg );
65063
65431
  }
65064
65432
 
65433
+ .k-annotation-editor-layer .k-free-text-editor .k-internal {
65434
+ color: $kendo-pdf-viewer-free-text-annotation-text;
65435
+
65436
+ &:empty::before {
65437
+ color: $kendo-pdf-viewer-free-text-annotation-placeholder-text;
65438
+ }
65439
+ }
65440
+
65065
65441
  }
65066
65442
 
65067
65443
  .k-pdf-viewer-canvas > .k-search-panel {
@@ -65887,6 +66263,12 @@ $kendo-prompt-suggestion-shadow: k-elevation(1) !default;
65887
66263
  flex-direction: column;
65888
66264
  position: relative;
65889
66265
  overflow: hidden;
66266
+
66267
+ // Toolbar
66268
+ .k-toolbar {
66269
+ border-top-width: 0;
66270
+ border-inline-width: 0;
66271
+ }
65890
66272
  }
65891
66273
 
65892
66274
  // Content
@@ -67035,6 +67417,7 @@ $kendo-signature-maximized-line-width: 3px !default;
67035
67417
  @include kendo-ripple--styles();
67036
67418
  @include kendo-table--styles();
67037
67419
  @include kendo-virtual-scroller--styles();
67420
+ @include kendo-no-data--styles();
67038
67421
 
67039
67422
 
67040
67423
  // Indicators