@progress/kendo-theme-bootstrap 9.1.0-dev.3 → 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.
- package/dist/all.css +1 -1
- package/dist/all.scss +478 -92
- package/dist/bootstrap-3-dark.css +1 -1
- package/dist/bootstrap-3.css +1 -1
- package/dist/bootstrap-4-dark.css +1 -1
- package/dist/bootstrap-4.css +1 -1
- package/dist/bootstrap-dataviz-v4.css +1 -1
- package/dist/bootstrap-main-dark.css +1 -1
- package/dist/bootstrap-main.css +1 -1
- package/dist/bootstrap-nordic.css +1 -1
- package/dist/bootstrap-turquoise-dark.css +1 -1
- package/dist/bootstrap-turquoise.css +1 -1
- package/dist/bootstrap-urban.css +1 -1
- package/dist/bootstrap-vintage.css +1 -1
- package/dist/meta/sassdoc-data.json +1632 -654
- package/dist/meta/sassdoc-raw-data.json +750 -300
- package/dist/meta/variables.json +121 -29
- package/lib/swatches/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-3.json +1 -1
- package/lib/swatches/bootstrap-4-dark.json +1 -1
- package/lib/swatches/bootstrap-4.json +1 -1
- package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +1 -1
- package/lib/swatches/bootstrap-main.json +1 -1
- package/lib/swatches/bootstrap-nordic.json +1 -1
- package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
- package/lib/swatches/bootstrap-turquoise.json +1 -1
- package/lib/swatches/bootstrap-urban.json +1 -1
- package/lib/swatches/bootstrap-vintage.json +1 -1
- package/package.json +5 -5
- package/scss/dataviz/_index.scss +3 -1
- package/scss/dataviz/_variables.scss +9 -0
- package/scss/index.scss +2 -0
- package/scss/list/_index.scss +3 -1
- package/scss/list/_variables.scss +0 -4
- package/scss/no-data/_index.scss +32 -0
- package/scss/no-data/_layout.scss +5 -0
- package/scss/no-data/_theme.scss +5 -0
- package/scss/no-data/_variables.scss +7 -0
- package/scss/orgchart/_variables.scss +1 -1
- package/scss/pdf-viewer/_variables.scss +23 -0
- package/scss/scheduler/_index.scss +3 -1
- package/scss/splitter/_variables.scss +1 -1
- package/scss/stepper/_variables.scss +3 -0
- package/scss/timeline/_variables.scss +5 -5
- 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(
|
|
@@ -45007,6 +45140,9 @@ $kendo-stepper-label-padding-x: k-spacing(3) !default;
|
|
|
45007
45140
|
/// The vertical padding the Stepper label.
|
|
45008
45141
|
/// @group stepper
|
|
45009
45142
|
$kendo-stepper-label-padding-y: calc( #{k-spacing(2.5)} / 2 ) !default;
|
|
45143
|
+
/// The border radius of the Stepper label.
|
|
45144
|
+
/// @group stepper
|
|
45145
|
+
$kendo-stepper-label-border-radius: k-border-radius(xxl) !default;
|
|
45010
45146
|
/// The width of the border around the Stepper.
|
|
45011
45147
|
/// @group stepper
|
|
45012
45148
|
$kendo-stepper-border-width: 0px !default;
|
|
@@ -45333,7 +45469,7 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
|
|
|
45333
45469
|
z-index: 1;
|
|
45334
45470
|
}
|
|
45335
45471
|
.k-step-label:only-child {
|
|
45336
|
-
@include border-radius(
|
|
45472
|
+
@include border-radius( $kendo-stepper-label-border-radius );
|
|
45337
45473
|
padding-block: $kendo-stepper-label-padding-y;
|
|
45338
45474
|
padding-inline: $kendo-stepper-label-padding-x;
|
|
45339
45475
|
border-width: 0;
|
|
@@ -45414,7 +45550,7 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
|
|
|
45414
45550
|
text-align: center;
|
|
45415
45551
|
}
|
|
45416
45552
|
.k-step-indicator + .k-step-label {
|
|
45417
|
-
margin-top: if($kendo-stepper-indicator-focus-offset > 0,
|
|
45553
|
+
margin-top: if($kendo-stepper-indicator-focus-offset > 0, k-spacing(1), 8px);
|
|
45418
45554
|
}
|
|
45419
45555
|
|
|
45420
45556
|
// Progressbar
|
|
@@ -47976,7 +48112,7 @@ $kendo-splitter-drag-handle-length: 20px !default;
|
|
|
47976
48112
|
$kendo-splitter-drag-handle-thickness: 2px !default;
|
|
47977
48113
|
/// The margin of the Splitter drag handle icon.
|
|
47978
48114
|
/// @group splitter
|
|
47979
|
-
$kendo-splitter-drag-icon-margin:
|
|
48115
|
+
$kendo-splitter-drag-icon-margin: k-spacing(2) !default;
|
|
47980
48116
|
/// The horizontal padding of the collapse icon in the Splitter.
|
|
47981
48117
|
/// @group splitter
|
|
47982
48118
|
$kendo-splitter-collapse-icon-padding-x: null !default;
|
|
@@ -48972,7 +49108,8 @@ $_kendo-module-meta: (
|
|
|
48972
49108
|
dependencies: (
|
|
48973
49109
|
"icon",
|
|
48974
49110
|
"popup",
|
|
48975
|
-
"tooltip"
|
|
49111
|
+
"tooltip",
|
|
49112
|
+
"no-data"
|
|
48976
49113
|
)
|
|
48977
49114
|
);
|
|
48978
49115
|
|
|
@@ -48984,6 +49121,9 @@ $_kendo-module-meta: (
|
|
|
48984
49121
|
// #region @import "../tooltip/_index.scss"; -> scss/tooltip/_index.scss
|
|
48985
49122
|
// File already imported_once. Skipping output.
|
|
48986
49123
|
// #endregion
|
|
49124
|
+
// #region @import "../no-data/_index.scss"; -> scss/no-data/_index.scss
|
|
49125
|
+
// File already imported_once. Skipping output.
|
|
49126
|
+
// #endregion
|
|
48987
49127
|
|
|
48988
49128
|
|
|
48989
49129
|
// Component
|
|
@@ -49124,12 +49264,21 @@ $kendo-chart-selection-handle-size: 22px !default;
|
|
|
49124
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;
|
|
49125
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;
|
|
49126
49266
|
|
|
49267
|
+
$kendo-chart-computed-title-height: 0px !default;
|
|
49127
49268
|
|
|
49128
49269
|
// TreeMap
|
|
49129
49270
|
$kendo-treemap-font-family: var( --kendo-font-family, inherit ) !default;
|
|
49130
49271
|
$kendo-treemap-font-size: var( --kendo-font-size, inherit ) !default;
|
|
49131
49272
|
$kendo-treemap-line-height: var( --kendo-line-height, normal ) !default;
|
|
49132
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
|
+
|
|
49133
49282
|
// #endregion
|
|
49134
49283
|
// #region @import "./_layout.scss"; -> scss/dataviz/_layout.scss
|
|
49135
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
|
|
@@ -49377,8 +49526,29 @@ $kendo-treemap-line-height: var( --kendo-line-height, normal ) !default;
|
|
|
49377
49526
|
}
|
|
49378
49527
|
}
|
|
49379
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;
|
|
49380
49539
|
|
|
49540
|
+
&-top {
|
|
49541
|
+
top: var( --kendo-chart-computed-title-height, #{$kendo-chart-computed-title-height} );
|
|
49542
|
+
}
|
|
49381
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
|
+
}
|
|
49382
49552
|
|
|
49383
49553
|
// Diagram
|
|
49384
49554
|
.k-diagram {
|
|
@@ -49745,7 +49915,9 @@ $kendo-treemap-line-height: var( --kendo-line-height, normal ) !default;
|
|
|
49745
49915
|
opacity: .8;
|
|
49746
49916
|
}
|
|
49747
49917
|
|
|
49748
|
-
|
|
49918
|
+
.k-chart-overlay {
|
|
49919
|
+
background-color: $kendo-chart-overlay-bg;
|
|
49920
|
+
}
|
|
49749
49921
|
|
|
49750
49922
|
|
|
49751
49923
|
// Treemap
|
|
@@ -54109,7 +54281,8 @@ $kendo-spreadsheet-dropzone-spacing-y: k-spacing(4) !default;
|
|
|
54109
54281
|
|
|
54110
54282
|
// Toolbar
|
|
54111
54283
|
.k-spreadsheet-toolbar {
|
|
54112
|
-
border-width: 0;
|
|
54284
|
+
border-top-width: 0;
|
|
54285
|
+
border-inline-width: 0;
|
|
54113
54286
|
}
|
|
54114
54287
|
|
|
54115
54288
|
// Action bar
|
|
@@ -61152,7 +61325,8 @@ $_kendo-module-meta: (
|
|
|
61152
61325
|
"toolbar",
|
|
61153
61326
|
"tooltip",
|
|
61154
61327
|
"time-marker",
|
|
61155
|
-
"window"
|
|
61328
|
+
"window",
|
|
61329
|
+
"no-data"
|
|
61156
61330
|
)
|
|
61157
61331
|
);
|
|
61158
61332
|
|
|
@@ -61179,6 +61353,9 @@ $_kendo-module-meta: (
|
|
|
61179
61353
|
// #region @import "../tooltip/_index.scss"; -> scss/tooltip/_index.scss
|
|
61180
61354
|
// File already imported_once. Skipping output.
|
|
61181
61355
|
// #endregion
|
|
61356
|
+
// #region @import "../no-data/_index.scss"; -> scss/no-data/_index.scss
|
|
61357
|
+
// File already imported_once. Skipping output.
|
|
61358
|
+
// #endregion
|
|
61182
61359
|
|
|
61183
61360
|
|
|
61184
61361
|
// Component
|
|
@@ -63963,10 +64140,10 @@ $kendo-timeline-mobile-spacing-y: $kendo-padding-md-x !default;
|
|
|
63963
64140
|
|
|
63964
64141
|
/// The width of the Timeline track arrow.
|
|
63965
64142
|
/// @group timeline
|
|
63966
|
-
$kendo-timeline-track-arrow-width:
|
|
64143
|
+
$kendo-timeline-track-arrow-width: calc( #{k-spacing(19)} / 2 ) !default;
|
|
63967
64144
|
/// The height of the Timeline track arrow.
|
|
63968
64145
|
/// @group timeline
|
|
63969
|
-
$kendo-timeline-track-arrow-height:
|
|
64146
|
+
$kendo-timeline-track-arrow-height: calc( #{k-spacing(19)} / 2 ) !default;
|
|
63970
64147
|
|
|
63971
64148
|
/// The background color of the disabled Timeline track arrow.
|
|
63972
64149
|
/// @group timeline
|
|
@@ -63980,10 +64157,10 @@ $kendo-timeline-track-arrow-disabled-border: if($kendo-enable-color-system, colo
|
|
|
63980
64157
|
|
|
63981
64158
|
/// The size of the Timeline track.
|
|
63982
64159
|
/// @group timeline
|
|
63983
|
-
$kendo-timeline-track-size:
|
|
64160
|
+
$kendo-timeline-track-size: k-spacing(1.5) !default;
|
|
63984
64161
|
/// The bottom padding of the Timeline's track wrapper.
|
|
63985
64162
|
/// @group timeline
|
|
63986
|
-
$kendo-timeline-track-wrap-padding-bottom:
|
|
64163
|
+
$kendo-timeline-track-wrap-padding-bottom: calc( #{$kendo-timeline-track-size} / 2) !default;
|
|
63987
64164
|
/// The border width of the Timeline track.
|
|
63988
64165
|
/// @group timeline
|
|
63989
64166
|
$kendo-timeline-track-border-width: 1px !default;
|
|
@@ -63992,7 +64169,7 @@ $kendo-timeline-track-border-width: 1px !default;
|
|
|
63992
64169
|
$kendo-timeline-track-margin-bottom: k-spacing(4) !default;
|
|
63993
64170
|
/// The bottom offset of the Timeline track.
|
|
63994
64171
|
/// @group timeline
|
|
63995
|
-
$kendo-timeline-track-bottom-calc: calc(#{
|
|
64172
|
+
$kendo-timeline-track-bottom-calc: calc( calc(#{ $kendo-timeline-track-arrow-height } / 2) + #{$kendo-timeline-track-wrap-padding-bottom}) !default;
|
|
63996
64173
|
/// The left offset of the Timeline track.
|
|
63997
64174
|
/// @group timeline
|
|
63998
64175
|
$kendo-timeline-track-start-calc: calc(#{$kendo-timeline-track-arrow-width} - 2 * #{$kendo-timeline-track-border-width}) !default;
|
|
@@ -64436,7 +64613,7 @@ $kendo-timeline-event-min-height-calc: calc(2 * (#{$kendo-timeline-track-event-o
|
|
|
64436
64613
|
|
|
64437
64614
|
.k-timeline-track-wrap {
|
|
64438
64615
|
position: relative;
|
|
64439
|
-
padding:
|
|
64616
|
+
padding: calc( #{$kendo-timeline-track-arrow-height} / 2 ) 0;
|
|
64440
64617
|
|
|
64441
64618
|
&::after {
|
|
64442
64619
|
top: auto;
|
|
@@ -64832,6 +65009,29 @@ $kendo-pdf-viewer-search-highlight-mark-bg: yellow !default;
|
|
|
64832
65009
|
/// @group pdf-viewer
|
|
64833
65010
|
$kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
64834
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
|
+
|
|
64835
65035
|
// #endregion
|
|
64836
65036
|
// #region @import "./_layout.scss"; -> scss/pdf-viewer/_layout.scss
|
|
64837
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
|
|
@@ -64870,44 +65070,69 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
64870
65070
|
background: none;
|
|
64871
65071
|
overflow: visible;
|
|
64872
65072
|
}
|
|
65073
|
+
}
|
|
64873
65074
|
|
|
64874
65075
|
|
|
64875
|
-
|
|
64876
|
-
|
|
64877
|
-
|
|
64878
|
-
|
|
64879
|
-
|
|
64880
|
-
|
|
65076
|
+
// Canvas
|
|
65077
|
+
.k-pdf-viewer-canvas {
|
|
65078
|
+
display: flex;
|
|
65079
|
+
flex-direction: column;
|
|
65080
|
+
flex: 1 1 auto;
|
|
65081
|
+
outline: none;
|
|
64881
65082
|
|
|
64882
|
-
|
|
64883
|
-
|
|
64884
|
-
|
|
64885
|
-
|
|
65083
|
+
&.k-enable-text-select {
|
|
65084
|
+
user-select: text;
|
|
65085
|
+
cursor: text;
|
|
65086
|
+
}
|
|
64886
65087
|
|
|
64887
|
-
|
|
64888
|
-
|
|
65088
|
+
&.k-enable-panning {
|
|
65089
|
+
cursor: grab !important; // stylelint-disable-line declaration-no-important
|
|
64889
65090
|
|
|
64890
|
-
|
|
64891
|
-
|
|
64892
|
-
}
|
|
65091
|
+
span::selection {
|
|
65092
|
+
background-color: transparent;
|
|
64893
65093
|
}
|
|
64894
65094
|
}
|
|
65095
|
+
}
|
|
64895
65096
|
|
|
64896
|
-
|
|
64897
|
-
|
|
64898
|
-
|
|
64899
|
-
flex: 1 1 auto;
|
|
64900
|
-
}
|
|
65097
|
+
// Pages
|
|
65098
|
+
.k-pdf-viewer-pages {
|
|
65099
|
+
flex: 1 1 auto;
|
|
64901
65100
|
|
|
64902
65101
|
.k-page {
|
|
64903
65102
|
position: relative;
|
|
64904
65103
|
margin-block: $kendo-pdf-viewer-page-spacing;
|
|
64905
65104
|
margin-inline: auto;
|
|
65105
|
+
z-index: 1;
|
|
65106
|
+
|
|
65107
|
+
// Canvas
|
|
65108
|
+
.k-canvas-wrapper {
|
|
65109
|
+
overflow: hidden;
|
|
65110
|
+
width: 100%;
|
|
65111
|
+
height: 100%;
|
|
64906
65112
|
|
|
64907
|
-
|
|
64908
|
-
|
|
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
|
+
}
|
|
64909
65133
|
}
|
|
64910
65134
|
|
|
65135
|
+
|
|
64911
65136
|
.k-text-layer {
|
|
64912
65137
|
position: absolute;
|
|
64913
65138
|
top: 0;
|
|
@@ -64915,16 +65140,131 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
64915
65140
|
opacity: .2;
|
|
64916
65141
|
overflow: hidden;
|
|
64917
65142
|
|
|
64918
|
-
> span
|
|
65143
|
+
.k-marked-content > span,
|
|
65144
|
+
> span, br {
|
|
64919
65145
|
position: absolute;
|
|
64920
65146
|
line-height: $kendo-pdf-viewer-selection-line-height;
|
|
64921
65147
|
transform-origin: 0% 0%;
|
|
64922
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;
|
|
64923
65165
|
}
|
|
64924
65166
|
|
|
64925
65167
|
.k-search-highlight-mark {
|
|
64926
65168
|
color: transparent;
|
|
64927
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;
|
|
64928
65268
|
}
|
|
64929
65269
|
}
|
|
64930
65270
|
|
|
@@ -64945,7 +65285,6 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
64945
65285
|
background: none;
|
|
64946
65286
|
}
|
|
64947
65287
|
}
|
|
64948
|
-
|
|
64949
65288
|
}
|
|
64950
65289
|
|
|
64951
65290
|
// Search
|
|
@@ -64986,6 +65325,28 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
64986
65325
|
}
|
|
64987
65326
|
}
|
|
64988
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
|
+
|
|
64989
65350
|
}
|
|
64990
65351
|
|
|
64991
65352
|
|
|
@@ -65026,7 +65387,7 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
65026
65387
|
|
|
65027
65388
|
|
|
65028
65389
|
// Canvas
|
|
65029
|
-
.k-canvas {
|
|
65390
|
+
.k-pdf-viewer-canvas {
|
|
65030
65391
|
@include fill(
|
|
65031
65392
|
$kendo-pdf-viewer-canvas-text,
|
|
65032
65393
|
$kendo-pdf-viewer-canvas-bg,
|
|
@@ -65049,6 +65410,16 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
65049
65410
|
@include fill( $color: $kendo-pdf-viewer-icon-text );
|
|
65050
65411
|
}
|
|
65051
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
|
+
}
|
|
65052
65423
|
|
|
65053
65424
|
// Search
|
|
65054
65425
|
.k-search-highlight {
|
|
@@ -65059,6 +65430,14 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
65059
65430
|
@include fill( $bg: $kendo-pdf-viewer-search-highlight-mark-bg );
|
|
65060
65431
|
}
|
|
65061
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
|
+
|
|
65062
65441
|
}
|
|
65063
65442
|
|
|
65064
65443
|
.k-pdf-viewer-canvas > .k-search-panel {
|
|
@@ -65884,6 +66263,12 @@ $kendo-prompt-suggestion-shadow: k-elevation(1) !default;
|
|
|
65884
66263
|
flex-direction: column;
|
|
65885
66264
|
position: relative;
|
|
65886
66265
|
overflow: hidden;
|
|
66266
|
+
|
|
66267
|
+
// Toolbar
|
|
66268
|
+
.k-toolbar {
|
|
66269
|
+
border-top-width: 0;
|
|
66270
|
+
border-inline-width: 0;
|
|
66271
|
+
}
|
|
65887
66272
|
}
|
|
65888
66273
|
|
|
65889
66274
|
// Content
|
|
@@ -66563,7 +66948,7 @@ $kendo-orgchart-line-fill: $kendo-base-border !default;
|
|
|
66563
66948
|
|
|
66564
66949
|
/// The height of the OrgChart connecting line.
|
|
66565
66950
|
/// @group orgchart
|
|
66566
|
-
$kendo-orgchart-line-v-height:
|
|
66951
|
+
$kendo-orgchart-line-v-height: k-spacing(6) !default;
|
|
66567
66952
|
|
|
66568
66953
|
// #endregion
|
|
66569
66954
|
// #region @import "./_layout.scss"; -> scss/orgchart/_layout.scss
|
|
@@ -67032,6 +67417,7 @@ $kendo-signature-maximized-line-width: 3px !default;
|
|
|
67032
67417
|
@include kendo-ripple--styles();
|
|
67033
67418
|
@include kendo-table--styles();
|
|
67034
67419
|
@include kendo-virtual-scroller--styles();
|
|
67420
|
+
@include kendo-no-data--styles();
|
|
67035
67421
|
|
|
67036
67422
|
|
|
67037
67423
|
// Indicators
|