@progress/kendo-theme-classic 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/classic-green-dark.css +1 -1
- package/dist/classic-green.css +1 -1
- package/dist/classic-lavender-dark.css +1 -1
- package/dist/classic-lavender.css +1 -1
- package/dist/classic-main-dark.css +1 -1
- package/dist/classic-main.css +1 -1
- package/dist/classic-metro-dark.css +1 -1
- package/dist/classic-metro.css +1 -1
- package/dist/classic-moonlight.css +1 -1
- package/dist/classic-opal-dark.css +1 -1
- package/dist/classic-opal.css +1 -1
- package/dist/classic-silver-dark.css +1 -1
- package/dist/classic-silver.css +1 -1
- package/dist/classic-uniform.css +1 -1
- package/dist/meta/sassdoc-data.json +1632 -654
- package/dist/meta/sassdoc-raw-data.json +751 -301
- package/dist/meta/variables.json +121 -29
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-lavender-dark.json +1 -1
- package/lib/swatches/classic-lavender.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-metro-dark.json +1 -1
- package/lib/swatches/classic-metro.json +1 -1
- package/lib/swatches/classic-moonlight.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/lib/swatches/classic-uniform.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
|
@@ -5093,6 +5093,7 @@ $kendo-components: (
|
|
|
5093
5093
|
"overlay",
|
|
5094
5094
|
"ripple",
|
|
5095
5095
|
"virtual-scroller",
|
|
5096
|
+
"no-data",
|
|
5096
5097
|
|
|
5097
5098
|
// Indicators
|
|
5098
5099
|
"avatar",
|
|
@@ -5598,6 +5599,7 @@ $_kendo-dependencies: (
|
|
|
5598
5599
|
"icon",
|
|
5599
5600
|
"input"
|
|
5600
5601
|
),
|
|
5602
|
+
no-data: (),
|
|
5601
5603
|
orgchart: (
|
|
5602
5604
|
"action-buttons",
|
|
5603
5605
|
"avatar",
|
|
@@ -17517,7 +17519,8 @@ $_kendo-module-meta: (
|
|
|
17517
17519
|
name: "list",
|
|
17518
17520
|
dependencies: (
|
|
17519
17521
|
"checkbox",
|
|
17520
|
-
"icon"
|
|
17522
|
+
"icon",
|
|
17523
|
+
"no-data"
|
|
17521
17524
|
)
|
|
17522
17525
|
);
|
|
17523
17526
|
|
|
@@ -17786,10 +17789,6 @@ $kendo-list-group-item-border: inherit !default;
|
|
|
17786
17789
|
/// @group list
|
|
17787
17790
|
$kendo-list-group-item-shadow: null !default;
|
|
17788
17791
|
|
|
17789
|
-
/// The color of the 'No Data' text.
|
|
17790
|
-
/// @group list
|
|
17791
|
-
$kendo-list-no-data-text: $kendo-subtle-text !default;
|
|
17792
|
-
|
|
17793
17792
|
/// The color of the 'Option Label' text.
|
|
17794
17793
|
/// @group list
|
|
17795
17794
|
$kendo-list-option-label-text: $kendo-subtle-text !default;
|
|
@@ -18358,6 +18357,108 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
18358
18357
|
@include kendo-checkbox--styles();
|
|
18359
18358
|
}
|
|
18360
18359
|
|
|
18360
|
+
// #endregion
|
|
18361
|
+
// #region @import "../no-data/_index.scss"; -> scss/no-data/_index.scss
|
|
18362
|
+
// #region @import "../core/_index.scss"; -> scss/core/_index.scss
|
|
18363
|
+
// File already imported_once. Skipping output.
|
|
18364
|
+
// #endregion
|
|
18365
|
+
|
|
18366
|
+
|
|
18367
|
+
// Module meta
|
|
18368
|
+
$_kendo-module-meta: (
|
|
18369
|
+
name: "no-data",
|
|
18370
|
+
dependencies: ()
|
|
18371
|
+
);
|
|
18372
|
+
|
|
18373
|
+
// Dependencies
|
|
18374
|
+
|
|
18375
|
+
|
|
18376
|
+
// Component
|
|
18377
|
+
// #region @import "./_variables.scss"; -> scss/no-data/_variables.scss
|
|
18378
|
+
/// The minimum height of the 'No Data' text container.
|
|
18379
|
+
/// @group no-data
|
|
18380
|
+
$kendo-no-data-min-height: 140px !default;
|
|
18381
|
+
|
|
18382
|
+
/// The color of the 'No Data' text.
|
|
18383
|
+
/// @group no-data
|
|
18384
|
+
$kendo-no-data-text: $kendo-subtle-text !default;
|
|
18385
|
+
|
|
18386
|
+
// #endregion
|
|
18387
|
+
// #region @import "./_layout.scss"; -> scss/no-data/_layout.scss
|
|
18388
|
+
// #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
|
|
18389
|
+
@mixin kendo-no-data--layout-base() {
|
|
18390
|
+
|
|
18391
|
+
.k-no-data {
|
|
18392
|
+
min-height: $kendo-no-data-min-height;
|
|
18393
|
+
display: flex;
|
|
18394
|
+
align-items: center;
|
|
18395
|
+
justify-content: center;
|
|
18396
|
+
font-weight: lighter;
|
|
18397
|
+
text-align: center;
|
|
18398
|
+
white-space: normal;
|
|
18399
|
+
}
|
|
18400
|
+
|
|
18401
|
+
|
|
18402
|
+
// Alias
|
|
18403
|
+
.k-nodata {
|
|
18404
|
+
@extend .k-no-data !optional;
|
|
18405
|
+
}
|
|
18406
|
+
|
|
18407
|
+
|
|
18408
|
+
}
|
|
18409
|
+
|
|
18410
|
+
@mixin kendo-no-data--layout() {
|
|
18411
|
+
@include kendo-no-data--layout-base();
|
|
18412
|
+
}
|
|
18413
|
+
|
|
18414
|
+
// #endregion
|
|
18415
|
+
|
|
18416
|
+
@mixin kendo-no-data--layout() {
|
|
18417
|
+
@include kendo-no-data--layout-base();
|
|
18418
|
+
}
|
|
18419
|
+
|
|
18420
|
+
// #endregion
|
|
18421
|
+
// #region @import "./_theme.scss"; -> scss/no-data/_theme.scss
|
|
18422
|
+
// #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
|
|
18423
|
+
@mixin kendo-no-data--theme-base() {
|
|
18424
|
+
|
|
18425
|
+
.k-no-data {
|
|
18426
|
+
color: $kendo-no-data-text;
|
|
18427
|
+
}
|
|
18428
|
+
|
|
18429
|
+
}
|
|
18430
|
+
|
|
18431
|
+
|
|
18432
|
+
@mixin kendo-no-data--theme() {
|
|
18433
|
+
@include kendo-no-data--theme-base();
|
|
18434
|
+
}
|
|
18435
|
+
|
|
18436
|
+
// #endregion
|
|
18437
|
+
|
|
18438
|
+
@mixin kendo-no-data--theme() {
|
|
18439
|
+
@include kendo-no-data--theme-base();
|
|
18440
|
+
}
|
|
18441
|
+
|
|
18442
|
+
// #endregion
|
|
18443
|
+
|
|
18444
|
+
// Register
|
|
18445
|
+
// #region @import "../core/module-system/index.import.scss"; -> scss/core/module-system/index.import.scss
|
|
18446
|
+
// File already imported_once. Skipping output.
|
|
18447
|
+
// #endregion
|
|
18448
|
+
@include module-register( $_kendo-module-meta... );
|
|
18449
|
+
|
|
18450
|
+
// Expose
|
|
18451
|
+
@mixin kendo-no-data--styles() {
|
|
18452
|
+
@include module-render( "no-data" ) {
|
|
18453
|
+
@include kendo-no-data--layout();
|
|
18454
|
+
@include kendo-no-data--theme();
|
|
18455
|
+
}
|
|
18456
|
+
}
|
|
18457
|
+
|
|
18458
|
+
@if $kendo-auto-bootstrap {
|
|
18459
|
+
@include kendo-no-data--styles();
|
|
18460
|
+
}
|
|
18461
|
+
|
|
18361
18462
|
// #endregion
|
|
18362
18463
|
|
|
18363
18464
|
|
|
@@ -18607,25 +18708,6 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
18607
18708
|
}
|
|
18608
18709
|
}
|
|
18609
18710
|
}
|
|
18610
|
-
|
|
18611
|
-
|
|
18612
|
-
// No data
|
|
18613
|
-
.k-no-data {
|
|
18614
|
-
min-height: 140px;
|
|
18615
|
-
display: flex;
|
|
18616
|
-
align-items: center;
|
|
18617
|
-
justify-content: center;
|
|
18618
|
-
font-weight: lighter;
|
|
18619
|
-
text-align: center;
|
|
18620
|
-
white-space: normal;
|
|
18621
|
-
}
|
|
18622
|
-
|
|
18623
|
-
|
|
18624
|
-
// Alias
|
|
18625
|
-
.k-nodata {
|
|
18626
|
-
@extend .k-no-data !optional;
|
|
18627
|
-
}
|
|
18628
|
-
|
|
18629
18711
|
}
|
|
18630
18712
|
|
|
18631
18713
|
|
|
@@ -18733,12 +18815,6 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
18733
18815
|
);
|
|
18734
18816
|
}
|
|
18735
18817
|
|
|
18736
|
-
|
|
18737
|
-
// No data
|
|
18738
|
-
.k-no-data {
|
|
18739
|
-
color: $kendo-list-no-data-text;
|
|
18740
|
-
}
|
|
18741
|
-
|
|
18742
18818
|
}
|
|
18743
18819
|
|
|
18744
18820
|
|
|
@@ -20228,6 +20304,9 @@ $_kendo-module-meta: (
|
|
|
20228
20304
|
}
|
|
20229
20305
|
|
|
20230
20306
|
// #endregion
|
|
20307
|
+
// #region @import "./no-data/_index.scss"; -> scss/no-data/_index.scss
|
|
20308
|
+
// File already imported_once. Skipping output.
|
|
20309
|
+
// #endregion
|
|
20231
20310
|
|
|
20232
20311
|
|
|
20233
20312
|
// Indicators
|
|
@@ -24611,6 +24690,38 @@ $kendo-toolbar-gradient: null !default;
|
|
|
24611
24690
|
/// @group toolbar
|
|
24612
24691
|
$kendo-toolbar-shadow: null !default;
|
|
24613
24692
|
|
|
24693
|
+
/// The text color of the outline Toolbar.
|
|
24694
|
+
/// @group toolbar
|
|
24695
|
+
$kendo-toolbar-outline-text: $kendo-button-text !default;
|
|
24696
|
+
/// The color of the border around the outline Toolbar.
|
|
24697
|
+
/// @group toolbar
|
|
24698
|
+
$kendo-toolbar-outline-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 50%, transparent), rgba( $kendo-toolbar-outline-text, .5)) !default;
|
|
24699
|
+
/// The gradient of the outline Toolbar.
|
|
24700
|
+
/// @group toolbar
|
|
24701
|
+
$kendo-toolbar-outline-gradient: null !default;
|
|
24702
|
+
/// The box shadow of the outline Toolbar.
|
|
24703
|
+
/// @group toolbar
|
|
24704
|
+
$kendo-toolbar-outline-shadow: null !default;
|
|
24705
|
+
/// The width of the border around the outline Toolbar.
|
|
24706
|
+
/// @group toolbar
|
|
24707
|
+
$kendo-toolbar-outline-border-width: $kendo-toolbar-border-width !default;
|
|
24708
|
+
|
|
24709
|
+
/// The text color of the flat Toolbar.
|
|
24710
|
+
/// @group toolbar
|
|
24711
|
+
$kendo-toolbar-flat-text: null !default;
|
|
24712
|
+
/// The color of the border around the flat Toolbar.
|
|
24713
|
+
/// @group toolbar
|
|
24714
|
+
$kendo-toolbar-flat-border: $kendo-toolbar-border !default;
|
|
24715
|
+
/// The gradient of the flat Toolbar.
|
|
24716
|
+
/// @group toolbar
|
|
24717
|
+
$kendo-toolbar-flat-gradient: null !default;
|
|
24718
|
+
/// The box shadow of the flat Toolbar.
|
|
24719
|
+
/// @group toolbar
|
|
24720
|
+
$kendo-toolbar-flat-shadow: null !default;
|
|
24721
|
+
/// Border width of the flat Toolbar.
|
|
24722
|
+
/// @group toolbar
|
|
24723
|
+
$kendo-toolbar-flat-border-width: 1px !default;
|
|
24724
|
+
|
|
24614
24725
|
/// The color of the separator border of the Toolbar.
|
|
24615
24726
|
/// @group toolbar
|
|
24616
24727
|
$kendo-toolbar-separator-border: inherit !default;
|
|
@@ -24623,10 +24734,6 @@ $kendo-toolbar-input-width: 10em !default;
|
|
|
24623
24734
|
/// @group toolbar
|
|
24624
24735
|
$kendo-toolbar-item-shadow: $kendo-button-focus-shadow !default;
|
|
24625
24736
|
|
|
24626
|
-
/// Border width of the flat Toolbar.
|
|
24627
|
-
/// @group toolbar
|
|
24628
|
-
$kendo-toolbar-flat-border-width: 1px !default;
|
|
24629
|
-
|
|
24630
24737
|
/// The sizes map for the Toolbar.
|
|
24631
24738
|
/// @group toolbar
|
|
24632
24739
|
$kendo-toolbar-sizes: (
|
|
@@ -24753,7 +24860,19 @@ $kendo-toolbar-sizes: (
|
|
|
24753
24860
|
text-decoration: none;
|
|
24754
24861
|
outline: 0;
|
|
24755
24862
|
}
|
|
24863
|
+
}
|
|
24756
24864
|
|
|
24865
|
+
// Outline Toolbar
|
|
24866
|
+
.k-toolbar-outline {
|
|
24867
|
+
border-width: $kendo-toolbar-outline-border-width;
|
|
24868
|
+
background: none;
|
|
24869
|
+
}
|
|
24870
|
+
|
|
24871
|
+
// Flat Toolbar
|
|
24872
|
+
.k-toolbar-flat {
|
|
24873
|
+
border-top-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
24874
|
+
border-inline-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
24875
|
+
background: none !important; // stylelint-disable-line declaration-no-important
|
|
24757
24876
|
}
|
|
24758
24877
|
|
|
24759
24878
|
|
|
@@ -24900,16 +25019,6 @@ $kendo-toolbar-sizes: (
|
|
|
24900
25019
|
}
|
|
24901
25020
|
}
|
|
24902
25021
|
|
|
24903
|
-
// Flat Toolbar
|
|
24904
|
-
.k-toolbar.k-toolbar-flat {
|
|
24905
|
-
border-width: $kendo-toolbar-flat-border-width 0;
|
|
24906
|
-
border-top-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
24907
|
-
border-bottom-color: inherit;
|
|
24908
|
-
color: inherit;
|
|
24909
|
-
background: none !important; // stylelint-disable-line declaration-no-important
|
|
24910
|
-
box-shadow: none;
|
|
24911
|
-
}
|
|
24912
|
-
|
|
24913
25022
|
}
|
|
24914
25023
|
|
|
24915
25024
|
|
|
@@ -24931,15 +25040,6 @@ $kendo-toolbar-sizes: (
|
|
|
24931
25040
|
|
|
24932
25041
|
// Theme
|
|
24933
25042
|
.k-toolbar {
|
|
24934
|
-
@include fill(
|
|
24935
|
-
$kendo-toolbar-text,
|
|
24936
|
-
$kendo-toolbar-bg,
|
|
24937
|
-
$kendo-toolbar-border,
|
|
24938
|
-
$kendo-toolbar-gradient
|
|
24939
|
-
);
|
|
24940
|
-
@include box-shadow( $kendo-toolbar-shadow );
|
|
24941
|
-
|
|
24942
|
-
|
|
24943
25043
|
// Separator
|
|
24944
25044
|
.k-separator,
|
|
24945
25045
|
.k-toolbar-separator {
|
|
@@ -24959,6 +25059,39 @@ $kendo-toolbar-sizes: (
|
|
|
24959
25059
|
|
|
24960
25060
|
}
|
|
24961
25061
|
|
|
25062
|
+
// Solid Toolbar
|
|
25063
|
+
.k-toolbar-solid {
|
|
25064
|
+
@include fill(
|
|
25065
|
+
$kendo-toolbar-text,
|
|
25066
|
+
$kendo-toolbar-bg,
|
|
25067
|
+
$kendo-toolbar-border,
|
|
25068
|
+
$kendo-toolbar-gradient
|
|
25069
|
+
);
|
|
25070
|
+
@include box-shadow( $kendo-toolbar-shadow );
|
|
25071
|
+
}
|
|
25072
|
+
|
|
25073
|
+
// Outline Toolbar
|
|
25074
|
+
.k-toolbar-outline {
|
|
25075
|
+
@include fill(
|
|
25076
|
+
$color: $kendo-toolbar-outline-text,
|
|
25077
|
+
$border: $kendo-toolbar-outline-border
|
|
25078
|
+
);
|
|
25079
|
+
@include box-shadow( $kendo-toolbar-outline-shadow );
|
|
25080
|
+
}
|
|
25081
|
+
|
|
25082
|
+
// Flat Toolbar
|
|
25083
|
+
.k-toolbar-flat {
|
|
25084
|
+
@include fill(
|
|
25085
|
+
$color: $kendo-toolbar-flat-text,
|
|
25086
|
+
$border: $kendo-toolbar-flat-border
|
|
25087
|
+
);
|
|
25088
|
+
@include box-shadow( $kendo-toolbar-flat-shadow );
|
|
25089
|
+
|
|
25090
|
+
> .k-separator {
|
|
25091
|
+
border-inline-color: $kendo-toolbar-flat-border;
|
|
25092
|
+
}
|
|
25093
|
+
}
|
|
25094
|
+
|
|
24962
25095
|
.k-floating-toolbar,
|
|
24963
25096
|
.editorToolbarWindow.k-window-content { // stylelint-disable-line
|
|
24964
25097
|
@include fill(
|
|
@@ -42684,6 +42817,9 @@ $kendo-stepper-label-padding-x: k-spacing(3) !default;
|
|
|
42684
42817
|
/// The vertical padding the Stepper label.
|
|
42685
42818
|
/// @group stepper
|
|
42686
42819
|
$kendo-stepper-label-padding-y: calc( #{k-spacing(2.5)} / 2 ) !default;
|
|
42820
|
+
/// The border radius of the Stepper label.
|
|
42821
|
+
/// @group stepper
|
|
42822
|
+
$kendo-stepper-label-border-radius: k-border-radius(xxxl) !default;
|
|
42687
42823
|
/// The width of the border around the Stepper.
|
|
42688
42824
|
/// @group stepper
|
|
42689
42825
|
$kendo-stepper-border-width: 0px !default;
|
|
@@ -43010,7 +43146,7 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
|
|
|
43010
43146
|
z-index: 1;
|
|
43011
43147
|
}
|
|
43012
43148
|
.k-step-label:only-child {
|
|
43013
|
-
@include border-radius(
|
|
43149
|
+
@include border-radius( $kendo-stepper-label-border-radius );
|
|
43014
43150
|
padding-block: $kendo-stepper-label-padding-y;
|
|
43015
43151
|
padding-inline: $kendo-stepper-label-padding-x;
|
|
43016
43152
|
border-width: 0;
|
|
@@ -43091,7 +43227,7 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
|
|
|
43091
43227
|
text-align: center;
|
|
43092
43228
|
}
|
|
43093
43229
|
.k-step-indicator + .k-step-label {
|
|
43094
|
-
margin-top: if($kendo-stepper-indicator-focus-offset > 0,
|
|
43230
|
+
margin-top: if($kendo-stepper-indicator-focus-offset > 0, k-spacing(1), 8px);
|
|
43095
43231
|
}
|
|
43096
43232
|
|
|
43097
43233
|
// Progressbar
|
|
@@ -45653,7 +45789,7 @@ $kendo-splitter-drag-handle-length: 20px !default;
|
|
|
45653
45789
|
$kendo-splitter-drag-handle-thickness: 2px !default;
|
|
45654
45790
|
/// The margin of the Splitter drag handle icon.
|
|
45655
45791
|
/// @group splitter
|
|
45656
|
-
$kendo-splitter-drag-icon-margin:
|
|
45792
|
+
$kendo-splitter-drag-icon-margin: k-spacing(2) !default;
|
|
45657
45793
|
/// The horizontal padding of the collapse icon in the Splitter.
|
|
45658
45794
|
/// @group splitter
|
|
45659
45795
|
$kendo-splitter-collapse-icon-padding-x: null !default;
|
|
@@ -46650,7 +46786,8 @@ $_kendo-module-meta: (
|
|
|
46650
46786
|
dependencies: (
|
|
46651
46787
|
"icon",
|
|
46652
46788
|
"popup",
|
|
46653
|
-
"tooltip"
|
|
46789
|
+
"tooltip",
|
|
46790
|
+
"no-data"
|
|
46654
46791
|
)
|
|
46655
46792
|
);
|
|
46656
46793
|
|
|
@@ -46662,6 +46799,9 @@ $_kendo-module-meta: (
|
|
|
46662
46799
|
// #region @import "../tooltip/_index.scss"; -> scss/tooltip/_index.scss
|
|
46663
46800
|
// File already imported_once. Skipping output.
|
|
46664
46801
|
// #endregion
|
|
46802
|
+
// #region @import "../no-data/_index.scss"; -> scss/no-data/_index.scss
|
|
46803
|
+
// File already imported_once. Skipping output.
|
|
46804
|
+
// #endregion
|
|
46665
46805
|
|
|
46666
46806
|
|
|
46667
46807
|
// Component
|
|
@@ -46802,12 +46942,21 @@ $kendo-chart-selection-handle-size: 22px !default;
|
|
|
46802
46942
|
$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;
|
|
46803
46943
|
$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;
|
|
46804
46944
|
|
|
46945
|
+
$kendo-chart-computed-title-height: 0px !default;
|
|
46805
46946
|
|
|
46806
46947
|
// TreeMap
|
|
46807
46948
|
$kendo-treemap-font-family: var( --kendo-font-family, inherit ) !default;
|
|
46808
46949
|
$kendo-treemap-font-size: var( --kendo-font-size, inherit ) !default;
|
|
46809
46950
|
$kendo-treemap-line-height: var( --kendo-line-height, normal ) !default;
|
|
46810
46951
|
|
|
46952
|
+
// Chart Overlay
|
|
46953
|
+
$kendo-chart-overlay-bg: $kendo-base-bg !default;
|
|
46954
|
+
|
|
46955
|
+
// No Data
|
|
46956
|
+
$kendo-chart-no-data-font-size: var( --kendo-font-size-lg, inherit ) !default;
|
|
46957
|
+
$kendo-chart-no-data-font-weight: var( --kendo-font-weight, normal ) !default;
|
|
46958
|
+
$kendo-chart-no-data-padding-y: k-spacing( 25 ) !default;
|
|
46959
|
+
|
|
46811
46960
|
// #endregion
|
|
46812
46961
|
// #region @import "./_layout.scss"; -> scss/dataviz/_layout.scss
|
|
46813
46962
|
// #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
|
|
@@ -47055,8 +47204,29 @@ $kendo-treemap-line-height: var( --kendo-line-height, normal ) !default;
|
|
|
47055
47204
|
}
|
|
47056
47205
|
}
|
|
47057
47206
|
|
|
47207
|
+
// Chart Overlay
|
|
47208
|
+
.k-chart-overlay {
|
|
47209
|
+
margin: 0;
|
|
47210
|
+
width: 100%;
|
|
47211
|
+
height: if( --kendo-chart-computed-title-height, calc( 100% - var( --kendo-chart-computed-title-height, #{$kendo-chart-computed-title-height} ) ), 100% );
|
|
47212
|
+
position: absolute;
|
|
47213
|
+
top: 0;
|
|
47214
|
+
left: 0;
|
|
47215
|
+
opacity: 1;
|
|
47216
|
+
z-index: 10001;
|
|
47058
47217
|
|
|
47218
|
+
&-top {
|
|
47219
|
+
top: var( --kendo-chart-computed-title-height, #{$kendo-chart-computed-title-height} );
|
|
47220
|
+
}
|
|
47059
47221
|
|
|
47222
|
+
.k-no-data {
|
|
47223
|
+
min-height: auto;
|
|
47224
|
+
padding-block-start: $kendo-chart-no-data-padding-y;
|
|
47225
|
+
color: inherit;
|
|
47226
|
+
font-size: $kendo-chart-no-data-font-size;
|
|
47227
|
+
font-weight: $kendo-chart-no-data-font-weight;
|
|
47228
|
+
}
|
|
47229
|
+
}
|
|
47060
47230
|
|
|
47061
47231
|
// Diagram
|
|
47062
47232
|
.k-diagram {
|
|
@@ -47423,7 +47593,9 @@ $kendo-treemap-line-height: var( --kendo-line-height, normal ) !default;
|
|
|
47423
47593
|
opacity: .8;
|
|
47424
47594
|
}
|
|
47425
47595
|
|
|
47426
|
-
|
|
47596
|
+
.k-chart-overlay {
|
|
47597
|
+
background-color: $kendo-chart-overlay-bg;
|
|
47598
|
+
}
|
|
47427
47599
|
|
|
47428
47600
|
|
|
47429
47601
|
// Treemap
|
|
@@ -51384,7 +51556,8 @@ $kendo-spreadsheet-dropzone-spacing-y: k-spacing(4) !default;
|
|
|
51384
51556
|
|
|
51385
51557
|
// Toolbar
|
|
51386
51558
|
.k-spreadsheet-toolbar {
|
|
51387
|
-
border-width: 0;
|
|
51559
|
+
border-top-width: 0;
|
|
51560
|
+
border-inline-width: 0;
|
|
51388
51561
|
}
|
|
51389
51562
|
|
|
51390
51563
|
// Action bar
|
|
@@ -58370,7 +58543,8 @@ $_kendo-module-meta: (
|
|
|
58370
58543
|
"toolbar",
|
|
58371
58544
|
"tooltip",
|
|
58372
58545
|
"time-marker",
|
|
58373
|
-
"window"
|
|
58546
|
+
"window",
|
|
58547
|
+
"no-data"
|
|
58374
58548
|
)
|
|
58375
58549
|
);
|
|
58376
58550
|
|
|
@@ -58397,6 +58571,9 @@ $_kendo-module-meta: (
|
|
|
58397
58571
|
// #region @import "../tooltip/_index.scss"; -> scss/tooltip/_index.scss
|
|
58398
58572
|
// File already imported_once. Skipping output.
|
|
58399
58573
|
// #endregion
|
|
58574
|
+
// #region @import "../no-data/_index.scss"; -> scss/no-data/_index.scss
|
|
58575
|
+
// File already imported_once. Skipping output.
|
|
58576
|
+
// #endregion
|
|
58400
58577
|
|
|
58401
58578
|
|
|
58402
58579
|
// Component
|
|
@@ -61148,10 +61325,10 @@ $kendo-timeline-mobile-spacing-y: k-spacing(4) !default;
|
|
|
61148
61325
|
|
|
61149
61326
|
/// The width of the Timeline track arrow.
|
|
61150
61327
|
/// @group timeline
|
|
61151
|
-
$kendo-timeline-track-arrow-width:
|
|
61328
|
+
$kendo-timeline-track-arrow-width: k-spacing(7.5) !default;
|
|
61152
61329
|
/// The height of the Timeline track arrow.
|
|
61153
61330
|
/// @group timeline
|
|
61154
|
-
$kendo-timeline-track-arrow-height:
|
|
61331
|
+
$kendo-timeline-track-arrow-height: k-spacing(7.5) !default;
|
|
61155
61332
|
|
|
61156
61333
|
/// The background color of the disabled Timeline track arrow.
|
|
61157
61334
|
/// @group timeline
|
|
@@ -61165,10 +61342,10 @@ $kendo-timeline-track-arrow-disabled-border: if($kendo-enable-color-system, colo
|
|
|
61165
61342
|
|
|
61166
61343
|
/// The size of the Timeline track.
|
|
61167
61344
|
/// @group timeline
|
|
61168
|
-
$kendo-timeline-track-size:
|
|
61345
|
+
$kendo-timeline-track-size: k-spacing(1.5) !default;
|
|
61169
61346
|
/// The bottom padding of the Timeline's track wrapper.
|
|
61170
61347
|
/// @group timeline
|
|
61171
|
-
$kendo-timeline-track-wrap-padding-bottom:
|
|
61348
|
+
$kendo-timeline-track-wrap-padding-bottom: calc( #{$kendo-timeline-track-size} / 2) !default;
|
|
61172
61349
|
/// The border width of the Timeline track.
|
|
61173
61350
|
/// @group timeline
|
|
61174
61351
|
$kendo-timeline-track-border-width: 1px !default;
|
|
@@ -61177,7 +61354,7 @@ $kendo-timeline-track-border-width: 1px !default;
|
|
|
61177
61354
|
$kendo-timeline-track-margin-bottom: k-spacing(4) !default;
|
|
61178
61355
|
/// The bottom offset of the Timeline track.
|
|
61179
61356
|
/// @group timeline
|
|
61180
|
-
$kendo-timeline-track-bottom-calc: calc(#{
|
|
61357
|
+
$kendo-timeline-track-bottom-calc: calc( calc( #{$kendo-timeline-track-arrow-height} / 2) + #{$kendo-timeline-track-wrap-padding-bottom}) !default;
|
|
61181
61358
|
/// The left offset of the Timeline track.
|
|
61182
61359
|
/// @group timeline
|
|
61183
61360
|
$kendo-timeline-track-start-calc: calc(#{$kendo-timeline-track-arrow-width} - 2 * #{$kendo-timeline-track-border-width}) !default;
|
|
@@ -61621,7 +61798,7 @@ $kendo-timeline-event-min-height-calc: calc(2 * (#{$kendo-timeline-track-event-o
|
|
|
61621
61798
|
|
|
61622
61799
|
.k-timeline-track-wrap {
|
|
61623
61800
|
position: relative;
|
|
61624
|
-
padding:
|
|
61801
|
+
padding: calc( #{$kendo-timeline-track-arrow-height} / 2 ) 0;
|
|
61625
61802
|
|
|
61626
61803
|
&::after {
|
|
61627
61804
|
top: auto;
|
|
@@ -62011,6 +62188,29 @@ $kendo-pdf-viewer-search-highlight-mark-bg: yellow !default;
|
|
|
62011
62188
|
/// @group pdf-viewer
|
|
62012
62189
|
$kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
62013
62190
|
|
|
62191
|
+
/// The vertical padding of the PDFViewer popup.
|
|
62192
|
+
/// @group pdf-viewer
|
|
62193
|
+
$kendo-pdf-viewer-popup-padding-x: k-spacing(2) !default;
|
|
62194
|
+
/// The horizontal padding of the PDFViewer popup.
|
|
62195
|
+
/// @group pdf-viewer
|
|
62196
|
+
$kendo-pdf-viewer-popup-padding-y: $kendo-pdf-viewer-popup-padding-x !default;
|
|
62197
|
+
|
|
62198
|
+
/// The border color of the PDFViewer selected highlight annotation.
|
|
62199
|
+
/// @group pdf-viewer
|
|
62200
|
+
$kendo-pdf-viewer-highlight-annotation-border: if($kendo-enable-color-system, k-color(primary), $kendo-color-primary) !default;
|
|
62201
|
+
/// The background color of the PDFViewer hover highlight annotation.
|
|
62202
|
+
/// @group pdf-viewer
|
|
62203
|
+
$kendo-pdf-viewer-highlight-annotation-hover-border: if($kendo-enable-color-system, k-color( primary-hover ), $kendo-color-primary-darker) !default;
|
|
62204
|
+
/// The border color of the PDFViewer selected free text annotation.
|
|
62205
|
+
/// @group pdf-viewer
|
|
62206
|
+
$kendo-pdf-viewer-free-text-annotation-border: if($kendo-enable-color-system, k-color(primary), $kendo-color-primary) !default;
|
|
62207
|
+
/// The placeholder text color of the PDFViewer free text annotation.
|
|
62208
|
+
/// @group pdf-viewer
|
|
62209
|
+
$kendo-pdf-viewer-free-text-annotation-placeholder-text: rgba(124, 22, 27, 0.5) !default;
|
|
62210
|
+
/// The text color of the PDFViewer free text annotation.
|
|
62211
|
+
/// @group pdf-viewer
|
|
62212
|
+
$kendo-pdf-viewer-free-text-annotation-text: rgba(124, 22, 27, 0.7) !default;
|
|
62213
|
+
|
|
62014
62214
|
// #endregion
|
|
62015
62215
|
// #region @import "./_layout.scss"; -> scss/pdf-viewer/_layout.scss
|
|
62016
62216
|
// #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
|
|
@@ -62049,44 +62249,69 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
62049
62249
|
background: none;
|
|
62050
62250
|
overflow: visible;
|
|
62051
62251
|
}
|
|
62252
|
+
}
|
|
62052
62253
|
|
|
62053
62254
|
|
|
62054
|
-
|
|
62055
|
-
|
|
62056
|
-
|
|
62057
|
-
|
|
62058
|
-
|
|
62059
|
-
|
|
62255
|
+
// Canvas
|
|
62256
|
+
.k-pdf-viewer-canvas {
|
|
62257
|
+
display: flex;
|
|
62258
|
+
flex-direction: column;
|
|
62259
|
+
flex: 1 1 auto;
|
|
62260
|
+
outline: none;
|
|
62060
62261
|
|
|
62061
|
-
|
|
62062
|
-
|
|
62063
|
-
|
|
62064
|
-
|
|
62262
|
+
&.k-enable-text-select {
|
|
62263
|
+
user-select: text;
|
|
62264
|
+
cursor: text;
|
|
62265
|
+
}
|
|
62065
62266
|
|
|
62066
|
-
|
|
62067
|
-
|
|
62267
|
+
&.k-enable-panning {
|
|
62268
|
+
cursor: grab !important; // stylelint-disable-line declaration-no-important
|
|
62068
62269
|
|
|
62069
|
-
|
|
62070
|
-
|
|
62071
|
-
}
|
|
62270
|
+
span::selection {
|
|
62271
|
+
background-color: transparent;
|
|
62072
62272
|
}
|
|
62073
62273
|
}
|
|
62274
|
+
}
|
|
62074
62275
|
|
|
62075
|
-
|
|
62076
|
-
|
|
62077
|
-
|
|
62078
|
-
flex: 1 1 auto;
|
|
62079
|
-
}
|
|
62276
|
+
// Pages
|
|
62277
|
+
.k-pdf-viewer-pages {
|
|
62278
|
+
flex: 1 1 auto;
|
|
62080
62279
|
|
|
62081
62280
|
.k-page {
|
|
62082
62281
|
position: relative;
|
|
62083
62282
|
margin-block: $kendo-pdf-viewer-page-spacing;
|
|
62084
62283
|
margin-inline: auto;
|
|
62284
|
+
z-index: 1;
|
|
62285
|
+
|
|
62286
|
+
// Canvas
|
|
62287
|
+
.k-canvas-wrapper {
|
|
62288
|
+
overflow: hidden;
|
|
62289
|
+
width: 100%;
|
|
62290
|
+
height: 100%;
|
|
62085
62291
|
|
|
62086
|
-
|
|
62087
|
-
|
|
62292
|
+
canvas {
|
|
62293
|
+
direction: ltr;
|
|
62294
|
+
}
|
|
62295
|
+
|
|
62296
|
+
svg {
|
|
62297
|
+
transform: none;
|
|
62298
|
+
}
|
|
62299
|
+
|
|
62300
|
+
.k-highlight {
|
|
62301
|
+
position: absolute;
|
|
62302
|
+
mix-blend-mode: multiply;
|
|
62303
|
+
fill-opacity: 1;
|
|
62304
|
+
|
|
62305
|
+
}
|
|
62306
|
+
.k-highlight-outline {
|
|
62307
|
+
position: absolute;
|
|
62308
|
+
fill: none;
|
|
62309
|
+
stroke-width: 2px;
|
|
62310
|
+
stroke-dasharray: 2;
|
|
62311
|
+
}
|
|
62088
62312
|
}
|
|
62089
62313
|
|
|
62314
|
+
|
|
62090
62315
|
.k-text-layer {
|
|
62091
62316
|
position: absolute;
|
|
62092
62317
|
top: 0;
|
|
@@ -62094,16 +62319,131 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
62094
62319
|
opacity: .2;
|
|
62095
62320
|
overflow: hidden;
|
|
62096
62321
|
|
|
62097
|
-
> span
|
|
62322
|
+
.k-marked-content > span,
|
|
62323
|
+
> span, br {
|
|
62098
62324
|
position: absolute;
|
|
62099
62325
|
line-height: $kendo-pdf-viewer-selection-line-height;
|
|
62100
62326
|
transform-origin: 0% 0%;
|
|
62101
62327
|
color: transparent;
|
|
62328
|
+
white-space: pre;
|
|
62329
|
+
cursor: text;
|
|
62330
|
+
}
|
|
62331
|
+
|
|
62332
|
+
.k-marked-content {
|
|
62333
|
+
top: 0;
|
|
62334
|
+
height: 0;
|
|
62335
|
+
}
|
|
62336
|
+
|
|
62337
|
+
.k-end-of-content {
|
|
62338
|
+
display: block;
|
|
62339
|
+
position: absolute;
|
|
62340
|
+
inset: 100% 0 0;
|
|
62341
|
+
z-index: 0;
|
|
62342
|
+
cursor: default;
|
|
62343
|
+
user-select: none;
|
|
62102
62344
|
}
|
|
62103
62345
|
|
|
62104
62346
|
.k-search-highlight-mark {
|
|
62105
62347
|
color: transparent;
|
|
62106
62348
|
}
|
|
62349
|
+
|
|
62350
|
+
.k-highlighting {
|
|
62351
|
+
touch-action: none;
|
|
62352
|
+
}
|
|
62353
|
+
}
|
|
62354
|
+
|
|
62355
|
+
.k-annotation-layer {
|
|
62356
|
+
position: absolute;
|
|
62357
|
+
top: 0;
|
|
62358
|
+
left: 0;
|
|
62359
|
+
transform-origin: 0 0;
|
|
62360
|
+
pointer-events: none;
|
|
62361
|
+
|
|
62362
|
+
section {
|
|
62363
|
+
position: absolute;
|
|
62364
|
+
}
|
|
62365
|
+
|
|
62366
|
+
.k-annotation-text-content {
|
|
62367
|
+
position: absolute;
|
|
62368
|
+
width: 100%;
|
|
62369
|
+
height: 100%;
|
|
62370
|
+
opacity: 0;
|
|
62371
|
+
color: transparent;
|
|
62372
|
+
user-select: none;
|
|
62373
|
+
pointer-events: none;
|
|
62374
|
+
}
|
|
62375
|
+
}
|
|
62376
|
+
|
|
62377
|
+
.k-annotation-editor-layer {
|
|
62378
|
+
background: transparent;
|
|
62379
|
+
position: absolute;
|
|
62380
|
+
inset: 0;
|
|
62381
|
+
transform-origin: 0 0;
|
|
62382
|
+
cursor: auto;
|
|
62383
|
+
|
|
62384
|
+
.k-selected {
|
|
62385
|
+
z-index: 100000 !important; // stylelint-disable-line declaration-no-important
|
|
62386
|
+
}
|
|
62387
|
+
|
|
62388
|
+
.k-highlight-editor {
|
|
62389
|
+
position: absolute;
|
|
62390
|
+
background: transparent;
|
|
62391
|
+
z-index: 1;
|
|
62392
|
+
cursor: auto;
|
|
62393
|
+
max-width: 100%;
|
|
62394
|
+
max-height: 100%;
|
|
62395
|
+
border: none;
|
|
62396
|
+
outline: none;
|
|
62397
|
+
pointer-events: none;
|
|
62398
|
+
transform-origin: 0 0;
|
|
62399
|
+
|
|
62400
|
+
.k-internal {
|
|
62401
|
+
position: absolute;
|
|
62402
|
+
top: 0;
|
|
62403
|
+
left: 0;
|
|
62404
|
+
width: 100%;
|
|
62405
|
+
height: 100%;
|
|
62406
|
+
pointer-events: auto;
|
|
62407
|
+
}
|
|
62408
|
+
}
|
|
62409
|
+
|
|
62410
|
+
.k-free-text-editor {
|
|
62411
|
+
position: absolute;
|
|
62412
|
+
background: transparent;
|
|
62413
|
+
z-index: 1;
|
|
62414
|
+
transform-origin: 0 0;
|
|
62415
|
+
cursor: text;
|
|
62416
|
+
caret-color: $kendo-pdf-viewer-free-text-annotation-text;
|
|
62417
|
+
max-width: 100%;
|
|
62418
|
+
max-height: 100%;
|
|
62419
|
+
border: solid 2px transparent;
|
|
62420
|
+
|
|
62421
|
+
&.k-selected.k-draggable {
|
|
62422
|
+
cursor: move;;
|
|
62423
|
+
}
|
|
62424
|
+
|
|
62425
|
+
&.k-selected .k-internal {
|
|
62426
|
+
border-radius: 0px;
|
|
62427
|
+
outline: 2px dashed $kendo-pdf-viewer-free-text-annotation-border;
|
|
62428
|
+
}
|
|
62429
|
+
|
|
62430
|
+
.k-internal {
|
|
62431
|
+
background: transparent;
|
|
62432
|
+
border: none;
|
|
62433
|
+
inset: 0;
|
|
62434
|
+
overflow: visible;
|
|
62435
|
+
white-space: nowrap;
|
|
62436
|
+
user-select: none;
|
|
62437
|
+
}
|
|
62438
|
+
|
|
62439
|
+
.k-internal:empty::before {
|
|
62440
|
+
content: attr(default-content);
|
|
62441
|
+
}
|
|
62442
|
+
}
|
|
62443
|
+
}
|
|
62444
|
+
|
|
62445
|
+
.k-annotation-editor-layer-disabled {
|
|
62446
|
+
pointer-events: none;
|
|
62107
62447
|
}
|
|
62108
62448
|
}
|
|
62109
62449
|
|
|
@@ -62124,7 +62464,6 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
62124
62464
|
background: none;
|
|
62125
62465
|
}
|
|
62126
62466
|
}
|
|
62127
|
-
|
|
62128
62467
|
}
|
|
62129
62468
|
|
|
62130
62469
|
// Search
|
|
@@ -62165,6 +62504,28 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
62165
62504
|
}
|
|
62166
62505
|
}
|
|
62167
62506
|
|
|
62507
|
+
// Annotation Toolbar
|
|
62508
|
+
.k-pdf-viewer-annotation-editor-toolbar > .k-toolbar {
|
|
62509
|
+
width: min-content;
|
|
62510
|
+
border-bottom-width: 0;
|
|
62511
|
+
}
|
|
62512
|
+
|
|
62513
|
+
|
|
62514
|
+
// Annotation Editor
|
|
62515
|
+
.k-pdf-viewer-annotation-editor {
|
|
62516
|
+
padding-block: $kendo-pdf-viewer-popup-padding-y;
|
|
62517
|
+
padding-inline: $kendo-pdf-viewer-popup-padding-x;
|
|
62518
|
+
|
|
62519
|
+
.k-column-menu-group-header {
|
|
62520
|
+
padding-inline: 0;
|
|
62521
|
+
}
|
|
62522
|
+
|
|
62523
|
+
.k-form-field {
|
|
62524
|
+
margin-top: 0;
|
|
62525
|
+
}
|
|
62526
|
+
|
|
62527
|
+
}
|
|
62528
|
+
|
|
62168
62529
|
}
|
|
62169
62530
|
|
|
62170
62531
|
|
|
@@ -62205,7 +62566,7 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
62205
62566
|
|
|
62206
62567
|
|
|
62207
62568
|
// Canvas
|
|
62208
|
-
.k-canvas {
|
|
62569
|
+
.k-pdf-viewer-canvas {
|
|
62209
62570
|
@include fill(
|
|
62210
62571
|
$kendo-pdf-viewer-canvas-text,
|
|
62211
62572
|
$kendo-pdf-viewer-canvas-bg,
|
|
@@ -62228,6 +62589,16 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
62228
62589
|
@include fill( $color: $kendo-pdf-viewer-icon-text );
|
|
62229
62590
|
}
|
|
62230
62591
|
|
|
62592
|
+
.k-canvas-wrapper .k-highlight-outline {
|
|
62593
|
+
&.k-hover,
|
|
62594
|
+
&:hover {
|
|
62595
|
+
stroke: $kendo-pdf-viewer-highlight-annotation-hover-border;
|
|
62596
|
+
}
|
|
62597
|
+
|
|
62598
|
+
&.k-selected {
|
|
62599
|
+
stroke: $kendo-pdf-viewer-highlight-annotation-border;
|
|
62600
|
+
}
|
|
62601
|
+
}
|
|
62231
62602
|
|
|
62232
62603
|
// Search
|
|
62233
62604
|
.k-search-highlight {
|
|
@@ -62238,6 +62609,14 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
|
62238
62609
|
@include fill( $bg: $kendo-pdf-viewer-search-highlight-mark-bg );
|
|
62239
62610
|
}
|
|
62240
62611
|
|
|
62612
|
+
.k-annotation-editor-layer .k-free-text-editor .k-internal {
|
|
62613
|
+
color: $kendo-pdf-viewer-free-text-annotation-text;
|
|
62614
|
+
|
|
62615
|
+
&:empty::before {
|
|
62616
|
+
color: $kendo-pdf-viewer-free-text-annotation-placeholder-text;
|
|
62617
|
+
}
|
|
62618
|
+
}
|
|
62619
|
+
|
|
62241
62620
|
}
|
|
62242
62621
|
|
|
62243
62622
|
.k-pdf-viewer-canvas > .k-search-panel {
|
|
@@ -62981,6 +63360,12 @@ $kendo-prompt-suggestion-shadow: k-elevation(1) !default;
|
|
|
62981
63360
|
flex-direction: column;
|
|
62982
63361
|
position: relative;
|
|
62983
63362
|
overflow: hidden;
|
|
63363
|
+
|
|
63364
|
+
// Toolbar
|
|
63365
|
+
.k-toolbar {
|
|
63366
|
+
border-top-width: 0;
|
|
63367
|
+
border-inline-width: 0;
|
|
63368
|
+
}
|
|
62984
63369
|
}
|
|
62985
63370
|
|
|
62986
63371
|
// Content
|
|
@@ -63660,7 +64045,7 @@ $kendo-orgchart-line-fill: $kendo-base-border !default;
|
|
|
63660
64045
|
|
|
63661
64046
|
/// The height of the OrgChart connecting line.
|
|
63662
64047
|
/// @group orgchart
|
|
63663
|
-
$kendo-orgchart-line-v-height:
|
|
64048
|
+
$kendo-orgchart-line-v-height: k-spacing(6) !default;
|
|
63664
64049
|
|
|
63665
64050
|
// #endregion
|
|
63666
64051
|
// #region @import "./_layout.scss"; -> scss/orgchart/_layout.scss
|
|
@@ -64129,6 +64514,7 @@ $kendo-signature-maximized-line-width: 3px !default;
|
|
|
64129
64514
|
@include kendo-ripple--styles();
|
|
64130
64515
|
@include kendo-table--styles();
|
|
64131
64516
|
@include kendo-virtual-scroller--styles();
|
|
64517
|
+
@include kendo-no-data--styles();
|
|
64132
64518
|
|
|
64133
64519
|
|
|
64134
64520
|
// Indicators
|