@progress/kendo-theme-classic 5.0.0-beta.5 → 5.0.0-beta.6
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 +4366 -4063
- package/dist/all.scss +1669 -1381
- package/package.json +3 -3
- package/scss/chip/_variables.scss +29 -14
- package/scss/input/_variables.scss +37 -13
- package/scss/switch/_variables.scss +22 -25
- package/scss/toolbar/_index.scss +1 -0
package/dist/all.scss
CHANGED
|
@@ -6808,9 +6808,6 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
6808
6808
|
text-overflow: ellipsis;
|
|
6809
6809
|
cursor: pointer;
|
|
6810
6810
|
}
|
|
6811
|
-
.k-list-optionlabel {
|
|
6812
|
-
@extend .k-list-group-sticky-header;
|
|
6813
|
-
}
|
|
6814
6811
|
|
|
6815
6812
|
|
|
6816
6813
|
// List content
|
|
@@ -6863,6 +6860,9 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
6863
6860
|
right: 0;
|
|
6864
6861
|
}
|
|
6865
6862
|
}
|
|
6863
|
+
.k-list-optionlabel {
|
|
6864
|
+
@extend .k-list-item;
|
|
6865
|
+
}
|
|
6866
6866
|
|
|
6867
6867
|
|
|
6868
6868
|
// List group item
|
|
@@ -6980,7 +6980,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
6980
6980
|
|
|
6981
6981
|
// No data
|
|
6982
6982
|
.k-no-data {
|
|
6983
|
-
min-height:
|
|
6983
|
+
min-height: 140px;
|
|
6984
6984
|
display: flex;
|
|
6985
6985
|
align-items: center;
|
|
6986
6986
|
justify-content: center;
|
|
@@ -7724,6 +7724,12 @@ $badge-dot-size-lg: 12px !default;
|
|
|
7724
7724
|
vertical-align: middle;
|
|
7725
7725
|
overflow: hidden;
|
|
7726
7726
|
text-overflow: ellipsis;
|
|
7727
|
+
|
|
7728
|
+
*,
|
|
7729
|
+
*::before,
|
|
7730
|
+
*::after {
|
|
7731
|
+
box-sizing: border-box;
|
|
7732
|
+
}
|
|
7727
7733
|
}
|
|
7728
7734
|
.k-badge > * {
|
|
7729
7735
|
color: inherit;
|
|
@@ -8172,6 +8178,12 @@ $kendo-button-transition: color .2s ease-in-out !default;
|
|
|
8172
8178
|
position: relative;
|
|
8173
8179
|
transition: $kendo-button-transition;
|
|
8174
8180
|
|
|
8181
|
+
*,
|
|
8182
|
+
*::before,
|
|
8183
|
+
*::after {
|
|
8184
|
+
box-sizing: border-box;
|
|
8185
|
+
}
|
|
8186
|
+
|
|
8175
8187
|
&:disabled,
|
|
8176
8188
|
&.k-disabled {
|
|
8177
8189
|
@include disabled( $disabled-styling );
|
|
@@ -8279,6 +8291,7 @@ $kendo-button-transition: color .2s ease-in-out !default;
|
|
|
8279
8291
|
// Menu button
|
|
8280
8292
|
.k-menu-button,
|
|
8281
8293
|
.k-dropdown-button {
|
|
8294
|
+
aspect-ratio: auto;
|
|
8282
8295
|
outline: 0;
|
|
8283
8296
|
display: inline-flex;
|
|
8284
8297
|
flex-flow: row nowrap;
|
|
@@ -8801,24 +8814,24 @@ $kendo-input-border-width: 1px !default;
|
|
|
8801
8814
|
$kendo-input-border-height: ( $kendo-input-border-width * 2 ) !default;
|
|
8802
8815
|
$kendo-input-border-radius: null !default;
|
|
8803
8816
|
|
|
8804
|
-
$kendo-input-padding-x:
|
|
8805
|
-
$kendo-input-padding-y:
|
|
8817
|
+
$kendo-input-padding-x: map-get( $spacing, 2 ) !default;
|
|
8818
|
+
$kendo-input-padding-y: map-get( $spacing, 1 ) !default;
|
|
8806
8819
|
$kendo-input-font-family: $font-family !default;
|
|
8807
|
-
$kendo-input-font-size: $font-size !default;
|
|
8808
|
-
$kendo-input-line-height: $line-height !default;
|
|
8820
|
+
$kendo-input-font-size: $font-size-md !default;
|
|
8821
|
+
$kendo-input-line-height: $line-height-md !default;
|
|
8809
8822
|
|
|
8810
|
-
$kendo-input-padding-x-sm: ($
|
|
8811
|
-
$kendo-input-padding-y-sm: ($
|
|
8823
|
+
$kendo-input-padding-x-sm: map-get( $spacing, 2 ) !default;
|
|
8824
|
+
$kendo-input-padding-y-sm: map-get( $spacing, 1 ) - map-get( $spacing, thin ) !default;
|
|
8812
8825
|
$kendo-input-font-size-sm: $font-size-md !default;
|
|
8813
8826
|
$kendo-input-line-height-sm: $line-height-md !default;
|
|
8814
8827
|
|
|
8815
|
-
$kendo-input-padding-x-md:
|
|
8816
|
-
$kendo-input-padding-y-md:
|
|
8828
|
+
$kendo-input-padding-x-md: map-get( $spacing, 2 ) !default;
|
|
8829
|
+
$kendo-input-padding-y-md: map-get( $spacing, 1 ) !default;
|
|
8817
8830
|
$kendo-input-font-size-md: $font-size-md !default;
|
|
8818
8831
|
$kendo-input-line-height-md: $line-height-md !default;
|
|
8819
8832
|
|
|
8820
|
-
$kendo-input-padding-x-lg: ($
|
|
8821
|
-
$kendo-input-padding-y-lg: ($
|
|
8833
|
+
$kendo-input-padding-x-lg: map-get( $spacing, 2 ) !default;
|
|
8834
|
+
$kendo-input-padding-y-lg: map-get( $spacing, 1 ) + map-get( $spacing, thin ) !default;
|
|
8822
8835
|
$kendo-input-font-size-lg: $font-size-md !default;
|
|
8823
8836
|
$kendo-input-line-height-lg: $line-height-md !default;
|
|
8824
8837
|
|
|
@@ -8828,21 +8841,27 @@ $kendo-input-sizes: (
|
|
|
8828
8841
|
padding-y: $kendo-input-padding-y-sm,
|
|
8829
8842
|
font-size: $kendo-input-font-size-sm,
|
|
8830
8843
|
line-height: $kendo-input-line-height-sm,
|
|
8831
|
-
icon-size: calc( #{$icon-size} + #{$kendo-input-padding-y-sm * 2} )
|
|
8844
|
+
icon-size: calc( #{$icon-size} + #{$kendo-input-padding-y-sm * 2} ),
|
|
8845
|
+
button-padding-x: $kendo-input-padding-y-sm,
|
|
8846
|
+
button-padding-y: $kendo-input-padding-y-sm
|
|
8832
8847
|
),
|
|
8833
8848
|
md: (
|
|
8834
8849
|
padding-x: $kendo-input-padding-x-md,
|
|
8835
8850
|
padding-y: $kendo-input-padding-y-md,
|
|
8836
8851
|
font-size: $kendo-input-font-size-md,
|
|
8837
8852
|
line-height: $kendo-input-line-height-md,
|
|
8838
|
-
icon-size: calc( #{$icon-size} + #{$kendo-input-padding-y-md * 2} )
|
|
8853
|
+
icon-size: calc( #{$icon-size} + #{$kendo-input-padding-y-md * 2} ),
|
|
8854
|
+
button-padding-x: $kendo-input-padding-y-md,
|
|
8855
|
+
button-padding-y: $kendo-input-padding-y-md
|
|
8839
8856
|
),
|
|
8840
8857
|
lg: (
|
|
8841
8858
|
padding-x: $kendo-input-padding-x-lg,
|
|
8842
8859
|
padding-y: $kendo-input-padding-y-lg,
|
|
8843
8860
|
font-size: $kendo-input-font-size-lg,
|
|
8844
8861
|
line-height: $kendo-input-line-height-lg,
|
|
8845
|
-
icon-size: calc( #{$icon-size} + #{$kendo-input-padding-y-lg * 2} )
|
|
8862
|
+
icon-size: calc( #{$icon-size} + #{$kendo-input-padding-y-lg * 2} ),
|
|
8863
|
+
button-padding-x: $kendo-input-padding-y-lg,
|
|
8864
|
+
button-padding-y: $kendo-input-padding-y-lg
|
|
8846
8865
|
)
|
|
8847
8866
|
) !default;
|
|
8848
8867
|
|
|
@@ -8861,6 +8880,24 @@ $kendo-input-focus-text: null !default;
|
|
|
8861
8880
|
$kendo-input-focus-border: rgba(0, 0, 0, .1) !default;
|
|
8862
8881
|
$kendo-input-focus-shadow: 0 2px 4px 0 rgba(0, 0, 0, .03), 0 4px 5px 0 rgba(0, 0, 0, .04) !default;
|
|
8863
8882
|
|
|
8883
|
+
$kendo-picker-bg: $kendo-button-bg !default;
|
|
8884
|
+
$kendo-picker-text: $kendo-button-text !default;
|
|
8885
|
+
$kendo-picker-border: $kendo-button-border !default;
|
|
8886
|
+
$kendo-picker-gradient: $kendo-button-gradient !default;
|
|
8887
|
+
$kendo-picker-shadow: $kendo-button-shadow !default;
|
|
8888
|
+
|
|
8889
|
+
$kendo-picker-hover-bg: $kendo-button-hover-bg !default;
|
|
8890
|
+
$kendo-picker-hover-text: $kendo-button-hover-text !default;
|
|
8891
|
+
$kendo-picker-hover-border: $kendo-button-hover-border !default;
|
|
8892
|
+
$kendo-picker-hover-gradient: $kendo-button-hover-gradient !default;
|
|
8893
|
+
$kendo-picker-hover-shadow: $kendo-button-hover-shadow !default;
|
|
8894
|
+
|
|
8895
|
+
$kendo-picker-focus-bg: $kendo-button-focus-bg !default;
|
|
8896
|
+
$kendo-picker-focus-text: $kendo-button-focus-text !default;
|
|
8897
|
+
$kendo-picker-focus-border: $kendo-button-focus-border !default;
|
|
8898
|
+
$kendo-picker-focus-gradient: $kendo-button-focus-gradient !default;
|
|
8899
|
+
$kendo-picker-focus-shadow: $kendo-button-focus-shadow !default;
|
|
8900
|
+
|
|
8864
8901
|
$kendo-input-placeholder-text: $subtle-text !default;
|
|
8865
8902
|
$kendo-input-placeholder-opacity: 1 !default;
|
|
8866
8903
|
|
|
@@ -8905,6 +8942,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
8905
8942
|
padding: 0;
|
|
8906
8943
|
width: $kendo-input-default-width;
|
|
8907
8944
|
min-width: 0;
|
|
8945
|
+
box-sizing: border-box;
|
|
8908
8946
|
border-width: $kendo-input-border-width;
|
|
8909
8947
|
border-style: solid;
|
|
8910
8948
|
outline: 0;
|
|
@@ -8922,6 +8960,12 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
8922
8960
|
text-overflow: ellipsis;
|
|
8923
8961
|
-webkit-appearance: none;
|
|
8924
8962
|
|
|
8963
|
+
*,
|
|
8964
|
+
*::before,
|
|
8965
|
+
*::after {
|
|
8966
|
+
box-sizing: border-box;
|
|
8967
|
+
}
|
|
8968
|
+
|
|
8925
8969
|
.k-input,
|
|
8926
8970
|
.k-picker {
|
|
8927
8971
|
border-width: 0 !important; // sass-lint:disable-line no-important
|
|
@@ -8969,7 +9013,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
8969
9013
|
position: relative;
|
|
8970
9014
|
z-index: 1;
|
|
8971
9015
|
overflow: hidden;
|
|
8972
|
-
text-overflow:
|
|
9016
|
+
text-overflow: clip;
|
|
8973
9017
|
-webkit-appearance: none;
|
|
8974
9018
|
|
|
8975
9019
|
// Hide clear icon
|
|
@@ -9008,7 +9052,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9008
9052
|
.k-input-value-text {
|
|
9009
9053
|
flex: 1;
|
|
9010
9054
|
overflow: hidden;
|
|
9011
|
-
text-overflow:
|
|
9055
|
+
text-overflow: clip;
|
|
9012
9056
|
}
|
|
9013
9057
|
.k-input-value-text::before {
|
|
9014
9058
|
content: "\200b";
|
|
@@ -9216,6 +9260,8 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9216
9260
|
$_font-size: map-get( $size-props, font-size );
|
|
9217
9261
|
$_line-height: map-get( $size-props, line-height );
|
|
9218
9262
|
$_icon-size: map-get( $size-props, icon-size );
|
|
9263
|
+
$_button-padding-x: map-get( $size-props, button-padding-x );
|
|
9264
|
+
$_button-padding-y: map-get( $size-props, button-padding-y );
|
|
9219
9265
|
|
|
9220
9266
|
.k-input-#{$size},
|
|
9221
9267
|
.k-picker-#{$size} {
|
|
@@ -9226,6 +9272,12 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9226
9272
|
padding: $_padding-y $_padding-x;
|
|
9227
9273
|
}
|
|
9228
9274
|
|
|
9275
|
+
.k-input-button,
|
|
9276
|
+
.k-spinner-increase,
|
|
9277
|
+
.k-spinner-decrease {
|
|
9278
|
+
padding: $_button-padding-y $_button-padding-x;
|
|
9279
|
+
}
|
|
9280
|
+
|
|
9229
9281
|
.k-input-icon,
|
|
9230
9282
|
.k-input-validation-icon,
|
|
9231
9283
|
.k-input-loading-icon,
|
|
@@ -9347,20 +9399,20 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9347
9399
|
// Solid picker
|
|
9348
9400
|
.k-picker {
|
|
9349
9401
|
@include fill(
|
|
9350
|
-
$kendo-
|
|
9351
|
-
$kendo-
|
|
9352
|
-
$kendo-
|
|
9353
|
-
$kendo-
|
|
9402
|
+
$kendo-picker-text,
|
|
9403
|
+
$kendo-picker-bg,
|
|
9404
|
+
$kendo-picker-border,
|
|
9405
|
+
$kendo-picker-gradient
|
|
9354
9406
|
);
|
|
9355
9407
|
|
|
9356
9408
|
// Hover
|
|
9357
9409
|
&:hover,
|
|
9358
9410
|
&.k-hover {
|
|
9359
9411
|
@include fill(
|
|
9360
|
-
$kendo-
|
|
9361
|
-
$kendo-
|
|
9362
|
-
$kendo-
|
|
9363
|
-
$kendo-
|
|
9412
|
+
$kendo-picker-hover-text,
|
|
9413
|
+
$kendo-picker-hover-bg,
|
|
9414
|
+
$kendo-picker-hover-border,
|
|
9415
|
+
$kendo-picker-hover-gradient
|
|
9364
9416
|
);
|
|
9365
9417
|
}
|
|
9366
9418
|
|
|
@@ -9368,21 +9420,21 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9368
9420
|
&:focus,
|
|
9369
9421
|
&.k-focus {
|
|
9370
9422
|
@include fill (
|
|
9371
|
-
$kendo-
|
|
9372
|
-
$kendo-
|
|
9373
|
-
$kendo-
|
|
9374
|
-
$kendo-
|
|
9423
|
+
$kendo-picker-focus-text,
|
|
9424
|
+
$kendo-picker-focus-bg,
|
|
9425
|
+
$kendo-picker-focus-border,
|
|
9426
|
+
$kendo-picker-focus-gradient
|
|
9375
9427
|
);
|
|
9376
|
-
@include box-shadow( $kendo-
|
|
9428
|
+
@include box-shadow( $kendo-picker-focus-shadow );
|
|
9377
9429
|
}
|
|
9378
9430
|
&:focus-within {
|
|
9379
9431
|
@include fill (
|
|
9380
|
-
$kendo-
|
|
9381
|
-
$kendo-
|
|
9382
|
-
$kendo-
|
|
9383
|
-
$kendo-
|
|
9432
|
+
$kendo-picker-focus-text,
|
|
9433
|
+
$kendo-picker-focus-bg,
|
|
9434
|
+
$kendo-picker-focus-border,
|
|
9435
|
+
$kendo-picker-focus-gradient
|
|
9384
9436
|
);
|
|
9385
|
-
@include box-shadow( $kendo-
|
|
9437
|
+
@include box-shadow( $kendo-picker-focus-shadow );
|
|
9386
9438
|
}
|
|
9387
9439
|
|
|
9388
9440
|
// Invalid
|
|
@@ -9458,12 +9510,19 @@ $floating-label-focus-text: null !default;
|
|
|
9458
9510
|
// Floating label
|
|
9459
9511
|
.k-floating-label-container {
|
|
9460
9512
|
padding-top: $floating-label-height;
|
|
9513
|
+
box-sizing: border-box;
|
|
9461
9514
|
display: inline-flex;
|
|
9462
9515
|
vertical-align: middle;
|
|
9463
9516
|
position: relative;
|
|
9464
9517
|
flex-direction: column;
|
|
9465
9518
|
justify-content: stretch;
|
|
9466
9519
|
|
|
9520
|
+
*,
|
|
9521
|
+
*::before,
|
|
9522
|
+
*::after {
|
|
9523
|
+
box-sizing: border-box;
|
|
9524
|
+
}
|
|
9525
|
+
|
|
9467
9526
|
> .k-label {
|
|
9468
9527
|
max-width: 90%;
|
|
9469
9528
|
font-size: $floating-label-font-size;
|
|
@@ -10659,6 +10718,12 @@ $kendo-avatar-theme-colors: $theme-colors !default;
|
|
|
10659
10718
|
align-items: center;
|
|
10660
10719
|
flex-shrink: 0;
|
|
10661
10720
|
overflow: hidden;
|
|
10721
|
+
|
|
10722
|
+
*,
|
|
10723
|
+
*::before,
|
|
10724
|
+
*::after {
|
|
10725
|
+
box-sizing: border-box;
|
|
10726
|
+
}
|
|
10662
10727
|
}
|
|
10663
10728
|
|
|
10664
10729
|
|
|
@@ -10782,27 +10847,27 @@ $kendo-chip-spacing: map-get( $spacing, 2 );
|
|
|
10782
10847
|
/// Horizontal padding of the chip.
|
|
10783
10848
|
/// @group chip
|
|
10784
10849
|
$kendo-chip-padding-x: map-get( $spacing, 1 ) !default;
|
|
10785
|
-
$kendo-chip-padding-x-sm:
|
|
10786
|
-
$kendo-chip-padding-x-md:
|
|
10787
|
-
$kendo-chip-padding-x-lg:
|
|
10850
|
+
$kendo-chip-padding-x-sm: map-get( $spacing, 1 ) !default;
|
|
10851
|
+
$kendo-chip-padding-x-md: map-get( $spacing, 1 ) !default;
|
|
10852
|
+
$kendo-chip-padding-x-lg: map-get( $spacing, 1 ) !default;
|
|
10788
10853
|
|
|
10789
10854
|
/// Vertical padding of the chip.
|
|
10790
10855
|
/// @group chip
|
|
10791
|
-
$kendo-chip-padding-y:
|
|
10792
|
-
$kendo-chip-padding-y-sm: $
|
|
10793
|
-
$kendo-chip-padding-y-md:
|
|
10794
|
-
$kendo-chip-padding-y-lg: $
|
|
10856
|
+
$kendo-chip-padding-y: map-get( $spacing, 1 ) !default;
|
|
10857
|
+
$kendo-chip-padding-y-sm: map-get( $spacing, 1 ) - map-get( $spacing, thin ) !default;
|
|
10858
|
+
$kendo-chip-padding-y-md: map-get( $spacing, 1 ) !default;
|
|
10859
|
+
$kendo-chip-padding-y-lg: map-get( $spacing, 1 ) + map-get( $spacing, thin ) !default;
|
|
10795
10860
|
|
|
10796
10861
|
/// Font sizes of the chip.
|
|
10797
10862
|
/// @group chip
|
|
10798
|
-
$kendo-chip-font-size: $font-size !default;
|
|
10799
|
-
$kendo-chip-font-size-sm: $font-size-
|
|
10800
|
-
$kendo-chip-font-size-md: $font-size !default;
|
|
10863
|
+
$kendo-chip-font-size: $font-size-md !default;
|
|
10864
|
+
$kendo-chip-font-size-sm: $font-size-md !default;
|
|
10865
|
+
$kendo-chip-font-size-md: $font-size-md !default;
|
|
10801
10866
|
$kendo-chip-font-size-lg: $font-size-md !default;
|
|
10802
10867
|
|
|
10803
10868
|
/// Line heights of the chip that are connected to the $font-size.
|
|
10804
10869
|
/// @group chip
|
|
10805
|
-
$kendo-chip-line-height:
|
|
10870
|
+
$kendo-chip-line-height: 1 !default;
|
|
10806
10871
|
$kendo-chip-line-height-sm: $kendo-chip-line-height !default;
|
|
10807
10872
|
$kendo-chip-line-height-md: $kendo-chip-line-height !default;
|
|
10808
10873
|
$kendo-chip-line-height-lg: $kendo-chip-line-height !default;
|
|
@@ -10810,9 +10875,24 @@ $kendo-chip-line-height-lg: $kendo-chip-line-height !default;
|
|
|
10810
10875
|
/// Sizes map for the chip.
|
|
10811
10876
|
/// @group chip
|
|
10812
10877
|
$kendo-chip-sizes: (
|
|
10813
|
-
sm: (
|
|
10814
|
-
|
|
10815
|
-
|
|
10878
|
+
sm: (
|
|
10879
|
+
padding-x: $kendo-chip-padding-x-sm,
|
|
10880
|
+
padding-y: $kendo-chip-padding-y-sm,
|
|
10881
|
+
font-size: $kendo-chip-font-size-sm,
|
|
10882
|
+
line-height: $kendo-chip-line-height-sm
|
|
10883
|
+
),
|
|
10884
|
+
md: (
|
|
10885
|
+
padding-x: $kendo-chip-padding-x-md,
|
|
10886
|
+
padding-y: $kendo-chip-padding-y-md,
|
|
10887
|
+
font-size: $kendo-chip-font-size-md,
|
|
10888
|
+
line-height: $kendo-chip-line-height-md
|
|
10889
|
+
),
|
|
10890
|
+
lg: (
|
|
10891
|
+
padding-x: $kendo-chip-padding-x-lg,
|
|
10892
|
+
padding-y: $kendo-chip-padding-y-lg,
|
|
10893
|
+
font-size: $kendo-chip-font-size-lg,
|
|
10894
|
+
line-height: $kendo-chip-line-height-lg
|
|
10895
|
+
)
|
|
10816
10896
|
) !default;
|
|
10817
10897
|
|
|
10818
10898
|
/// The base background of the chip.
|
|
@@ -10924,6 +11004,12 @@ $kendo-chip-list-sizes: (
|
|
|
10924
11004
|
cursor: pointer;
|
|
10925
11005
|
user-select: none;
|
|
10926
11006
|
|
|
11007
|
+
*,
|
|
11008
|
+
*::before,
|
|
11009
|
+
*::after {
|
|
11010
|
+
box-sizing: border-box;
|
|
11011
|
+
}
|
|
11012
|
+
|
|
10927
11013
|
.k-selected-icon-wrapper {
|
|
10928
11014
|
display: none !important; // sass-lint:disable-line no-important
|
|
10929
11015
|
}
|
|
@@ -11039,16 +11125,14 @@ $kendo-chip-list-sizes: (
|
|
|
11039
11125
|
|
|
11040
11126
|
// Sizes
|
|
11041
11127
|
@each $size, $size-props in $kendo-chip-sizes {
|
|
11042
|
-
|
|
11128
|
+
$_padding-x: map-get( $size-props, padding-x );
|
|
11129
|
+
$_padding-y: map-get( $size-props, padding-y );
|
|
11043
11130
|
$_font-size: map-get( $size-props, font-size );
|
|
11044
11131
|
$_line-height: map-get( $size-props, line-height );
|
|
11045
|
-
$_padding: map-get( $size-props, padding );
|
|
11046
|
-
$_size: calc( #{$line-height-xs * 1em} + #{$_padding * 2} + #{$kendo-chip-border-width * 2} );
|
|
11047
11132
|
$_avatar-size: 1em;
|
|
11048
11133
|
|
|
11049
11134
|
.k-chip-#{$size} {
|
|
11050
|
-
|
|
11051
|
-
padding: $_padding;
|
|
11135
|
+
padding: $_padding-y $_padding-x;
|
|
11052
11136
|
font-size: $_font-size;
|
|
11053
11137
|
line-height: $_line-height;
|
|
11054
11138
|
}
|
|
@@ -11244,6 +11328,12 @@ $color-preview-transparent-color-image: url("data:image/png;base64,iVBORw0KGgoAA
|
|
|
11244
11328
|
flex-wrap: nowrap;
|
|
11245
11329
|
position: relative;
|
|
11246
11330
|
overflow: hidden;
|
|
11331
|
+
|
|
11332
|
+
*,
|
|
11333
|
+
*::before,
|
|
11334
|
+
*::after {
|
|
11335
|
+
box-sizing: border-box;
|
|
11336
|
+
}
|
|
11247
11337
|
}
|
|
11248
11338
|
|
|
11249
11339
|
|
|
@@ -12112,474 +12202,519 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
12112
12202
|
// #region @import "../popup/_index.scss"; -> packages/classic/scss/popup/_index.scss
|
|
12113
12203
|
// File already imported_once. Skipping output.
|
|
12114
12204
|
// #endregion
|
|
12205
|
+
// #region @import "../menu/_index.scss"; -> packages/classic/scss/menu/_index.scss
|
|
12206
|
+
// #region @import "../core/_index.scss"; -> packages/classic/scss/core/_index.scss
|
|
12207
|
+
// File already imported_once. Skipping output.
|
|
12208
|
+
// #endregion
|
|
12209
|
+
|
|
12210
|
+
|
|
12211
|
+
// Dependencies
|
|
12212
|
+
// #region @import "../common/_index.scss"; -> packages/classic/scss/common/_index.scss
|
|
12213
|
+
// File already imported_once. Skipping output.
|
|
12214
|
+
// #endregion
|
|
12215
|
+
// #region @import "../popup/_index.scss"; -> packages/classic/scss/popup/_index.scss
|
|
12216
|
+
// File already imported_once. Skipping output.
|
|
12217
|
+
// #endregion
|
|
12218
|
+
// #region @import "../list/_index.scss"; -> packages/classic/scss/list/_index.scss
|
|
12219
|
+
// File already imported_once. Skipping output.
|
|
12220
|
+
// #endregion
|
|
12115
12221
|
// #region @import "../icons/_index.scss"; -> packages/classic/scss/icons/_index.scss
|
|
12116
12222
|
// File already imported_once. Skipping output.
|
|
12117
12223
|
// #endregion
|
|
12224
|
+
// #region @import "../list/_index.scss"; -> packages/classic/scss/list/_index.scss
|
|
12225
|
+
// File already imported_once. Skipping output.
|
|
12226
|
+
// #endregion
|
|
12118
12227
|
|
|
12119
12228
|
|
|
12120
12229
|
// Component
|
|
12121
|
-
// #region @import "_variables.scss"; -> packages/classic/scss/
|
|
12230
|
+
// #region @import "_variables.scss"; -> packages/classic/scss/menu/_variables.scss
|
|
12122
12231
|
// File already imported_once. Skipping output.
|
|
12123
12232
|
// #endregion
|
|
12124
|
-
// #region @import "_layout.scss"; -> packages/classic/scss/
|
|
12125
|
-
// #region @import "~@progress/kendo-theme-default/scss/
|
|
12126
|
-
@include exports("
|
|
12233
|
+
// #region @import "_layout.scss"; -> packages/classic/scss/menu/_layout.scss
|
|
12234
|
+
// #region @import "~@progress/kendo-theme-default/scss/menu/_layout.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/menu/_layout.scss
|
|
12235
|
+
@include exports("menu/layout") {
|
|
12127
12236
|
|
|
12128
|
-
//
|
|
12129
|
-
.k-
|
|
12130
|
-
|
|
12131
|
-
padding: $toolbar-padding-y $toolbar-padding-x;
|
|
12132
|
-
border-width: $toolbar-border-width;
|
|
12237
|
+
// Menu bar
|
|
12238
|
+
.k-menu-bar {
|
|
12239
|
+
border-width: $menu-border-width;
|
|
12133
12240
|
border-style: solid;
|
|
12134
12241
|
box-sizing: border-box;
|
|
12135
12242
|
outline: 0;
|
|
12136
|
-
font-family: $
|
|
12137
|
-
font-size: $
|
|
12138
|
-
line-height: $
|
|
12139
|
-
list-style: none;
|
|
12243
|
+
font-family: $menu-font-family;
|
|
12244
|
+
font-size: $menu-font-size;
|
|
12245
|
+
line-height: $menu-line-height;
|
|
12140
12246
|
display: flex;
|
|
12141
|
-
flex-
|
|
12142
|
-
|
|
12143
|
-
align-items: center;
|
|
12144
|
-
justify-content: flex-start;
|
|
12247
|
+
flex-wrap: nowrap;
|
|
12248
|
+
align-items: stretch;
|
|
12145
12249
|
position: relative;
|
|
12146
|
-
|
|
12250
|
+
cursor: default;
|
|
12147
12251
|
-webkit-touch-callout: none;
|
|
12148
12252
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
12149
12253
|
|
|
12150
|
-
|
|
12151
|
-
|
|
12152
|
-
|
|
12153
|
-
|
|
12154
|
-
margin-inline-start: -$toolbar-spacing;
|
|
12254
|
+
*,
|
|
12255
|
+
*::before,
|
|
12256
|
+
*::after {
|
|
12257
|
+
box-sizing: border-box;
|
|
12155
12258
|
}
|
|
12259
|
+
}
|
|
12260
|
+
.k-menu { @extend .k-menu-bar !optional; }
|
|
12156
12261
|
|
|
12157
|
-
&.k-toolbar-resizable {
|
|
12158
|
-
flex-wrap: nowrap;
|
|
12159
|
-
}
|
|
12160
12262
|
|
|
12161
|
-
|
|
12162
|
-
|
|
12163
|
-
|
|
12164
|
-
|
|
12165
|
-
|
|
12263
|
+
// Menu item
|
|
12264
|
+
.k-menu-item {
|
|
12265
|
+
border-width: 0;
|
|
12266
|
+
outline: 0;
|
|
12267
|
+
display: flex;
|
|
12268
|
+
flex-flow: column nowrap;
|
|
12269
|
+
flex: none;
|
|
12270
|
+
position: relative;
|
|
12271
|
+
user-select: none;
|
|
12272
|
+
}
|
|
12273
|
+
.k-menu-item-content {
|
|
12274
|
+
display: block;
|
|
12275
|
+
height: auto;
|
|
12276
|
+
overflow: visible;
|
|
12166
12277
|
|
|
12167
|
-
|
|
12168
|
-
|
|
12169
|
-
align-self: center;
|
|
12170
|
-
}
|
|
12278
|
+
.k-actions {
|
|
12279
|
+
margin-top: 0;
|
|
12171
12280
|
}
|
|
12281
|
+
}
|
|
12172
12282
|
|
|
12173
12283
|
|
|
12174
|
-
|
|
12175
|
-
|
|
12176
|
-
|
|
12177
|
-
|
|
12178
|
-
|
|
12179
|
-
|
|
12180
|
-
|
|
12284
|
+
// Menu link
|
|
12285
|
+
.k-menu-link {
|
|
12286
|
+
padding: $menu-item-padding-y $menu-item-padding-x;
|
|
12287
|
+
outline: 0;
|
|
12288
|
+
color: inherit;
|
|
12289
|
+
display: flex;
|
|
12290
|
+
flex-flow: row nowrap;
|
|
12291
|
+
flex: 1 1 auto;
|
|
12292
|
+
gap: $menu-item-icon-spacing;
|
|
12293
|
+
align-items: center;
|
|
12294
|
+
position: relative;
|
|
12295
|
+
white-space: nowrap;
|
|
12296
|
+
cursor: pointer;
|
|
12297
|
+
}
|
|
12181
12298
|
|
|
12182
|
-
// Button group
|
|
12183
|
-
.k-button-group {}
|
|
12184
12299
|
|
|
12300
|
+
// Menu item text
|
|
12301
|
+
.k-menu-link-text {
|
|
12302
|
+
display: flex;
|
|
12303
|
+
flex-flow: row nowrap;
|
|
12304
|
+
flex: 1 1 auto;
|
|
12305
|
+
overflow: hidden;
|
|
12306
|
+
text-overflow: ellipsis;
|
|
12307
|
+
}
|
|
12185
12308
|
|
|
12186
|
-
// Split button
|
|
12187
|
-
.k-split-button {}
|
|
12188
12309
|
|
|
12310
|
+
// Expand arrow
|
|
12311
|
+
.k-menu-expand-arrow {
|
|
12312
|
+
margin-inline-end: -$icon-spacing;
|
|
12313
|
+
display: inline-flex;
|
|
12314
|
+
flex-flow: row wrap;
|
|
12315
|
+
align-items: center;
|
|
12316
|
+
flex: none;
|
|
12317
|
+
position: relative;
|
|
12318
|
+
}
|
|
12189
12319
|
|
|
12190
|
-
// Input
|
|
12191
|
-
.k-input,
|
|
12192
|
-
.k-picker {
|
|
12193
|
-
width: $toolbar-input-width;
|
|
12194
|
-
}
|
|
12195
|
-
.k-color-picker {
|
|
12196
|
-
width: min-content;
|
|
12197
|
-
}
|
|
12198
12320
|
|
|
12199
|
-
|
|
12200
|
-
|
|
12201
|
-
|
|
12202
|
-
margin: 0;
|
|
12203
|
-
padding: $toolbar-padding-y;
|
|
12204
|
-
width: auto;
|
|
12205
|
-
height: 100%;
|
|
12206
|
-
aspect-ratio: 1;
|
|
12207
|
-
border-width: 0;
|
|
12208
|
-
border-color: inherit;
|
|
12209
|
-
box-sizing: border-box;
|
|
12210
|
-
justify-content: center;
|
|
12211
|
-
position: absolute;
|
|
12212
|
-
top: 0;
|
|
12213
|
-
right: 0;
|
|
12321
|
+
// Orientation -- horizontal
|
|
12322
|
+
.k-menu-horizontal {
|
|
12323
|
+
flex-direction: row;
|
|
12214
12324
|
|
|
12215
|
-
|
|
12216
|
-
|
|
12217
|
-
}
|
|
12325
|
+
> .k-menu-item + .k-menu-item {
|
|
12326
|
+
margin-left: $menu-item-spacing;
|
|
12218
12327
|
}
|
|
12219
12328
|
|
|
12220
|
-
|
|
12221
|
-
|
|
12222
|
-
.k-separator,
|
|
12223
|
-
.k-toolbar-separator {
|
|
12329
|
+
> .k-separator {
|
|
12330
|
+
margin: 0 $menu-separator-spacing;
|
|
12224
12331
|
width: 0;
|
|
12225
|
-
height:
|
|
12332
|
+
height: auto;
|
|
12226
12333
|
border-width: 0 0 0 1px;
|
|
12227
12334
|
border-style: solid;
|
|
12228
|
-
align-self: center;
|
|
12229
12335
|
}
|
|
12336
|
+
}
|
|
12230
12337
|
|
|
12231
12338
|
|
|
12232
|
-
|
|
12233
|
-
|
|
12234
|
-
|
|
12235
|
-
flex: 1 0 0%;
|
|
12236
|
-
}
|
|
12339
|
+
// Orientation -- vertical
|
|
12340
|
+
.k-menu-vertical {
|
|
12341
|
+
flex-direction: column;
|
|
12237
12342
|
|
|
12343
|
+
> .k-menu-item + .k-menu-item {
|
|
12344
|
+
margin-top: $menu-item-spacing;
|
|
12345
|
+
}
|
|
12238
12346
|
|
|
12239
|
-
|
|
12240
|
-
|
|
12241
|
-
|
|
12242
|
-
align-items: center;
|
|
12347
|
+
> .k-menu-item > .k-menu-link {
|
|
12348
|
+
padding: $kendo-menu-popup-item-padding-y $kendo-menu-popup-item-padding-x;
|
|
12349
|
+
padding-right: $kendo-menu-popup-item-padding-end;
|
|
12243
12350
|
}
|
|
12244
12351
|
|
|
12352
|
+
> .k-separator {
|
|
12353
|
+
margin: $menu-separator-spacing 0;
|
|
12354
|
+
height: 0;
|
|
12355
|
+
border-width: 1px 0 0;
|
|
12356
|
+
border-style: solid;
|
|
12357
|
+
border-color: $panel-border;
|
|
12358
|
+
display: block;
|
|
12359
|
+
}
|
|
12245
12360
|
}
|
|
12246
12361
|
|
|
12247
12362
|
|
|
12248
|
-
//
|
|
12249
|
-
.k-
|
|
12250
|
-
|
|
12251
|
-
|
|
12252
|
-
|
|
12253
|
-
|
|
12254
|
-
|
|
12255
|
-
|
|
12363
|
+
// Menu popup
|
|
12364
|
+
.k-menu-popup {
|
|
12365
|
+
padding: $kendo-menu-popup-padding-y $kendo-menu-popup-padding-x;
|
|
12366
|
+
box-sizing: border-box;
|
|
12367
|
+
border-width: $kendo-menu-popup-border-width;
|
|
12368
|
+
border-style: solid;
|
|
12369
|
+
overflow: auto;
|
|
12370
|
+
max-height: 80vh;
|
|
12256
12371
|
|
|
12257
|
-
|
|
12258
|
-
|
|
12259
|
-
|
|
12260
|
-
|
|
12372
|
+
*,
|
|
12373
|
+
*::before,
|
|
12374
|
+
*::after {
|
|
12375
|
+
box-sizing: border-box;
|
|
12376
|
+
}
|
|
12261
12377
|
}
|
|
12262
12378
|
|
|
12263
12379
|
|
|
12264
|
-
//
|
|
12265
|
-
.k-
|
|
12380
|
+
// Sub menu
|
|
12381
|
+
.k-menu-group {
|
|
12382
|
+
margin: 0;
|
|
12383
|
+
padding: 0;
|
|
12384
|
+
list-style: none;
|
|
12385
|
+
display: flex;
|
|
12386
|
+
flex-flow: column nowrap;
|
|
12387
|
+
position: absolute;
|
|
12266
12388
|
|
|
12267
|
-
|
|
12268
|
-
|
|
12389
|
+
.k-menu-item + .k-menu-item {
|
|
12390
|
+
margin-top: $kendo-menu-popup-item-spacing;
|
|
12269
12391
|
}
|
|
12270
12392
|
|
|
12271
12393
|
.k-separator {
|
|
12272
|
-
margin:
|
|
12273
|
-
|
|
12274
|
-
|
|
12275
|
-
|
|
12276
|
-
|
|
12394
|
+
margin: $menu-separator-spacing 0;
|
|
12395
|
+
height: 0;
|
|
12396
|
+
border-width: 1px 0 0;
|
|
12397
|
+
border-style: solid;
|
|
12398
|
+
border-color: $component-border;
|
|
12277
12399
|
display: block;
|
|
12278
12400
|
}
|
|
12401
|
+
}
|
|
12402
|
+
.k-menu-popup .k-menu-group {
|
|
12403
|
+
position: relative;
|
|
12404
|
+
}
|
|
12279
12405
|
|
|
12280
|
-
// Button
|
|
12281
|
-
.k-overflow-button {
|
|
12282
|
-
@include border-radius( 0 );
|
|
12283
|
-
padding: $kendo-list-item-padding-y-md $kendo-list-item-padding-x-md;
|
|
12284
|
-
width: 100%;
|
|
12285
|
-
border-width: 0;
|
|
12286
|
-
color: inherit;
|
|
12287
|
-
background-color: transparent;
|
|
12288
|
-
background-image: none;
|
|
12289
|
-
line-height: inherit;
|
|
12290
|
-
display: flex;
|
|
12291
|
-
justify-content: flex-start;
|
|
12292
|
-
}
|
|
12293
12406
|
|
|
12294
|
-
|
|
12295
|
-
|
|
12296
|
-
|
|
12297
|
-
|
|
12298
|
-
flex-flow: column nowrap;
|
|
12407
|
+
// Sizes
|
|
12408
|
+
.k-menu-group-sm {
|
|
12409
|
+
font-size: $kendo-menu-popup-font-size-sm;
|
|
12410
|
+
line-height: $kendo-menu-popup-line-height-sm;
|
|
12299
12411
|
|
|
12300
|
-
|
|
12301
|
-
|
|
12302
|
-
|
|
12412
|
+
// jquery popup overrides those
|
|
12413
|
+
.k-menu-item {
|
|
12414
|
+
font-size: $kendo-menu-popup-font-size-sm;
|
|
12415
|
+
line-height: $kendo-menu-popup-line-height-sm;
|
|
12303
12416
|
}
|
|
12304
12417
|
|
|
12305
|
-
|
|
12306
|
-
|
|
12307
|
-
|
|
12308
|
-
flex-direction: column;
|
|
12418
|
+
.k-menu-link {
|
|
12419
|
+
padding: $kendo-menu-popup-item-padding-y-sm $kendo-menu-popup-item-padding-x-sm;
|
|
12420
|
+
padding-inline-end: $kendo-menu-popup-item-padding-end-sm;
|
|
12309
12421
|
}
|
|
12310
12422
|
|
|
12311
|
-
|
|
12312
|
-
|
|
12313
|
-
|
|
12423
|
+
.k-menu-expand-arrow {
|
|
12424
|
+
margin-inline-start: $kendo-menu-popup-item-icon-margin-start-sm;
|
|
12425
|
+
margin-inline-end: $kendo-menu-popup-item-icon-margin-end-sm;
|
|
12314
12426
|
}
|
|
12315
12427
|
}
|
|
12428
|
+
.k-menu-group-md {
|
|
12429
|
+
font-size: $kendo-menu-popup-font-size-md;
|
|
12430
|
+
line-height: $kendo-menu-popup-line-height-md;
|
|
12316
12431
|
|
|
12432
|
+
// jquery popup overrides those
|
|
12433
|
+
.k-menu-item {
|
|
12434
|
+
font-size: $kendo-menu-popup-font-size-md;
|
|
12435
|
+
line-height: $kendo-menu-popup-line-height-md;
|
|
12436
|
+
}
|
|
12317
12437
|
|
|
12318
|
-
|
|
12319
|
-
|
|
12320
|
-
|
|
12321
|
-
.k-toolbar {
|
|
12322
|
-
|
|
12323
|
-
&.k-rtl,
|
|
12324
|
-
.k-rtl &,
|
|
12325
|
-
&[dir="rtl"],
|
|
12326
|
-
[dir="rtl"] & {
|
|
12327
|
-
.k-overflow-anchor {
|
|
12328
|
-
margin: 0;
|
|
12329
|
-
right: auto;
|
|
12330
|
-
left: 0;
|
|
12331
|
-
}
|
|
12438
|
+
.k-menu-link {
|
|
12439
|
+
padding: $kendo-menu-popup-item-padding-y-md $kendo-menu-popup-item-padding-x-md;
|
|
12440
|
+
padding-inline-end: $kendo-menu-popup-item-padding-end-md;
|
|
12332
12441
|
}
|
|
12333
12442
|
|
|
12443
|
+
.k-menu-expand-arrow {
|
|
12444
|
+
margin-inline-start: $kendo-menu-popup-item-icon-margin-start;
|
|
12445
|
+
margin-inline-end: $kendo-menu-popup-item-icon-margin-end;
|
|
12446
|
+
}
|
|
12334
12447
|
}
|
|
12448
|
+
.k-menu-group-lg {
|
|
12449
|
+
font-size: $kendo-menu-popup-font-size-lg;
|
|
12450
|
+
line-height: $kendo-menu-popup-line-height-lg;
|
|
12335
12451
|
|
|
12336
|
-
|
|
12337
|
-
|
|
12338
|
-
|
|
12452
|
+
// jquery popup overrides those
|
|
12453
|
+
.k-menu-item {
|
|
12454
|
+
font-size: $kendo-menu-popup-font-size-lg;
|
|
12455
|
+
line-height: $kendo-menu-popup-line-height-lg;
|
|
12456
|
+
}
|
|
12339
12457
|
|
|
12458
|
+
.k-menu-link {
|
|
12459
|
+
padding: $kendo-menu-popup-item-padding-y-lg $kendo-menu-popup-item-padding-x-lg;
|
|
12460
|
+
padding-inline-end: $kendo-menu-popup-item-padding-end-lg;
|
|
12461
|
+
}
|
|
12340
12462
|
|
|
12341
|
-
|
|
12463
|
+
.k-menu-expand-arrow {
|
|
12464
|
+
margin-inline-start: $kendo-menu-popup-item-icon-margin-start-lg;
|
|
12465
|
+
margin-inline-end: $kendo-menu-popup-item-icon-margin-end-lg;
|
|
12466
|
+
}
|
|
12467
|
+
}
|
|
12342
12468
|
|
|
12343
12469
|
|
|
12344
|
-
//
|
|
12345
|
-
.k-
|
|
12346
|
-
|
|
12347
|
-
|
|
12348
|
-
|
|
12470
|
+
// Context menu
|
|
12471
|
+
.k-popups-wrapper {
|
|
12472
|
+
position: relative;
|
|
12473
|
+
border: 0;
|
|
12474
|
+
margin: 0;
|
|
12475
|
+
padding: 0;
|
|
12476
|
+
}
|
|
12477
|
+
.k-context-menu {
|
|
12478
|
+
margin: 0;
|
|
12479
|
+
padding: $kendo-menu-popup-padding-y $kendo-menu-popup-padding-x;
|
|
12480
|
+
border-width: $kendo-menu-popup-border-width;
|
|
12349
12481
|
border-style: solid;
|
|
12350
|
-
display: flex;
|
|
12351
|
-
flex-flow: row nowrap;
|
|
12352
|
-
gap: $toolbar-spacing;
|
|
12353
|
-
align-items: center;
|
|
12354
12482
|
|
|
12355
|
-
|
|
12356
|
-
padding:
|
|
12357
|
-
border-width: 0;
|
|
12358
|
-
flex-shrink: 1;
|
|
12359
|
-
color: inherit;
|
|
12360
|
-
background: none;
|
|
12483
|
+
&.k-menu-horizontal {
|
|
12484
|
+
padding: $kendo-menu-popup-padding-x $kendo-menu-popup-padding-y;
|
|
12361
12485
|
}
|
|
12362
12486
|
}
|
|
12363
|
-
.k-
|
|
12364
|
-
|
|
12365
|
-
display: flex;
|
|
12366
|
-
|
|
12367
|
-
align-self: stretch;
|
|
12368
|
-
flex-shrink: 0;
|
|
12487
|
+
.k-animation-container .k-context-menu.k-menu-horizontal {
|
|
12488
|
+
// kendo-jquery adds `display: block` via js and we need to override it.
|
|
12489
|
+
display: flex !important; // sass-lint:disable-line no-important
|
|
12490
|
+
flex-wrap: nowrap;
|
|
12369
12491
|
}
|
|
12370
|
-
|
|
12371
|
-
|
|
12372
|
-
|
|
12373
|
-
}
|
|
12374
|
-
|
|
12375
|
-
// #endregion
|
|
12376
|
-
|
|
12377
|
-
// #endregion
|
|
12378
|
-
// #region @import "_theme.scss"; -> packages/classic/scss/toolbar/_theme.scss
|
|
12379
|
-
// #region @import "~@progress/kendo-theme-default/scss/toolbar/_theme.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/toolbar/_theme.scss
|
|
12380
|
-
@include exports("toolbar/theme") {
|
|
12381
|
-
|
|
12382
|
-
// Theme
|
|
12383
|
-
.k-toolbar {
|
|
12384
|
-
@include fill(
|
|
12385
|
-
$toolbar-text,
|
|
12386
|
-
$toolbar-bg,
|
|
12387
|
-
$toolbar-border,
|
|
12388
|
-
$toolbar-gradient
|
|
12389
|
-
);
|
|
12390
|
-
@include box-shadow( $toolbar-shadow );
|
|
12391
|
-
|
|
12492
|
+
.k-context-menu-popup {
|
|
12493
|
+
z-index: 12000;
|
|
12392
12494
|
|
|
12393
|
-
|
|
12394
|
-
|
|
12395
|
-
border-color: $toolbar-separator-border;
|
|
12495
|
+
.k-context-menu {
|
|
12496
|
+
border-width: 0;
|
|
12396
12497
|
}
|
|
12397
|
-
|
|
12398
|
-
|
|
12399
|
-
|
|
12400
|
-
|
|
12401
|
-
|
|
12498
|
+
}
|
|
12499
|
+
.k-popup .k-context-menu,
|
|
12500
|
+
.k-context-menu-popup .k-context-menu {
|
|
12501
|
+
border-width: 0;
|
|
12402
12502
|
}
|
|
12403
12503
|
|
|
12404
12504
|
|
|
12405
|
-
//
|
|
12406
|
-
.k-
|
|
12407
|
-
|
|
12408
|
-
|
|
12409
|
-
|
|
12410
|
-
|
|
12411
|
-
&:hover,
|
|
12412
|
-
&.k-state-hover {
|
|
12413
|
-
color: $kendo-list-item-hover-text;
|
|
12414
|
-
background: $kendo-list-item-hover-bg;
|
|
12415
|
-
}
|
|
12416
|
-
|
|
12417
|
-
// Active state
|
|
12418
|
-
&:active,
|
|
12419
|
-
&.k-state-active {
|
|
12420
|
-
color: $kendo-list-item-selected-text;
|
|
12421
|
-
background: $kendo-list-item-selected-bg;
|
|
12422
|
-
}
|
|
12423
|
-
|
|
12424
|
-
// Button focus state
|
|
12425
|
-
.k-button:focus,
|
|
12426
|
-
.k-button.k-state-focused {
|
|
12427
|
-
box-shadow: $kendo-list-item-focus-shadow;
|
|
12428
|
-
}
|
|
12505
|
+
// Scrolling
|
|
12506
|
+
.k-menu-scroll-wrapper {
|
|
12507
|
+
margin: 0;
|
|
12508
|
+
padding: 0;
|
|
12509
|
+
border: 0;
|
|
12510
|
+
position: relative;
|
|
12429
12511
|
|
|
12430
|
-
|
|
12431
|
-
|
|
12432
|
-
|
|
12433
|
-
color: inherit;
|
|
12434
|
-
}
|
|
12512
|
+
.k-menu {
|
|
12513
|
+
overflow: hidden;
|
|
12514
|
+
flex-wrap: nowrap;
|
|
12435
12515
|
}
|
|
12436
|
-
|
|
12437
12516
|
}
|
|
12517
|
+
.k-menu-scroll-button {
|
|
12518
|
+
@include border-radius( 0 );
|
|
12519
|
+
padding: 0;
|
|
12520
|
+
border-width: 0;
|
|
12521
|
+
border-color: inherit;
|
|
12522
|
+
color: inherit;
|
|
12523
|
+
background: inherit;
|
|
12524
|
+
position: absolute;
|
|
12438
12525
|
|
|
12439
|
-
|
|
12440
|
-
|
|
12441
|
-
|
|
12442
|
-
|
|
12443
|
-
|
|
12444
|
-
|
|
12445
|
-
|
|
12446
|
-
|
|
12447
|
-
|
|
12448
|
-
|
|
12449
|
-
|
|
12450
|
-
|
|
12451
|
-
|
|
12452
|
-
|
|
12453
|
-
|
|
12454
|
-
|
|
12526
|
+
&.k-scroll-left {
|
|
12527
|
+
top: 0;
|
|
12528
|
+
left: 0;
|
|
12529
|
+
height: 100%;
|
|
12530
|
+
width: 16px;
|
|
12531
|
+
border-right-width: 1px;
|
|
12532
|
+
}
|
|
12533
|
+
&.k-scroll-right {
|
|
12534
|
+
top: 0;
|
|
12535
|
+
right: 0;
|
|
12536
|
+
height: 100%;
|
|
12537
|
+
width: 16px;
|
|
12538
|
+
border-left-width: 1px;
|
|
12539
|
+
}
|
|
12540
|
+
&.k-scroll-up {
|
|
12541
|
+
top: 0;
|
|
12542
|
+
left: 0;
|
|
12543
|
+
width: 100%;
|
|
12544
|
+
height: 16px;
|
|
12545
|
+
border-bottom-width: 1px;
|
|
12546
|
+
}
|
|
12547
|
+
&.k-scroll-down {
|
|
12548
|
+
bottom: 0;
|
|
12549
|
+
left: 0;
|
|
12550
|
+
width: 100%;
|
|
12551
|
+
height: 16px;
|
|
12552
|
+
border-top-width: 1px;
|
|
12553
|
+
}
|
|
12455
12554
|
}
|
|
12456
12555
|
|
|
12457
|
-
}
|
|
12458
12556
|
|
|
12459
|
-
//
|
|
12557
|
+
// RTL
|
|
12558
|
+
.k-rtl,
|
|
12559
|
+
[dir="rtl"] {
|
|
12460
12560
|
|
|
12461
|
-
//
|
|
12561
|
+
// Orientation -- horizontal
|
|
12562
|
+
.k-menu-horizontal {
|
|
12462
12563
|
|
|
12463
|
-
|
|
12464
|
-
|
|
12465
|
-
|
|
12466
|
-
|
|
12467
|
-
|
|
12564
|
+
> .k-menu-item + .k-menu-item {
|
|
12565
|
+
margin-right: $menu-item-spacing;
|
|
12566
|
+
margin-left: 0;
|
|
12567
|
+
}
|
|
12568
|
+
}
|
|
12468
12569
|
|
|
12469
12570
|
|
|
12470
|
-
//
|
|
12471
|
-
|
|
12472
|
-
// File already imported_once. Skipping output.
|
|
12473
|
-
// #endregion
|
|
12474
|
-
// #region @import "../button/_index.scss"; -> packages/classic/scss/button/_index.scss
|
|
12475
|
-
// File already imported_once. Skipping output.
|
|
12476
|
-
// #endregion
|
|
12571
|
+
// Orientation -- vertical
|
|
12572
|
+
.k-menu-vertical {
|
|
12477
12573
|
|
|
12574
|
+
> .k-menu-item > .k-menu-link {
|
|
12575
|
+
padding-right: $kendo-menu-popup-item-padding-x;
|
|
12576
|
+
padding-left: $kendo-menu-popup-item-padding-end;
|
|
12577
|
+
}
|
|
12578
|
+
}
|
|
12478
12579
|
|
|
12479
|
-
// Component
|
|
12480
|
-
// #region @import "_variables.scss"; -> packages/classic/scss/action-buttons/_variables.scss
|
|
12481
|
-
// Actions
|
|
12482
|
-
$actions-margin-top: map-get( $spacing, 4 ) !default;
|
|
12483
|
-
$actions-padding-x: map-get( $spacing, 2 ) !default;
|
|
12484
|
-
$actions-padding-y: map-get( $spacing, 2 ) !default;
|
|
12485
|
-
$actions-border-width: 0px !default;
|
|
12486
|
-
$actions-button-spacing: map-get( $spacing, 2 ) !default;
|
|
12487
12580
|
|
|
12488
|
-
|
|
12489
|
-
|
|
12490
|
-
$actions-border: null !default;
|
|
12491
|
-
$actions-gradient: null !default;
|
|
12581
|
+
// Sub menu
|
|
12582
|
+
.k-menu-group {
|
|
12492
12583
|
|
|
12493
|
-
|
|
12494
|
-
|
|
12495
|
-
|
|
12496
|
-
|
|
12584
|
+
.k-menu-link {
|
|
12585
|
+
padding-right: $kendo-menu-popup-item-padding-x;
|
|
12586
|
+
padding-left: $kendo-menu-popup-item-padding-end;
|
|
12587
|
+
}
|
|
12588
|
+
|
|
12589
|
+
}
|
|
12497
12590
|
|
|
12498
|
-
.k-actions {
|
|
12499
|
-
padding: $actions-padding-y $actions-padding-x;
|
|
12500
|
-
border-width: $actions-border-width 0 0 0;
|
|
12501
|
-
border-style: solid;
|
|
12502
|
-
border-color: inherit;
|
|
12503
|
-
flex-shrink: 0;
|
|
12504
|
-
display: flex;
|
|
12505
|
-
flex-flow: row nowrap;
|
|
12506
|
-
align-items: center;
|
|
12507
|
-
gap: $actions-button-spacing;
|
|
12508
|
-
overflow: hidden;
|
|
12509
|
-
// TODO: remove
|
|
12510
|
-
clear: both;
|
|
12511
12591
|
}
|
|
12512
12592
|
|
|
12593
|
+
}
|
|
12513
12594
|
|
|
12514
|
-
|
|
12515
|
-
.k-popup .k-actions {
|
|
12516
|
-
margin-top: $actions-margin-top;
|
|
12517
|
-
}
|
|
12595
|
+
// #endregion
|
|
12518
12596
|
|
|
12597
|
+
// #endregion
|
|
12598
|
+
// #region @import "_theme.scss"; -> packages/classic/scss/menu/_theme.scss
|
|
12599
|
+
// #region @import "~@progress/kendo-theme-default/scss/menu/_theme.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/menu/_theme.scss
|
|
12600
|
+
@include exports("menu/theme") {
|
|
12519
12601
|
|
|
12520
|
-
|
|
12521
|
-
|
|
12522
|
-
|
|
12523
|
-
|
|
12524
|
-
|
|
12525
|
-
|
|
12602
|
+
.k-menu:not(.k-context-menu) {
|
|
12603
|
+
@include fill(
|
|
12604
|
+
$menu-text,
|
|
12605
|
+
$menu-bg,
|
|
12606
|
+
$menu-border,
|
|
12607
|
+
$menu-gradient
|
|
12608
|
+
);
|
|
12526
12609
|
|
|
12610
|
+
> .k-item {
|
|
12611
|
+
@include fill(
|
|
12612
|
+
$menu-item-text,
|
|
12613
|
+
$menu-item-bg,
|
|
12614
|
+
$menu-item-border,
|
|
12615
|
+
$menu-item-gradient
|
|
12616
|
+
);
|
|
12527
12617
|
|
|
12528
|
-
|
|
12529
|
-
|
|
12530
|
-
|
|
12531
|
-
|
|
12532
|
-
|
|
12618
|
+
&:hover,
|
|
12619
|
+
&.k-hover {
|
|
12620
|
+
@include fill(
|
|
12621
|
+
$menu-item-hover-text,
|
|
12622
|
+
$menu-item-hover-bg,
|
|
12623
|
+
$menu-item-hover-border,
|
|
12624
|
+
$menu-item-hover-gradient
|
|
12625
|
+
);
|
|
12626
|
+
}
|
|
12533
12627
|
|
|
12534
|
-
|
|
12535
|
-
|
|
12536
|
-
|
|
12537
|
-
|
|
12628
|
+
&:active,
|
|
12629
|
+
&.k-active {
|
|
12630
|
+
@include fill(
|
|
12631
|
+
$menu-item-expanded-text,
|
|
12632
|
+
$menu-item-expanded-bg,
|
|
12633
|
+
$menu-item-expanded-border,
|
|
12634
|
+
$menu-item-expanded-gradient
|
|
12635
|
+
);
|
|
12636
|
+
}
|
|
12637
|
+
|
|
12638
|
+
&:focus,
|
|
12639
|
+
&.k-focus {
|
|
12640
|
+
@include box-shadow( $menu-item-focus-shadow );
|
|
12538
12641
|
}
|
|
12539
12642
|
}
|
|
12540
12643
|
}
|
|
12541
12644
|
|
|
12542
|
-
|
|
12543
|
-
.k-
|
|
12544
|
-
|
|
12545
|
-
|
|
12546
|
-
|
|
12547
|
-
|
|
12548
|
-
|
|
12549
|
-
|
|
12550
|
-
justify-content: flex-end;
|
|
12551
|
-
}
|
|
12552
|
-
.k-actions-stretched > * {
|
|
12553
|
-
flex: 1 0 0%;
|
|
12554
|
-
}
|
|
12645
|
+
.k-menu-group,
|
|
12646
|
+
.k-menu.k-context-menu {
|
|
12647
|
+
@include fill(
|
|
12648
|
+
$kendo-menu-popup-text,
|
|
12649
|
+
$kendo-menu-popup-bg,
|
|
12650
|
+
$kendo-menu-popup-border,
|
|
12651
|
+
$kendo-menu-popup-gradient
|
|
12652
|
+
);
|
|
12555
12653
|
|
|
12556
|
-
|
|
12557
|
-
|
|
12558
|
-
|
|
12559
|
-
|
|
12560
|
-
|
|
12561
|
-
|
|
12562
|
-
|
|
12563
|
-
}
|
|
12654
|
+
.k-item > .k-link {
|
|
12655
|
+
@include fill(
|
|
12656
|
+
$kendo-menu-popup-item-text,
|
|
12657
|
+
$kendo-menu-popup-item-bg,
|
|
12658
|
+
$kendo-menu-popup-item-border,
|
|
12659
|
+
$kendo-menu-popup-item-gradient
|
|
12660
|
+
);
|
|
12564
12661
|
|
|
12565
|
-
|
|
12662
|
+
&:hover,
|
|
12663
|
+
&.k-hover {
|
|
12664
|
+
@include fill(
|
|
12665
|
+
$kendo-menu-popup-item-hover-text,
|
|
12666
|
+
$kendo-menu-popup-item-hover-bg,
|
|
12667
|
+
$kendo-menu-popup-item-hover-border,
|
|
12668
|
+
$kendo-menu-popup-item-hover-gradient
|
|
12669
|
+
);
|
|
12670
|
+
}
|
|
12566
12671
|
|
|
12567
|
-
|
|
12672
|
+
&:active,
|
|
12673
|
+
&.k-active,
|
|
12674
|
+
&.k-selected {
|
|
12675
|
+
@include fill(
|
|
12676
|
+
$kendo-menu-popup-item-expanded-text,
|
|
12677
|
+
$kendo-menu-popup-item-expanded-bg,
|
|
12678
|
+
$kendo-menu-popup-item-expanded-border,
|
|
12679
|
+
$kendo-menu-popup-item-expanded-gradient
|
|
12680
|
+
);
|
|
12681
|
+
}
|
|
12568
12682
|
|
|
12569
|
-
|
|
12570
|
-
|
|
12571
|
-
|
|
12572
|
-
|
|
12683
|
+
&.k-focus {
|
|
12684
|
+
@include box-shadow( $kendo-menu-popup-item-focus-shadow );
|
|
12685
|
+
}
|
|
12686
|
+
}
|
|
12573
12687
|
|
|
12574
|
-
|
|
12688
|
+
.k-item {
|
|
12689
|
+
&:focus {
|
|
12690
|
+
@include box-shadow( $kendo-menu-popup-item-focus-shadow );
|
|
12691
|
+
}
|
|
12692
|
+
}
|
|
12693
|
+
}
|
|
12694
|
+
|
|
12695
|
+
|
|
12696
|
+
// Scrolling
|
|
12697
|
+
.k-menu-scroll-button {
|
|
12575
12698
|
@include fill(
|
|
12576
|
-
$
|
|
12577
|
-
$
|
|
12578
|
-
$
|
|
12579
|
-
$
|
|
12699
|
+
$menu-scroll-button-text,
|
|
12700
|
+
$menu-scroll-button-bg,
|
|
12701
|
+
$menu-scroll-button-border,
|
|
12702
|
+
$menu-scroll-button-gradient
|
|
12580
12703
|
);
|
|
12581
|
-
}
|
|
12582
12704
|
|
|
12705
|
+
&:hover {
|
|
12706
|
+
@include fill(
|
|
12707
|
+
$menu-scroll-button-hover-text,
|
|
12708
|
+
$menu-scroll-button-hover-bg,
|
|
12709
|
+
$menu-scroll-button-hover-border,
|
|
12710
|
+
$menu-scroll-button-hover-gradient
|
|
12711
|
+
);
|
|
12712
|
+
|
|
12713
|
+
&::before {
|
|
12714
|
+
opacity: 0;
|
|
12715
|
+
}
|
|
12716
|
+
}
|
|
12717
|
+
}
|
|
12583
12718
|
}
|
|
12584
12719
|
|
|
12585
12720
|
// #endregion
|
|
@@ -12587,160 +12722,658 @@ $actions-gradient: null !default;
|
|
|
12587
12722
|
// #endregion
|
|
12588
12723
|
|
|
12589
12724
|
// #endregion
|
|
12590
|
-
// #region @import "../
|
|
12591
|
-
//
|
|
12592
|
-
|
|
12593
|
-
$window-border-radius: map-get( $spacing, 1 ) !default;
|
|
12594
|
-
$window-font-family: $font-family !default;
|
|
12595
|
-
$window-font-size: $font-size !default;
|
|
12596
|
-
$window-line-height: $line-height !default;
|
|
12597
|
-
|
|
12598
|
-
$window-titlebar-padding-x: map-get( $spacing, 3 ) !default;
|
|
12599
|
-
$window-titlebar-padding-y: map-get( $spacing, 2 ) !default;
|
|
12600
|
-
$window-titlebar-border-width: 0 0 1px !default;
|
|
12601
|
-
$window-titlebar-border-style: solid !default;
|
|
12602
|
-
|
|
12603
|
-
$window-title-font-size: $font-size-lg !default;
|
|
12604
|
-
$window-title-line-height: 1.25 !default;
|
|
12605
|
-
|
|
12606
|
-
$window-actions-gap: null !default;
|
|
12725
|
+
// #region @import "../icons/_index.scss"; -> packages/classic/scss/icons/_index.scss
|
|
12726
|
+
// File already imported_once. Skipping output.
|
|
12727
|
+
// #endregion
|
|
12607
12728
|
|
|
12608
|
-
$window-action-opacity: null !default;
|
|
12609
|
-
$window-action-hover-opacity: null !default;
|
|
12610
12729
|
|
|
12611
|
-
|
|
12612
|
-
|
|
12730
|
+
// Component
|
|
12731
|
+
// #region @import "_variables.scss"; -> packages/classic/scss/toolbar/_variables.scss
|
|
12732
|
+
// File already imported_once. Skipping output.
|
|
12733
|
+
// #endregion
|
|
12734
|
+
// #region @import "_layout.scss"; -> packages/classic/scss/toolbar/_layout.scss
|
|
12735
|
+
// #region @import "~@progress/kendo-theme-default/scss/toolbar/_layout.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/toolbar/_layout.scss
|
|
12736
|
+
@include exports("toolbar/layout") {
|
|
12613
12737
|
|
|
12614
|
-
|
|
12615
|
-
|
|
12616
|
-
|
|
12738
|
+
// Base
|
|
12739
|
+
.k-toolbar {
|
|
12740
|
+
margin: 0;
|
|
12741
|
+
padding: $toolbar-padding-y $toolbar-padding-x;
|
|
12742
|
+
border-width: $toolbar-border-width;
|
|
12743
|
+
border-style: solid;
|
|
12744
|
+
box-sizing: border-box;
|
|
12745
|
+
outline: 0;
|
|
12746
|
+
font-family: $toolbar-font-family;
|
|
12747
|
+
font-size: $toolbar-font-size;
|
|
12748
|
+
line-height: $toolbar-line-height;
|
|
12749
|
+
list-style: none;
|
|
12750
|
+
display: flex;
|
|
12751
|
+
flex-flow: row wrap;
|
|
12752
|
+
gap: $toolbar-spacing;
|
|
12753
|
+
align-items: center;
|
|
12754
|
+
justify-content: flex-start;
|
|
12755
|
+
position: relative;
|
|
12756
|
+
overflow: hidden;
|
|
12757
|
+
-webkit-touch-callout: none;
|
|
12758
|
+
-webkit-tap-highlight-color: $rgba-transparent;
|
|
12617
12759
|
|
|
12618
|
-
|
|
12619
|
-
|
|
12620
|
-
|
|
12760
|
+
// Remove once we decide to not size empty containers
|
|
12761
|
+
&::before {
|
|
12762
|
+
content: "";
|
|
12763
|
+
height: $kendo-button-calc-size;
|
|
12764
|
+
margin-inline-start: -$toolbar-spacing;
|
|
12765
|
+
}
|
|
12621
12766
|
|
|
12622
|
-
|
|
12623
|
-
|
|
12624
|
-
|
|
12625
|
-
$window-titlebar-gradient: $header-gradient !default;
|
|
12767
|
+
&.k-toolbar-resizable {
|
|
12768
|
+
flex-wrap: nowrap;
|
|
12769
|
+
}
|
|
12626
12770
|
|
|
12627
|
-
|
|
12628
|
-
|
|
12771
|
+
> * {
|
|
12772
|
+
flex-shrink: 0;
|
|
12773
|
+
display: inline-flex;
|
|
12774
|
+
align-content: center;
|
|
12775
|
+
vertical-align: middle;
|
|
12629
12776
|
|
|
12630
|
-
|
|
12631
|
-
|
|
12632
|
-
|
|
12633
|
-
|
|
12634
|
-
|
|
12777
|
+
> label {
|
|
12778
|
+
margin-inline-end: $toolbar-spacing;
|
|
12779
|
+
align-self: center;
|
|
12780
|
+
}
|
|
12781
|
+
}
|
|
12635
12782
|
|
|
12636
|
-
// #endregion
|
|
12637
12783
|
|
|
12784
|
+
// Button
|
|
12785
|
+
.k-button {}
|
|
12638
12786
|
|
|
12639
|
-
// Component
|
|
12640
|
-
// #region @import "_variables.scss"; -> packages/classic/scss/forms/_variables.scss
|
|
12641
|
-
// Forms
|
|
12642
|
-
$form-spacer: $padding-x * 2 !default;
|
|
12643
12787
|
|
|
12644
|
-
|
|
12645
|
-
|
|
12646
|
-
$form-line-height-em: $form-line-height * 1em !default;
|
|
12647
|
-
$form-line-height-sm: $line-height-sm !default;
|
|
12648
|
-
$form-line-height-lg: $line-height-lg !default;
|
|
12788
|
+
// Toggle button
|
|
12789
|
+
.k-toggle-button {}
|
|
12649
12790
|
|
|
12650
|
-
$form-fieldset-margin: 2em 0 0 !default;
|
|
12651
|
-
$form-fieldset-padding: 0px !default;
|
|
12652
12791
|
|
|
12653
|
-
|
|
12654
|
-
|
|
12655
|
-
$form-legend-border-width: 0 0 2px !default;
|
|
12656
|
-
$form-legend-border-style: solid !default;
|
|
12657
|
-
$form-legend-border-color: $component-border !default;
|
|
12658
|
-
$form-legend-width: 100% !default;
|
|
12659
|
-
$form-legend-font-size: 14px !default;
|
|
12660
|
-
$form-legend-text-transform: uppercase !default;
|
|
12792
|
+
// Button group
|
|
12793
|
+
.k-button-group {}
|
|
12661
12794
|
|
|
12662
|
-
$form-label-margin-bottom: 0px !default;
|
|
12663
12795
|
|
|
12664
|
-
|
|
12796
|
+
// Split button
|
|
12797
|
+
.k-split-button {}
|
|
12665
12798
|
|
|
12666
|
-
$form-hint-font-size: 12px !default;
|
|
12667
|
-
$form-hint-font-style: italic !default;
|
|
12668
|
-
$form-hint-margin-top: 4px !default;
|
|
12669
12799
|
|
|
12670
|
-
|
|
12800
|
+
// Input
|
|
12801
|
+
.k-input,
|
|
12802
|
+
.k-picker {
|
|
12803
|
+
width: $toolbar-input-width;
|
|
12804
|
+
}
|
|
12805
|
+
.k-color-picker {
|
|
12806
|
+
width: min-content;
|
|
12807
|
+
}
|
|
12671
12808
|
|
|
12672
|
-
|
|
12673
|
-
|
|
12809
|
+
// Overflow anchor
|
|
12810
|
+
.k-overflow-anchor {
|
|
12811
|
+
@include border-radius( 0 );
|
|
12812
|
+
margin: 0;
|
|
12813
|
+
padding: $toolbar-padding-y;
|
|
12814
|
+
width: auto;
|
|
12815
|
+
height: 100%;
|
|
12816
|
+
aspect-ratio: 1;
|
|
12817
|
+
border-width: 0;
|
|
12818
|
+
border-color: inherit;
|
|
12819
|
+
box-sizing: border-box;
|
|
12820
|
+
justify-content: center;
|
|
12821
|
+
position: absolute;
|
|
12822
|
+
top: 0;
|
|
12823
|
+
right: 0;
|
|
12674
12824
|
|
|
12675
|
-
|
|
12676
|
-
|
|
12677
|
-
|
|
12678
|
-
|
|
12825
|
+
&::before {
|
|
12826
|
+
display: block;
|
|
12827
|
+
}
|
|
12828
|
+
}
|
|
12679
12829
|
|
|
12680
|
-
$horizontal-form-field-wrap-max-width: calc( ( 100% - #{$horizontal-form-label-width} ) - #{$horizontal-form-label-margin-x} ) !default;
|
|
12681
12830
|
|
|
12682
|
-
|
|
12831
|
+
// Separator
|
|
12832
|
+
.k-separator,
|
|
12833
|
+
.k-toolbar-separator {
|
|
12834
|
+
width: 0;
|
|
12835
|
+
height: $line-height-em;
|
|
12836
|
+
border-width: 0 0 0 1px;
|
|
12837
|
+
border-style: solid;
|
|
12838
|
+
align-self: center;
|
|
12839
|
+
}
|
|
12683
12840
|
|
|
12684
|
-
$forms-invalid-color: $error !default;
|
|
12685
12841
|
|
|
12842
|
+
// Spacer
|
|
12843
|
+
.k-toolbar-spacer {
|
|
12844
|
+
height: $line-height-em;
|
|
12845
|
+
flex: 1 0 0%;
|
|
12846
|
+
}
|
|
12686
12847
|
|
|
12687
|
-
// Label
|
|
12688
|
-
$label-optional-margin-x: 6px !default;
|
|
12689
|
-
$label-optional-font-size: 12px !default;
|
|
12690
|
-
$label-optional-font-style: italic !default;
|
|
12691
12848
|
|
|
12849
|
+
// Template
|
|
12850
|
+
.k-toolbar-template {
|
|
12851
|
+
align-self: center;
|
|
12852
|
+
align-items: center;
|
|
12853
|
+
}
|
|
12692
12854
|
|
|
12693
|
-
|
|
12694
|
-
$fieldset-margin: 30px !default;
|
|
12695
|
-
$fieldset-font-size: $h4-font-size !default;
|
|
12855
|
+
}
|
|
12696
12856
|
|
|
12697
|
-
$fieldset-bg: null !default;
|
|
12698
|
-
$fieldset-text: null !default;
|
|
12699
|
-
$fieldset-border: null !default;
|
|
12700
12857
|
|
|
12701
|
-
|
|
12702
|
-
|
|
12703
|
-
|
|
12858
|
+
// Toolbar group
|
|
12859
|
+
.k-toolbar-group {
|
|
12860
|
+
display: flex;
|
|
12861
|
+
flex-direction: inherit;
|
|
12862
|
+
flex-wrap: nowrap;
|
|
12863
|
+
gap: inherit;
|
|
12864
|
+
}
|
|
12704
12865
|
|
|
12705
|
-
// #endregion
|
|
12706
|
-
// #region @import "_layout.scss"; -> packages/classic/scss/forms/_layout.scss
|
|
12707
|
-
// #region @import "~@progress/kendo-theme-default/scss/forms/_layout.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/forms/_layout.scss
|
|
12708
|
-
@include exports("forms/layout") {
|
|
12709
12866
|
|
|
12710
|
-
//
|
|
12711
|
-
|
|
12712
|
-
|
|
12713
|
-
|
|
12714
|
-
line-height: $form-line-height;
|
|
12867
|
+
// Angular specific
|
|
12868
|
+
kendo-toolbar-renderer {
|
|
12869
|
+
display: inline-block;
|
|
12870
|
+
border-color: inherit;
|
|
12715
12871
|
}
|
|
12716
12872
|
|
|
12717
12873
|
|
|
12718
|
-
//
|
|
12719
|
-
.k-
|
|
12720
|
-
|
|
12721
|
-
|
|
12722
|
-
border-style: solid;
|
|
12723
|
-
padding: 25px 0 0;
|
|
12874
|
+
// Overflow container
|
|
12875
|
+
.k-overflow-container {
|
|
12876
|
+
font-size: $kendo-menu-popup-font-size-md;
|
|
12877
|
+
line-height: $kendo-menu-popup-line-height-md;
|
|
12724
12878
|
|
|
12725
|
-
>
|
|
12726
|
-
|
|
12727
|
-
padding: 0 $padding-x 0 0;
|
|
12728
|
-
text-transform: uppercase;
|
|
12879
|
+
> .k-item {
|
|
12880
|
+
border-color: inherit;
|
|
12729
12881
|
}
|
|
12730
|
-
}
|
|
12731
12882
|
|
|
12883
|
+
.k-separator {
|
|
12884
|
+
margin: map-get( $spacing, 1 ) 0;
|
|
12885
|
+
}
|
|
12732
12886
|
|
|
12733
|
-
|
|
12734
|
-
|
|
12735
|
-
|
|
12736
|
-
|
|
12737
|
-
|
|
12738
|
-
|
|
12739
|
-
|
|
12740
|
-
|
|
12741
|
-
|
|
12742
|
-
|
|
12743
|
-
|
|
12887
|
+
// Group
|
|
12888
|
+
.k-overflow-tool-group {
|
|
12889
|
+
display: block;
|
|
12890
|
+
}
|
|
12891
|
+
|
|
12892
|
+
// Button
|
|
12893
|
+
.k-overflow-button {
|
|
12894
|
+
padding: $kendo-menu-popup-item-padding-y-md $kendo-menu-popup-item-padding-x-md;
|
|
12895
|
+
width: 100%;
|
|
12896
|
+
height: auto;
|
|
12897
|
+
border-width: 0;
|
|
12898
|
+
border-radius: 0;
|
|
12899
|
+
aspect-ratio: auto;
|
|
12900
|
+
color: inherit;
|
|
12901
|
+
background-color: transparent;
|
|
12902
|
+
background-image: none;
|
|
12903
|
+
font: inherit;
|
|
12904
|
+
cursor: pointer;
|
|
12905
|
+
display: flex;
|
|
12906
|
+
flex-flow: row nowrap;
|
|
12907
|
+
align-items: center;
|
|
12908
|
+
align-content: center;
|
|
12909
|
+
gap: $icon-spacing;
|
|
12910
|
+
justify-content: flex-start;
|
|
12911
|
+
position: relative;
|
|
12912
|
+
}
|
|
12913
|
+
|
|
12914
|
+
// Button group
|
|
12915
|
+
.k-button-group {
|
|
12916
|
+
@include box-shadow( none );
|
|
12917
|
+
display: flex;
|
|
12918
|
+
flex-flow: column nowrap;
|
|
12919
|
+
|
|
12920
|
+
.k-button {
|
|
12921
|
+
margin: if( $kendo-button-border-width == 0, null, 0);
|
|
12922
|
+
}
|
|
12923
|
+
}
|
|
12924
|
+
|
|
12925
|
+
// Split button
|
|
12926
|
+
.k-split-button {
|
|
12927
|
+
display: flex;
|
|
12928
|
+
flex-direction: column;
|
|
12929
|
+
}
|
|
12930
|
+
|
|
12931
|
+
// Hidden items
|
|
12932
|
+
.k-overflow-hidden {
|
|
12933
|
+
display: none;
|
|
12934
|
+
}
|
|
12935
|
+
}
|
|
12936
|
+
|
|
12937
|
+
|
|
12938
|
+
|
|
12939
|
+
|
|
12940
|
+
// RTL
|
|
12941
|
+
.k-toolbar {
|
|
12942
|
+
|
|
12943
|
+
&.k-rtl,
|
|
12944
|
+
.k-rtl &,
|
|
12945
|
+
&[dir="rtl"],
|
|
12946
|
+
[dir="rtl"] & {
|
|
12947
|
+
.k-overflow-anchor {
|
|
12948
|
+
margin: 0;
|
|
12949
|
+
right: auto;
|
|
12950
|
+
left: 0;
|
|
12951
|
+
}
|
|
12952
|
+
}
|
|
12953
|
+
|
|
12954
|
+
}
|
|
12955
|
+
|
|
12956
|
+
}
|
|
12957
|
+
|
|
12958
|
+
|
|
12959
|
+
|
|
12960
|
+
|
|
12961
|
+
@include exports( "floating-toolbar/layout" ) {
|
|
12962
|
+
|
|
12963
|
+
|
|
12964
|
+
// sass-lint:disable class-name-format
|
|
12965
|
+
.k-floating-toolbar,
|
|
12966
|
+
.editorToolbarWindow.k-window-content {
|
|
12967
|
+
padding: $toolbar-padding-y $toolbar-padding-x !important; // sass-lint:disable-line no-important
|
|
12968
|
+
border-width: $toolbar-border-width;
|
|
12969
|
+
border-style: solid;
|
|
12970
|
+
display: flex;
|
|
12971
|
+
flex-flow: row nowrap;
|
|
12972
|
+
gap: $toolbar-spacing;
|
|
12973
|
+
align-items: center;
|
|
12974
|
+
|
|
12975
|
+
.k-toolbar {
|
|
12976
|
+
padding: 0;
|
|
12977
|
+
border-width: 0;
|
|
12978
|
+
flex-shrink: 1;
|
|
12979
|
+
color: inherit;
|
|
12980
|
+
background: none;
|
|
12981
|
+
}
|
|
12982
|
+
}
|
|
12983
|
+
.k-editortoolbar-dragHandle {
|
|
12984
|
+
cursor: move;
|
|
12985
|
+
display: flex;
|
|
12986
|
+
align-items: center;
|
|
12987
|
+
align-self: stretch;
|
|
12988
|
+
flex-shrink: 0;
|
|
12989
|
+
}
|
|
12990
|
+
// sass-lint:enable class-name-format
|
|
12991
|
+
|
|
12992
|
+
|
|
12993
|
+
}
|
|
12994
|
+
|
|
12995
|
+
// #endregion
|
|
12996
|
+
|
|
12997
|
+
// #endregion
|
|
12998
|
+
// #region @import "_theme.scss"; -> packages/classic/scss/toolbar/_theme.scss
|
|
12999
|
+
// #region @import "~@progress/kendo-theme-default/scss/toolbar/_theme.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/toolbar/_theme.scss
|
|
13000
|
+
@include exports("toolbar/theme") {
|
|
13001
|
+
|
|
13002
|
+
// Theme
|
|
13003
|
+
.k-toolbar {
|
|
13004
|
+
@include fill(
|
|
13005
|
+
$toolbar-text,
|
|
13006
|
+
$toolbar-bg,
|
|
13007
|
+
$toolbar-border,
|
|
13008
|
+
$toolbar-gradient
|
|
13009
|
+
);
|
|
13010
|
+
@include box-shadow( $toolbar-shadow );
|
|
13011
|
+
|
|
13012
|
+
|
|
13013
|
+
// Separator
|
|
13014
|
+
.k-separator {
|
|
13015
|
+
border-color: $toolbar-separator-border;
|
|
13016
|
+
}
|
|
13017
|
+
|
|
13018
|
+
|
|
13019
|
+
// Button group
|
|
13020
|
+
.k-button-group {}
|
|
13021
|
+
|
|
13022
|
+
}
|
|
13023
|
+
|
|
13024
|
+
|
|
13025
|
+
// Overflow container
|
|
13026
|
+
.k-overflow-container {
|
|
13027
|
+
|
|
13028
|
+
.k-button {
|
|
13029
|
+
|
|
13030
|
+
// Hover state
|
|
13031
|
+
&:hover,
|
|
13032
|
+
&.k-hover {
|
|
13033
|
+
color: $kendo-menu-popup-item-hover-text;
|
|
13034
|
+
background: $kendo-menu-popup-item-hover-bg;
|
|
13035
|
+
}
|
|
13036
|
+
|
|
13037
|
+
// Button focus state
|
|
13038
|
+
&:focus,
|
|
13039
|
+
&.k-focus {
|
|
13040
|
+
box-shadow: $kendo-menu-popup-item-focus-shadow;
|
|
13041
|
+
}
|
|
13042
|
+
|
|
13043
|
+
// Active state
|
|
13044
|
+
&:active,
|
|
13045
|
+
&.k-active {
|
|
13046
|
+
color: $kendo-menu-popup-item-hover-text;
|
|
13047
|
+
background: $kendo-menu-popup-item-hover-bg;
|
|
13048
|
+
}
|
|
13049
|
+
|
|
13050
|
+
// Selected
|
|
13051
|
+
&.k-selected {
|
|
13052
|
+
color: $kendo-menu-popup-item-expanded-text;
|
|
13053
|
+
background: $kendo-menu-popup-item-expanded-bg;
|
|
13054
|
+
}
|
|
13055
|
+
|
|
13056
|
+
// Disabled state
|
|
13057
|
+
&:disabled,
|
|
13058
|
+
&.k-disabled {
|
|
13059
|
+
color: inherit;
|
|
13060
|
+
}
|
|
13061
|
+
}
|
|
13062
|
+
|
|
13063
|
+
}
|
|
13064
|
+
|
|
13065
|
+
}
|
|
13066
|
+
|
|
13067
|
+
|
|
13068
|
+
|
|
13069
|
+
|
|
13070
|
+
@include exports("floating-toolbar/theme") {
|
|
13071
|
+
|
|
13072
|
+
// sass-lint:disable-block class-name-format
|
|
13073
|
+
.k-floating-toolbar,
|
|
13074
|
+
.editorToolbarWindow.k-window-content {
|
|
13075
|
+
@include fill(
|
|
13076
|
+
$toolbar-text,
|
|
13077
|
+
$toolbar-bg,
|
|
13078
|
+
$toolbar-border,
|
|
13079
|
+
$toolbar-gradient
|
|
13080
|
+
);
|
|
13081
|
+
}
|
|
13082
|
+
|
|
13083
|
+
}
|
|
13084
|
+
|
|
13085
|
+
// #endregion
|
|
13086
|
+
|
|
13087
|
+
// #endregion
|
|
13088
|
+
|
|
13089
|
+
// #endregion
|
|
13090
|
+
// #region @import "../action-buttons/_index.scss"; -> packages/classic/scss/action-buttons/_index.scss
|
|
13091
|
+
// #region @import "../core/_index.scss"; -> packages/classic/scss/core/_index.scss
|
|
13092
|
+
// File already imported_once. Skipping output.
|
|
13093
|
+
// #endregion
|
|
13094
|
+
|
|
13095
|
+
|
|
13096
|
+
// Dependencies
|
|
13097
|
+
// #region @import "../common/_index.scss"; -> packages/classic/scss/common/_index.scss
|
|
13098
|
+
// File already imported_once. Skipping output.
|
|
13099
|
+
// #endregion
|
|
13100
|
+
// #region @import "../button/_index.scss"; -> packages/classic/scss/button/_index.scss
|
|
13101
|
+
// File already imported_once. Skipping output.
|
|
13102
|
+
// #endregion
|
|
13103
|
+
|
|
13104
|
+
|
|
13105
|
+
// Component
|
|
13106
|
+
// #region @import "_variables.scss"; -> packages/classic/scss/action-buttons/_variables.scss
|
|
13107
|
+
// Actions
|
|
13108
|
+
$actions-margin-top: map-get( $spacing, 4 ) !default;
|
|
13109
|
+
$actions-padding-x: map-get( $spacing, 2 ) !default;
|
|
13110
|
+
$actions-padding-y: map-get( $spacing, 2 ) !default;
|
|
13111
|
+
$actions-border-width: 0px !default;
|
|
13112
|
+
$actions-button-spacing: map-get( $spacing, 2 ) !default;
|
|
13113
|
+
|
|
13114
|
+
$actions-bg: null !default;
|
|
13115
|
+
$actions-text: null !default;
|
|
13116
|
+
$actions-border: null !default;
|
|
13117
|
+
$actions-gradient: null !default;
|
|
13118
|
+
|
|
13119
|
+
// #endregion
|
|
13120
|
+
// #region @import "_layout.scss"; -> packages/classic/scss/action-buttons/_layout.scss
|
|
13121
|
+
// #region @import "~@progress/kendo-theme-default/scss/action-buttons/_layout.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/action-buttons/_layout.scss
|
|
13122
|
+
@include exports("action-buttons/layout") {
|
|
13123
|
+
|
|
13124
|
+
.k-actions {
|
|
13125
|
+
padding: $actions-padding-y $actions-padding-x;
|
|
13126
|
+
box-sizing: border-box;
|
|
13127
|
+
border-width: $actions-border-width 0 0 0;
|
|
13128
|
+
border-style: solid;
|
|
13129
|
+
border-color: inherit;
|
|
13130
|
+
flex-shrink: 0;
|
|
13131
|
+
display: flex;
|
|
13132
|
+
flex-flow: row nowrap;
|
|
13133
|
+
align-items: center;
|
|
13134
|
+
gap: $actions-button-spacing;
|
|
13135
|
+
overflow: hidden;
|
|
13136
|
+
// TODO: remove
|
|
13137
|
+
clear: both;
|
|
13138
|
+
|
|
13139
|
+
*,
|
|
13140
|
+
*::before,
|
|
13141
|
+
*::after {
|
|
13142
|
+
box-sizing: border-box;
|
|
13143
|
+
}
|
|
13144
|
+
}
|
|
13145
|
+
|
|
13146
|
+
|
|
13147
|
+
// Actions in popup
|
|
13148
|
+
.k-popup .k-actions {
|
|
13149
|
+
margin-top: $actions-margin-top;
|
|
13150
|
+
}
|
|
13151
|
+
|
|
13152
|
+
|
|
13153
|
+
// Aliases
|
|
13154
|
+
.k-edit-buttons,
|
|
13155
|
+
.k-action-buttons,
|
|
13156
|
+
.k-columnmenu-actions {
|
|
13157
|
+
@extend .k-actions;
|
|
13158
|
+
}
|
|
13159
|
+
|
|
13160
|
+
|
|
13161
|
+
// Legacy spacing
|
|
13162
|
+
.k-ie {
|
|
13163
|
+
.k-actions .k-button ~ .k-button {
|
|
13164
|
+
margin-left: $actions-button-spacing;
|
|
13165
|
+
flex-shrink: 0;
|
|
13166
|
+
|
|
13167
|
+
.k-rtl &,
|
|
13168
|
+
[dir="rtl"] & {
|
|
13169
|
+
margin-left: 0;
|
|
13170
|
+
margin-right: $actions-button-spacing;
|
|
13171
|
+
}
|
|
13172
|
+
}
|
|
13173
|
+
}
|
|
13174
|
+
|
|
13175
|
+
// Actions align
|
|
13176
|
+
.k-actions-start {
|
|
13177
|
+
justify-content: flex-start;
|
|
13178
|
+
}
|
|
13179
|
+
.k-actions-center {
|
|
13180
|
+
justify-content: center;
|
|
13181
|
+
}
|
|
13182
|
+
.k-actions-end {
|
|
13183
|
+
justify-content: flex-end;
|
|
13184
|
+
}
|
|
13185
|
+
.k-actions-stretched > * {
|
|
13186
|
+
flex: 1 0 0%;
|
|
13187
|
+
}
|
|
13188
|
+
|
|
13189
|
+
// Actions orientation
|
|
13190
|
+
.k-actions-horizontal {
|
|
13191
|
+
width: 100%;
|
|
13192
|
+
flex-flow: row nowrap;
|
|
13193
|
+
}
|
|
13194
|
+
.k-actions-vertical {
|
|
13195
|
+
flex-flow: column nowrap;
|
|
13196
|
+
}
|
|
13197
|
+
|
|
13198
|
+
}
|
|
13199
|
+
|
|
13200
|
+
// #endregion
|
|
13201
|
+
|
|
13202
|
+
// #endregion
|
|
13203
|
+
// #region @import "_theme.scss"; -> packages/classic/scss/action-buttons/_theme.scss
|
|
13204
|
+
// #region @import "~@progress/kendo-theme-default/scss/action-buttons/_theme.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/action-buttons/_theme.scss
|
|
13205
|
+
@include exports("action-buttons/theme") {
|
|
13206
|
+
|
|
13207
|
+
.k-actions {
|
|
13208
|
+
@include fill(
|
|
13209
|
+
$actions-text,
|
|
13210
|
+
$actions-bg,
|
|
13211
|
+
$actions-border,
|
|
13212
|
+
$actions-gradient
|
|
13213
|
+
);
|
|
13214
|
+
}
|
|
13215
|
+
|
|
13216
|
+
}
|
|
13217
|
+
|
|
13218
|
+
// #endregion
|
|
13219
|
+
|
|
13220
|
+
// #endregion
|
|
13221
|
+
|
|
13222
|
+
// #endregion
|
|
13223
|
+
// #region @import "../window/_variables.scss"; -> packages/classic/scss/window/_variables.scss
|
|
13224
|
+
// Window
|
|
13225
|
+
$window-border-width: 1px !default;
|
|
13226
|
+
$window-border-radius: map-get( $spacing, 1 ) !default;
|
|
13227
|
+
$window-font-family: $font-family !default;
|
|
13228
|
+
$window-font-size: $font-size !default;
|
|
13229
|
+
$window-line-height: $line-height !default;
|
|
13230
|
+
|
|
13231
|
+
$window-titlebar-padding-x: map-get( $spacing, 3 ) !default;
|
|
13232
|
+
$window-titlebar-padding-y: map-get( $spacing, 2 ) !default;
|
|
13233
|
+
$window-titlebar-border-width: 0 0 1px !default;
|
|
13234
|
+
$window-titlebar-border-style: solid !default;
|
|
13235
|
+
|
|
13236
|
+
$window-title-font-size: $font-size-lg !default;
|
|
13237
|
+
$window-title-line-height: 1.25 !default;
|
|
13238
|
+
|
|
13239
|
+
$window-actions-gap: null !default;
|
|
13240
|
+
|
|
13241
|
+
$window-action-opacity: null !default;
|
|
13242
|
+
$window-action-hover-opacity: null !default;
|
|
13243
|
+
|
|
13244
|
+
$window-inner-padding-x: map-get( $spacing, 3 ) !default;
|
|
13245
|
+
$window-inner-padding-y: map-get( $spacing, 3 ) !default;
|
|
13246
|
+
|
|
13247
|
+
$window-buttongroup-padding-x: $actions-padding-x !default;
|
|
13248
|
+
$window-buttongroup-padding-y: $actions-padding-y !default;
|
|
13249
|
+
$window-buttongroup-border-width: 1px !default;
|
|
13250
|
+
|
|
13251
|
+
$window-bg: $component-bg !default;
|
|
13252
|
+
$window-text: $component-text !default;
|
|
13253
|
+
$window-border: $component-border !default;
|
|
13254
|
+
|
|
13255
|
+
$window-titlebar-bg: $header-bg !default;
|
|
13256
|
+
$window-titlebar-text: $header-text !default;
|
|
13257
|
+
$window-titlebar-border: $header-border !default;
|
|
13258
|
+
$window-titlebar-gradient: $header-gradient !default;
|
|
13259
|
+
|
|
13260
|
+
$window-shadow: 1px 1px 7px 1px rgba( 0, 0, 0, .12 ) !default;
|
|
13261
|
+
$window-focused-shadow: 1px 1px 7px 1px rgba( 0, 0, 0, .25 ) !default;
|
|
13262
|
+
|
|
13263
|
+
$window-sizes: (
|
|
13264
|
+
sm: 300px,
|
|
13265
|
+
md: 800px,
|
|
13266
|
+
lg: 1200px
|
|
13267
|
+
) !default;
|
|
13268
|
+
|
|
13269
|
+
// #endregion
|
|
13270
|
+
|
|
13271
|
+
|
|
13272
|
+
// Component
|
|
13273
|
+
// #region @import "_variables.scss"; -> packages/classic/scss/forms/_variables.scss
|
|
13274
|
+
// Forms
|
|
13275
|
+
$form-spacer: $padding-x * 2 !default;
|
|
13276
|
+
|
|
13277
|
+
$form-font-size: $font-size !default;
|
|
13278
|
+
$form-line-height: $line-height !default;
|
|
13279
|
+
$form-line-height-em: $form-line-height * 1em !default;
|
|
13280
|
+
$form-line-height-sm: $line-height-sm !default;
|
|
13281
|
+
$form-line-height-lg: $line-height-lg !default;
|
|
13282
|
+
|
|
13283
|
+
$form-fieldset-margin: 2em 0 0 !default;
|
|
13284
|
+
$form-fieldset-padding: 0px !default;
|
|
13285
|
+
|
|
13286
|
+
$form-legend-margin: 0 0 1em !default;
|
|
13287
|
+
$form-legend-padding: 0px !default;
|
|
13288
|
+
$form-legend-border-width: 0 0 2px !default;
|
|
13289
|
+
$form-legend-border-style: solid !default;
|
|
13290
|
+
$form-legend-border-color: $component-border !default;
|
|
13291
|
+
$form-legend-width: 100% !default;
|
|
13292
|
+
$form-legend-font-size: 14px !default;
|
|
13293
|
+
$form-legend-text-transform: uppercase !default;
|
|
13294
|
+
|
|
13295
|
+
$form-label-margin-bottom: 0px !default;
|
|
13296
|
+
|
|
13297
|
+
$form-button-margin-x: 8px !default;
|
|
13298
|
+
|
|
13299
|
+
$form-hint-font-size: 12px !default;
|
|
13300
|
+
$form-hint-font-style: italic !default;
|
|
13301
|
+
$form-hint-margin-top: 4px !default;
|
|
13302
|
+
|
|
13303
|
+
$form-field-margin-top: 1em !default;
|
|
13304
|
+
|
|
13305
|
+
$form-separator-margin: $form-field-margin-top 0 0 !default;
|
|
13306
|
+
$form-separator-border-color: $form-legend-border-color !default;
|
|
13307
|
+
|
|
13308
|
+
$horizontal-form-label-padding-top: 5px !default;
|
|
13309
|
+
$horizontal-form-label-margin-x: 10px !default;
|
|
13310
|
+
$horizontal-form-label-width: 25% !default;
|
|
13311
|
+
$horizontal-form-label-align: flex-end !default;
|
|
13312
|
+
|
|
13313
|
+
$horizontal-form-field-wrap-max-width: calc( ( 100% - #{$horizontal-form-label-width} ) - #{$horizontal-form-label-margin-x} ) !default;
|
|
13314
|
+
|
|
13315
|
+
$inline-form-element-width: 25% !default;
|
|
13316
|
+
|
|
13317
|
+
$forms-invalid-color: $error !default;
|
|
13318
|
+
|
|
13319
|
+
|
|
13320
|
+
// Label
|
|
13321
|
+
$label-optional-margin-x: 6px !default;
|
|
13322
|
+
$label-optional-font-size: 12px !default;
|
|
13323
|
+
$label-optional-font-style: italic !default;
|
|
13324
|
+
|
|
13325
|
+
|
|
13326
|
+
// Fieldset
|
|
13327
|
+
$fieldset-margin: 30px !default;
|
|
13328
|
+
$fieldset-font-size: $h4-font-size !default;
|
|
13329
|
+
|
|
13330
|
+
$fieldset-bg: null !default;
|
|
13331
|
+
$fieldset-text: null !default;
|
|
13332
|
+
$fieldset-border: null !default;
|
|
13333
|
+
|
|
13334
|
+
$fieldset-legend-bg: null !default;
|
|
13335
|
+
$fieldset-legend-text: try-shade( $body-text, 2 ) !default;
|
|
13336
|
+
$fieldset-legend-border: null !default;
|
|
13337
|
+
|
|
13338
|
+
// #endregion
|
|
13339
|
+
// #region @import "_layout.scss"; -> packages/classic/scss/forms/_layout.scss
|
|
13340
|
+
// #region @import "~@progress/kendo-theme-default/scss/forms/_layout.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/forms/_layout.scss
|
|
13341
|
+
@include exports("forms/layout") {
|
|
13342
|
+
|
|
13343
|
+
// Common
|
|
13344
|
+
.k-form,
|
|
13345
|
+
.k-form-inline {
|
|
13346
|
+
font-size: $form-font-size;
|
|
13347
|
+
line-height: $form-line-height;
|
|
13348
|
+
}
|
|
13349
|
+
|
|
13350
|
+
|
|
13351
|
+
// Fieldset
|
|
13352
|
+
.k-fieldset {
|
|
13353
|
+
margin: $fieldset-margin;
|
|
13354
|
+
border-width: 1px 0 0;
|
|
13355
|
+
border-style: solid;
|
|
13356
|
+
padding: 25px 0 0;
|
|
13357
|
+
|
|
13358
|
+
> legend {
|
|
13359
|
+
margin-left: 0;
|
|
13360
|
+
padding: 0 $padding-x 0 0;
|
|
13361
|
+
text-transform: uppercase;
|
|
13362
|
+
}
|
|
13363
|
+
}
|
|
13364
|
+
|
|
13365
|
+
|
|
13366
|
+
// Label
|
|
13367
|
+
kendo-label > .k-label {
|
|
13368
|
+
margin: 0;
|
|
13369
|
+
}
|
|
13370
|
+
|
|
13371
|
+
.k-label-optional {
|
|
13372
|
+
margin-left: $label-optional-margin-x;
|
|
13373
|
+
font-size: $label-optional-font-size;
|
|
13374
|
+
font-style: $label-optional-font-style;
|
|
13375
|
+
align-self: center;
|
|
13376
|
+
}
|
|
12744
13377
|
|
|
12745
13378
|
.k-label-empty {
|
|
12746
13379
|
&::before {
|
|
@@ -13192,6 +13825,12 @@ $fieldset-legend-border: null !default;
|
|
|
13192
13825
|
z-index: 12000;
|
|
13193
13826
|
-webkit-touch-callout: none;
|
|
13194
13827
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
13828
|
+
|
|
13829
|
+
*,
|
|
13830
|
+
*::before,
|
|
13831
|
+
*::after {
|
|
13832
|
+
box-sizing: border-box;
|
|
13833
|
+
}
|
|
13195
13834
|
}
|
|
13196
13835
|
|
|
13197
13836
|
.k-tooltip-icon {
|
|
@@ -13230,7 +13869,6 @@ $fieldset-legend-border: null !default;
|
|
|
13230
13869
|
border-width: $tooltip-callout-size;
|
|
13231
13870
|
border-style: solid;
|
|
13232
13871
|
border-color: transparent;
|
|
13233
|
-
box-sizing: border-box;
|
|
13234
13872
|
position: absolute;
|
|
13235
13873
|
pointer-events: none;
|
|
13236
13874
|
}
|
|
@@ -13662,6 +14300,7 @@ $listbox-drop-hint-width: 1px !default;
|
|
|
13662
14300
|
|
|
13663
14301
|
.k-list {
|
|
13664
14302
|
height: inherit;
|
|
14303
|
+
background: transparent;
|
|
13665
14304
|
}
|
|
13666
14305
|
}
|
|
13667
14306
|
|
|
@@ -13796,6 +14435,12 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
13796
14435
|
-webkit-touch-callout: none;
|
|
13797
14436
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
13798
14437
|
|
|
14438
|
+
*,
|
|
14439
|
+
*::before,
|
|
14440
|
+
*::after {
|
|
14441
|
+
box-sizing: border-box;
|
|
14442
|
+
}
|
|
14443
|
+
|
|
13799
14444
|
|
|
13800
14445
|
// Selection
|
|
13801
14446
|
> .k-state-selected {
|
|
@@ -14655,6 +15300,12 @@ $slider-disabled-opacity: null !default;
|
|
|
14655
15300
|
-webkit-touch-callout: none;
|
|
14656
15301
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
14657
15302
|
|
|
15303
|
+
*,
|
|
15304
|
+
*::before,
|
|
15305
|
+
*::after {
|
|
15306
|
+
box-sizing: border-box;
|
|
15307
|
+
}
|
|
15308
|
+
|
|
14658
15309
|
.k-label {
|
|
14659
15310
|
width: auto;
|
|
14660
15311
|
font-size: .92em;
|
|
@@ -14702,7 +15353,6 @@ $slider-disabled-opacity: null !default;
|
|
|
14702
15353
|
.k-slider-wrap {
|
|
14703
15354
|
width: 100%;
|
|
14704
15355
|
height: 100%;
|
|
14705
|
-
box-sizing: border-box;
|
|
14706
15356
|
display: flex;
|
|
14707
15357
|
flex-flow: inherit;
|
|
14708
15358
|
align-items: inherit;
|
|
@@ -15000,7 +15650,6 @@ $slider-disabled-opacity: null !default;
|
|
|
15000
15650
|
position: absolute;
|
|
15001
15651
|
text-align: center;
|
|
15002
15652
|
text-decoration: none;
|
|
15003
|
-
box-sizing: border-box;
|
|
15004
15653
|
width: $slider-draghandle-size;
|
|
15005
15654
|
height: $slider-draghandle-size;
|
|
15006
15655
|
|
|
@@ -16501,6 +17150,12 @@ $captcha-validation-message-font-style: italic !default;
|
|
|
16501
17150
|
display: flex;
|
|
16502
17151
|
flex-flow: column nowrap;
|
|
16503
17152
|
gap: $captcha-gap;
|
|
17153
|
+
|
|
17154
|
+
*,
|
|
17155
|
+
*::before,
|
|
17156
|
+
*::after {
|
|
17157
|
+
box-sizing: border-box;
|
|
17158
|
+
}
|
|
16504
17159
|
}
|
|
16505
17160
|
|
|
16506
17161
|
// Image
|
|
@@ -16614,6 +17269,12 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
16614
17269
|
position: relative;
|
|
16615
17270
|
-webkit-touch-callout: none;
|
|
16616
17271
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
17272
|
+
|
|
17273
|
+
*,
|
|
17274
|
+
*::before,
|
|
17275
|
+
*::after {
|
|
17276
|
+
box-sizing: border-box;
|
|
17277
|
+
}
|
|
16617
17278
|
}
|
|
16618
17279
|
|
|
16619
17280
|
// Table
|
|
@@ -16746,17 +17407,11 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
16746
17407
|
@include exports( "numerictextbox/layout" ) {
|
|
16747
17408
|
|
|
16748
17409
|
// Numeric textbox
|
|
16749
|
-
.k-numeric-textbox {
|
|
16750
|
-
|
|
16751
|
-
.k-input-inner {
|
|
16752
|
-
text-overflow: clip;
|
|
16753
|
-
}
|
|
16754
|
-
|
|
16755
|
-
}
|
|
17410
|
+
.k-numeric-textbox {}
|
|
16756
17411
|
|
|
16757
17412
|
|
|
16758
17413
|
// Alias
|
|
16759
|
-
.k-numerictextbox { @extend .k-numeric-textbox; }
|
|
17414
|
+
.k-numerictextbox { @extend .k-numeric-textbox !optional; }
|
|
16760
17415
|
|
|
16761
17416
|
}
|
|
16762
17417
|
|
|
@@ -16860,6 +17515,12 @@ $colorgradient-contrast-spacer: ( $colorgradient-spacer / 1.5 ) !default;
|
|
|
16860
17515
|
gap: $colorgradient-gap;
|
|
16861
17516
|
-webkit-touch-callout: none;
|
|
16862
17517
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
17518
|
+
|
|
17519
|
+
*,
|
|
17520
|
+
*::before,
|
|
17521
|
+
*::after {
|
|
17522
|
+
box-sizing: border-box;
|
|
17523
|
+
}
|
|
16863
17524
|
}
|
|
16864
17525
|
|
|
16865
17526
|
// Canvas
|
|
@@ -17194,6 +17855,12 @@ $coloreditor-views-gap: $coloreditor-spacer !default;
|
|
|
17194
17855
|
display: inline-flex;
|
|
17195
17856
|
flex-direction: column;
|
|
17196
17857
|
align-items: stretch;
|
|
17858
|
+
|
|
17859
|
+
*,
|
|
17860
|
+
*::before,
|
|
17861
|
+
*::after {
|
|
17862
|
+
box-sizing: border-box;
|
|
17863
|
+
}
|
|
17197
17864
|
}
|
|
17198
17865
|
|
|
17199
17866
|
// Header
|
|
@@ -17533,6 +18200,9 @@ $datetime-width: calc( #{$calendar-cell-size * 8} + #{$infinite-calendar-view-pa
|
|
|
17533
18200
|
// #region @import "~@progress/kendo-theme-default/scss/datetimepicker/_layout.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/datetimepicker/_layout.scss
|
|
17534
18201
|
@include exports( "datetimepicker/layout" ) {
|
|
17535
18202
|
|
|
18203
|
+
// Datetime container
|
|
18204
|
+
.k-datetime-container {}
|
|
18205
|
+
|
|
17536
18206
|
// Datetime selector
|
|
17537
18207
|
.k-datetime-selector {
|
|
17538
18208
|
display: flex;
|
|
@@ -17543,6 +18213,20 @@ $datetime-width: calc( #{$calendar-cell-size * 8} + #{$infinite-calendar-view-pa
|
|
|
17543
18213
|
.k-datetime-wrap {
|
|
17544
18214
|
width: $datetime-width;
|
|
17545
18215
|
overflow: hidden;
|
|
18216
|
+
|
|
18217
|
+
.k-datetime-buttongroup {
|
|
18218
|
+
padding: $actions-padding-y $actions-padding-x;
|
|
18219
|
+
}
|
|
18220
|
+
|
|
18221
|
+
.k-calendar,
|
|
18222
|
+
.k-timeselector {
|
|
18223
|
+
width: 100%;
|
|
18224
|
+
border-width: 0;
|
|
18225
|
+
}
|
|
18226
|
+
|
|
18227
|
+
.k-actions {
|
|
18228
|
+
margin: 0;
|
|
18229
|
+
}
|
|
17546
18230
|
}
|
|
17547
18231
|
|
|
17548
18232
|
// Inner wrap
|
|
@@ -17632,6 +18316,12 @@ $datetime-width: calc( #{$calendar-cell-size * 8} + #{$infinite-calendar-view-pa
|
|
|
17632
18316
|
flex-flow: row nowrap;
|
|
17633
18317
|
align-items: flex-start;
|
|
17634
18318
|
gap: map-get( $spacing, 2 );
|
|
18319
|
+
|
|
18320
|
+
*,
|
|
18321
|
+
*::before,
|
|
18322
|
+
*::after {
|
|
18323
|
+
box-sizing: border-box;
|
|
18324
|
+
}
|
|
17635
18325
|
}
|
|
17636
18326
|
|
|
17637
18327
|
|
|
@@ -18374,13 +19064,18 @@ $kendo-treeview-loadmore-focus-shadow: $kendo-treeview-item-focus-shadow !defaul
|
|
|
18374
19064
|
white-space: nowrap;
|
|
18375
19065
|
-webkit-touch-callout: none;
|
|
18376
19066
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
19067
|
+
|
|
19068
|
+
*,
|
|
19069
|
+
*::before,
|
|
19070
|
+
*::after {
|
|
19071
|
+
box-sizing: border-box;
|
|
19072
|
+
}
|
|
18377
19073
|
}
|
|
18378
19074
|
|
|
18379
19075
|
|
|
18380
19076
|
// Treeview filter
|
|
18381
19077
|
.k-treeview-filter {
|
|
18382
|
-
padding: map-get( $spacing,
|
|
18383
|
-
box-sizing: border-box;
|
|
19078
|
+
padding: map-get( $spacing, 2 );
|
|
18384
19079
|
display: block;
|
|
18385
19080
|
position: relative;
|
|
18386
19081
|
flex: none;
|
|
@@ -18426,6 +19121,7 @@ $kendo-treeview-loadmore-focus-shadow: $kendo-treeview-item-focus-shadow !defaul
|
|
|
18426
19121
|
|
|
18427
19122
|
// Treeview toggle
|
|
18428
19123
|
.k-treeview-toggle {
|
|
19124
|
+
margin-left: -$kendo-treeview-indent;
|
|
18429
19125
|
flex: none;
|
|
18430
19126
|
display: inline-flex;
|
|
18431
19127
|
flex-flow: row nowrap;
|
|
@@ -18783,6 +19479,12 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
18783
19479
|
-webkit-touch-callout: none;
|
|
18784
19480
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
18785
19481
|
|
|
19482
|
+
*,
|
|
19483
|
+
*::before,
|
|
19484
|
+
*::after {
|
|
19485
|
+
box-sizing: border-box;
|
|
19486
|
+
}
|
|
19487
|
+
|
|
18786
19488
|
&.k-state-readonly {
|
|
18787
19489
|
pointer-events: none;
|
|
18788
19490
|
}
|
|
@@ -18791,7 +19493,6 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
18791
19493
|
.k-rating-container {
|
|
18792
19494
|
flex: 0 1 auto;
|
|
18793
19495
|
position: relative;
|
|
18794
|
-
box-sizing: border-box;
|
|
18795
19496
|
margin: 0 $rating-container-margin-x;
|
|
18796
19497
|
|
|
18797
19498
|
.k-rating-item {
|
|
@@ -18972,9 +19673,6 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
18972
19673
|
/// Font family of the switch.
|
|
18973
19674
|
/// @group switch
|
|
18974
19675
|
$kendo-switch-font-family: null !default;
|
|
18975
|
-
/// Line height of the switch.
|
|
18976
|
-
/// @group switch
|
|
18977
|
-
$kendo-switch-line-height: null !default;
|
|
18978
19676
|
|
|
18979
19677
|
/// Border width of the switch track.
|
|
18980
19678
|
/// @group switch
|
|
@@ -18986,17 +19684,17 @@ $kendo-switch-thumb-border-width: 1px !default;
|
|
|
18986
19684
|
|
|
18987
19685
|
/// Text transform of the switch label.
|
|
18988
19686
|
/// @group switch
|
|
18989
|
-
$kendo-switch-label-text-transform:
|
|
19687
|
+
$kendo-switch-label-text-transform: uppercase !default;
|
|
18990
19688
|
/// Display of the switch label.
|
|
18991
19689
|
/// @group switch
|
|
18992
|
-
$kendo-switch-label-display:
|
|
19690
|
+
$kendo-switch-label-display: inline !default;
|
|
18993
19691
|
|
|
18994
19692
|
/// Map with the different switch sizes.
|
|
18995
19693
|
/// @group switch
|
|
18996
19694
|
$kendo-switch-sizes: (
|
|
18997
|
-
sm: ( font-size:
|
|
18998
|
-
md: ( font-size:
|
|
18999
|
-
lg: ( font-size: 12px, track-width:
|
|
19695
|
+
sm: ( font-size: 12px, track-width: 48px, track-height: 26px, thumb-width: 20px, thumb-height: 20px, thumb-offset: 3px, label-offset: 4px ),
|
|
19696
|
+
md: ( font-size: 12px, track-width: 56px, track-height: 30px, thumb-width: 24px, thumb-height: 24px, thumb-offset: 3px, label-offset: 6px ),
|
|
19697
|
+
lg: ( font-size: 12px, track-width: 64px, track-height: 34px, thumb-width: 28px, thumb-height: 28px, thumb-offset: 3px, label-offset: 8px )
|
|
19000
19698
|
) !default;
|
|
19001
19699
|
|
|
19002
19700
|
/// The background of the track when the switch is not checked.
|
|
@@ -19039,7 +19737,7 @@ $kendo-switch-off-track-focus-border: null !default;
|
|
|
19039
19737
|
$kendo-switch-off-track-focus-gradient: null !default;
|
|
19040
19738
|
/// The ring around the track when the focused switch is not checked.
|
|
19041
19739
|
/// @group switch
|
|
19042
|
-
$kendo-switch-off-track-focus-ring:
|
|
19740
|
+
$kendo-switch-off-track-focus-ring: 0 0 3px 1px rgba( if($dark-theme, $white, $black), .25 ) !default;
|
|
19043
19741
|
|
|
19044
19742
|
/// The background of the track when the disabled switch is not checked.
|
|
19045
19743
|
/// @group switch
|
|
@@ -19056,26 +19754,26 @@ $kendo-switch-off-track-disabled-gradient: null !default;
|
|
|
19056
19754
|
|
|
19057
19755
|
/// The background of the thumb when the switch is not checked.
|
|
19058
19756
|
/// @group switch
|
|
19059
|
-
$kendo-switch-off-thumb-bg: $
|
|
19757
|
+
$kendo-switch-off-thumb-bg: try-shade( $kendo-switch-off-track-bg ) !default;
|
|
19060
19758
|
/// The text color of the thumb when the switch is not checked.
|
|
19061
19759
|
/// @group switch
|
|
19062
|
-
$kendo-switch-off-thumb-text:
|
|
19760
|
+
$kendo-switch-off-thumb-text: null !default;
|
|
19063
19761
|
/// The border color of the thumb when the switch is not checked.
|
|
19064
19762
|
/// @group switch
|
|
19065
|
-
$kendo-switch-off-thumb-border: $
|
|
19763
|
+
$kendo-switch-off-thumb-border: $kendo-switch-off-track-border !default;
|
|
19066
19764
|
/// The background gradient of the thumb when the switch is not checked.
|
|
19067
19765
|
/// @group switch
|
|
19068
|
-
$kendo-switch-off-thumb-gradient:
|
|
19766
|
+
$kendo-switch-off-thumb-gradient: $base-gradient !default;
|
|
19069
19767
|
|
|
19070
19768
|
/// The background of the thumb when the hovered switch is not checked.
|
|
19071
19769
|
/// @group switch
|
|
19072
|
-
$kendo-switch-off-thumb-hover-bg:
|
|
19770
|
+
$kendo-switch-off-thumb-hover-bg: try-shade( $kendo-switch-off-thumb-bg ) !default;
|
|
19073
19771
|
/// The text color of the thumb when the hovered switch is not checked.
|
|
19074
19772
|
/// @group switch
|
|
19075
19773
|
$kendo-switch-off-thumb-hover-text: null !default;
|
|
19076
19774
|
/// The border color of the thumb when the hovered switch is not checked.
|
|
19077
19775
|
/// @group switch
|
|
19078
|
-
$kendo-switch-off-thumb-hover-border:
|
|
19776
|
+
$kendo-switch-off-thumb-hover-border: $kendo-switch-off-thumb-border !default;
|
|
19079
19777
|
/// The background gradient of the thumb when the hovered switch is not checked.
|
|
19080
19778
|
/// @group switch
|
|
19081
19779
|
$kendo-switch-off-thumb-hover-gradient: null !default;
|
|
@@ -19083,13 +19781,13 @@ $kendo-switch-off-thumb-hover-gradient: null !default;
|
|
|
19083
19781
|
|
|
19084
19782
|
/// The background of the track when the switch is checked.
|
|
19085
19783
|
/// @group switch
|
|
19086
|
-
$kendo-switch-on-track-bg: $
|
|
19784
|
+
$kendo-switch-on-track-bg: $component-bg !default;
|
|
19087
19785
|
/// The text color of the track when the switch is checked.
|
|
19088
19786
|
/// @group switch
|
|
19089
|
-
$kendo-switch-on-track-text:
|
|
19787
|
+
$kendo-switch-on-track-text: $primary !default;
|
|
19090
19788
|
/// The border color of the track when the switch is checked.
|
|
19091
19789
|
/// @group switch
|
|
19092
|
-
$kendo-switch-on-track-border: $
|
|
19790
|
+
$kendo-switch-on-track-border: $component-border !default;
|
|
19093
19791
|
/// The background gradient of the track when the switch is checked.
|
|
19094
19792
|
/// @group switch
|
|
19095
19793
|
$kendo-switch-on-track-gradient: null !default;
|
|
@@ -19121,7 +19819,7 @@ $kendo-switch-on-track-focus-border: null !default;
|
|
|
19121
19819
|
$kendo-switch-on-track-focus-gradient: null !default;
|
|
19122
19820
|
/// The ring around the track wen the focused switch is checked.
|
|
19123
19821
|
/// @group switch
|
|
19124
|
-
$kendo-switch-on-track-focus-ring:
|
|
19822
|
+
$kendo-switch-on-track-focus-ring: 0 0 3px 1px rgba( if($dark-theme, $white, $black), .25 ) !default;
|
|
19125
19823
|
|
|
19126
19824
|
/// The background of the track when the disabled switch is checked.
|
|
19127
19825
|
/// @group switch
|
|
@@ -19138,26 +19836,26 @@ $kendo-switch-on-track-disabled-gradient: null !default;
|
|
|
19138
19836
|
|
|
19139
19837
|
/// The background of the thumb when the switch is checked.
|
|
19140
19838
|
/// @group switch
|
|
19141
|
-
$kendo-switch-on-thumb-bg: $
|
|
19839
|
+
$kendo-switch-on-thumb-bg: $primary !default;
|
|
19142
19840
|
/// The text color of the thumb when the switch is checked.
|
|
19143
19841
|
/// @group switch
|
|
19144
|
-
$kendo-switch-on-thumb-text:
|
|
19842
|
+
$kendo-switch-on-thumb-text: null !default;
|
|
19145
19843
|
/// The border color of the thumb when the switch is checked.
|
|
19146
19844
|
/// @group switch
|
|
19147
|
-
$kendo-switch-on-thumb-border: $
|
|
19845
|
+
$kendo-switch-on-thumb-border: try-shade( $kendo-switch-on-thumb-bg ) !default;
|
|
19148
19846
|
/// The background gradient of the thumb when the switch is checked.
|
|
19149
19847
|
/// @group switch
|
|
19150
|
-
$kendo-switch-on-thumb-gradient:
|
|
19848
|
+
$kendo-switch-on-thumb-gradient: $base-gradient !default;
|
|
19151
19849
|
|
|
19152
19850
|
/// The background of the thumb when the hovered switch is checked.
|
|
19153
19851
|
/// @group switch
|
|
19154
|
-
$kendo-switch-on-thumb-hover-bg:
|
|
19852
|
+
$kendo-switch-on-thumb-hover-bg: try-shade( $kendo-switch-on-thumb-bg ) !default;
|
|
19155
19853
|
/// The text color of the thumb when the hovered switch is checked.
|
|
19156
19854
|
/// @group switch
|
|
19157
19855
|
$kendo-switch-on-thumb-hover-text: null !default;
|
|
19158
19856
|
/// The border color of the thumb when the hovered switch is checked.
|
|
19159
19857
|
/// @group switch
|
|
19160
|
-
$kendo-switch-on-thumb-hover-border:
|
|
19858
|
+
$kendo-switch-on-thumb-hover-border: try-shade( $kendo-switch-on-thumb-hover-bg ) !default;
|
|
19161
19859
|
/// The background gradient of the thumb when the hovered switch is checked.
|
|
19162
19860
|
/// @group switch
|
|
19163
19861
|
$kendo-switch-on-thumb-hover-gradient: null !default;
|
|
@@ -19168,17 +19866,32 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
|
|
|
19168
19866
|
@include exports("switch/layout") {
|
|
19169
19867
|
|
|
19170
19868
|
.k-switch {
|
|
19869
|
+
box-sizing: border-box;
|
|
19171
19870
|
font-family: $kendo-switch-font-family;
|
|
19172
|
-
line-height: $kendo-switch-line-height;
|
|
19173
19871
|
outline: 0;
|
|
19174
19872
|
display: inline-flex;
|
|
19175
19873
|
align-items: center;
|
|
19176
19874
|
vertical-align: middle;
|
|
19875
|
+
line-height: 1;
|
|
19177
19876
|
position: relative;
|
|
19178
19877
|
cursor: pointer;
|
|
19179
19878
|
user-select: none;
|
|
19180
19879
|
-webkit-touch-callout: none;
|
|
19181
19880
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
19881
|
+
|
|
19882
|
+
*,
|
|
19883
|
+
*::before,
|
|
19884
|
+
*::after {
|
|
19885
|
+
box-sizing: border-box;
|
|
19886
|
+
}
|
|
19887
|
+
|
|
19888
|
+
[type="checkbox"] {
|
|
19889
|
+
display: none;
|
|
19890
|
+
}
|
|
19891
|
+
|
|
19892
|
+
&[aria-readonly="true"] {
|
|
19893
|
+
pointer-events: none;
|
|
19894
|
+
}
|
|
19182
19895
|
}
|
|
19183
19896
|
|
|
19184
19897
|
|
|
@@ -19700,6 +20413,12 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
19700
20413
|
-webkit-touch-callout: none;
|
|
19701
20414
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
19702
20415
|
|
|
20416
|
+
*,
|
|
20417
|
+
*::before,
|
|
20418
|
+
*::after {
|
|
20419
|
+
box-sizing: border-box;
|
|
20420
|
+
}
|
|
20421
|
+
|
|
19703
20422
|
.k-upload-button {
|
|
19704
20423
|
min-width: 7em;
|
|
19705
20424
|
}
|
|
@@ -19855,7 +20574,6 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
19855
20574
|
border-style: solid;
|
|
19856
20575
|
font-size: ($font-size * .57);
|
|
19857
20576
|
text-transform: uppercase;
|
|
19858
|
-
box-sizing: content-box;
|
|
19859
20577
|
position: absolute;
|
|
19860
20578
|
top: $upload-item-padding-y;
|
|
19861
20579
|
}
|
|
@@ -20331,6 +21049,12 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
|
|
|
20331
21049
|
-webkit-touch-callout: none;
|
|
20332
21050
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
20333
21051
|
|
|
21052
|
+
*,
|
|
21053
|
+
*::before,
|
|
21054
|
+
*::after {
|
|
21055
|
+
box-sizing: border-box;
|
|
21056
|
+
}
|
|
21057
|
+
|
|
20334
21058
|
> * {
|
|
20335
21059
|
flex-shrink: 0;
|
|
20336
21060
|
}
|
|
@@ -20638,6 +21362,12 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
20638
21362
|
cursor: pointer;
|
|
20639
21363
|
outline: none;
|
|
20640
21364
|
|
|
21365
|
+
*,
|
|
21366
|
+
*::before,
|
|
21367
|
+
*::after {
|
|
21368
|
+
box-sizing: border-box;
|
|
21369
|
+
}
|
|
21370
|
+
|
|
20641
21371
|
&:focus {
|
|
20642
21372
|
outline: none;
|
|
20643
21373
|
}
|
|
@@ -20708,717 +21438,201 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
20708
21438
|
&.k-text-right {
|
|
20709
21439
|
flex-direction: row;
|
|
20710
21440
|
|
|
20711
|
-
.k-fab-item-text {
|
|
20712
|
-
margin-right: map-get( $spacing, 2 );
|
|
20713
|
-
}
|
|
20714
|
-
}
|
|
20715
|
-
&.k-text-left {
|
|
20716
|
-
flex-direction: row-reverse;
|
|
20717
|
-
|
|
20718
|
-
.k-fab-item-text {
|
|
20719
|
-
margin-left: map-get( $spacing, 2 );
|
|
20720
|
-
}
|
|
20721
|
-
}
|
|
20722
|
-
}
|
|
20723
|
-
|
|
20724
|
-
.k-fab-item-text {
|
|
20725
|
-
padding: $kendo-fab-item-text-padding-y $kendo-fab-item-text-padding-x;
|
|
20726
|
-
border-width: $kendo-fab-item-text-border-width;
|
|
20727
|
-
border-radius: $kendo-fab-item-text-border-radius;
|
|
20728
|
-
font-size: $kendo-fab-item-text-font-size;
|
|
20729
|
-
line-height: $kendo-fab-item-text-line-height;
|
|
20730
|
-
}
|
|
20731
|
-
|
|
20732
|
-
.k-fab-item-icon {
|
|
20733
|
-
width: $kendo-fab-item-icon-width;
|
|
20734
|
-
height: $kendo-fab-item-icon-height;
|
|
20735
|
-
padding: $kendo-fab-item-icon-padding-y $kendo-fab-item-icon-padding-x;
|
|
20736
|
-
border-width: $kendo-fab-item-icon-border-width;
|
|
20737
|
-
border-radius: $kendo-fab-item-icon-border-radius;
|
|
20738
|
-
box-sizing: content-box;
|
|
20739
|
-
outline: none;
|
|
20740
|
-
}
|
|
20741
|
-
|
|
20742
|
-
}
|
|
20743
|
-
|
|
20744
|
-
@include exports("fab/layout/rtl") {
|
|
20745
|
-
|
|
20746
|
-
.k-rtl .k-fab,
|
|
20747
|
-
.k-fab[dir="rtl"],
|
|
20748
|
-
[dir="rtl"] .k-fab {
|
|
20749
|
-
direction: rtl;
|
|
20750
|
-
|
|
20751
|
-
.k-fab-icon {
|
|
20752
|
-
&:not(:only-child) {
|
|
20753
|
-
margin-right: -$icon-spacing;
|
|
20754
|
-
margin-left: $icon-spacing;
|
|
20755
|
-
}
|
|
20756
|
-
}
|
|
20757
|
-
}
|
|
20758
|
-
|
|
20759
|
-
.k-rtl .k-fab-popup,
|
|
20760
|
-
[dir="rtl"] .k-fab-popup {
|
|
20761
|
-
.k-fab-item.k-text-left {
|
|
20762
|
-
flex-direction: row;
|
|
20763
|
-
}
|
|
20764
|
-
|
|
20765
|
-
.k-fab-item.k-text-right {
|
|
20766
|
-
flex-direction: row-reverse;
|
|
20767
|
-
}
|
|
20768
|
-
}
|
|
20769
|
-
|
|
20770
|
-
}
|
|
20771
|
-
|
|
20772
|
-
|
|
20773
|
-
// #endregion
|
|
20774
|
-
|
|
20775
|
-
// #endregion
|
|
20776
|
-
// #region @import "_theme.scss"; -> packages/classic/scss/fab/_theme.scss
|
|
20777
|
-
// #region @import "~@progress/kendo-theme-default/scss/fab/_theme.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/fab/_theme.scss
|
|
20778
|
-
@include exports( "fab/theme" ) {
|
|
20779
|
-
|
|
20780
|
-
// Normal state
|
|
20781
|
-
@each $name, $color in $kendo-fab-theme-colors {
|
|
20782
|
-
.k-fab-solid-#{$name} {
|
|
20783
|
-
@include box-shadow($kendo-fab-shadow);
|
|
20784
|
-
outline: $kendo-fab-border-width solid $color;
|
|
20785
|
-
outline-offset: -$kendo-fab-border-width;
|
|
20786
|
-
border-color: $color;
|
|
20787
|
-
color: contrast-wcag( $color );
|
|
20788
|
-
background-color: $color;
|
|
20789
|
-
}
|
|
20790
|
-
}
|
|
20791
|
-
|
|
20792
|
-
// Hover state
|
|
20793
|
-
@each $name, $color in $kendo-fab-theme-colors {
|
|
20794
|
-
.k-hover.k-fab-solid-#{$name},
|
|
20795
|
-
.k-fab-solid-#{$name}:hover {
|
|
20796
|
-
border-color: try-shade( $color, .5 );
|
|
20797
|
-
background-color: try-shade( $color, .5 );
|
|
20798
|
-
}
|
|
20799
|
-
}
|
|
20800
|
-
|
|
20801
|
-
// Focus state
|
|
20802
|
-
@each $name, $color in $kendo-fab-theme-colors {
|
|
20803
|
-
.k-fab-solid-#{$name}.k-focus,
|
|
20804
|
-
.k-fab-solid-#{$name}:focus {
|
|
20805
|
-
outline-style: solid;
|
|
20806
|
-
outline-width: 2px;
|
|
20807
|
-
outline-color: rgba( $color, .3 );
|
|
20808
|
-
}
|
|
20809
|
-
}
|
|
20810
|
-
|
|
20811
|
-
// Active state
|
|
20812
|
-
@each $name, $color in $kendo-fab-theme-colors {
|
|
20813
|
-
.k-active.k-fab-solid-#{$name},
|
|
20814
|
-
.k-selected.k-fab-solid-#{$name},
|
|
20815
|
-
.k-fab-solid-#{$name}:active {
|
|
20816
|
-
@include box-shadow($kendo-fab-active-shadow);
|
|
20817
|
-
border-color: try-shade( $color, 1.5);
|
|
20818
|
-
background-color: try-shade( $color, 1.5);
|
|
20819
|
-
}
|
|
20820
|
-
}
|
|
20821
|
-
|
|
20822
|
-
// Disabled state
|
|
20823
|
-
@each $name, $color in $kendo-fab-theme-colors {
|
|
20824
|
-
.k-disabled.k-fab-solid-#{$name},
|
|
20825
|
-
.k-fab-solid-#{$name}:disabled {
|
|
20826
|
-
@include box-shadow($kendo-fab-disabled-shadow);
|
|
20827
|
-
background-color: try-tint( $color, 5 );
|
|
20828
|
-
color: try-tint( contrast-wcag( $color ), 5 );
|
|
20829
|
-
opacity: 1;
|
|
20830
|
-
}
|
|
20831
|
-
}
|
|
20832
|
-
|
|
20833
|
-
// Items
|
|
20834
|
-
.k-fab-item-text {
|
|
20835
|
-
@include fill(
|
|
20836
|
-
$kendo-fab-item-text,
|
|
20837
|
-
$kendo-fab-item-bg,
|
|
20838
|
-
$kendo-fab-item-border
|
|
20839
|
-
);
|
|
20840
|
-
@include box-shadow($kendo-fab-item-shadow);
|
|
20841
|
-
|
|
20842
|
-
}
|
|
20843
|
-
.k-fab-item-icon {
|
|
20844
|
-
@include fill(
|
|
20845
|
-
$kendo-fab-item-icon-text,
|
|
20846
|
-
$kendo-fab-item-icon-bg,
|
|
20847
|
-
$kendo-fab-item-icon-border
|
|
20848
|
-
);
|
|
20849
|
-
@include box-shadow($kendo-fab-item-shadow);
|
|
20850
|
-
outline: $kendo-fab-border-width solid rgba(0, 0, 0, .08);
|
|
20851
|
-
outline-offset: -$kendo-fab-border-width;
|
|
20852
|
-
}
|
|
20853
|
-
|
|
20854
|
-
// Hover state
|
|
20855
|
-
.k-fab-item.k-hover .k-fab-item-icon,
|
|
20856
|
-
.k-fab-item:hover .k-fab-item-icon {
|
|
20857
|
-
border-color: try-shade( $kendo-fab-item-icon-border, .5 );
|
|
20858
|
-
background-color: try-shade( $kendo-fab-item-icon-bg, .5 );
|
|
20859
|
-
}
|
|
20860
|
-
|
|
20861
|
-
// Focus state
|
|
20862
|
-
.k-fab-item:focus .k-fab-item-text,
|
|
20863
|
-
.k-fab-item:focus .k-fab-item-icon,
|
|
20864
|
-
.k-fab-item.k-focus .k-fab-item-text,
|
|
20865
|
-
.k-fab-item.k-focus .k-fab-item-icon {
|
|
20866
|
-
outline-style: solid;
|
|
20867
|
-
outline-width: 2px;
|
|
20868
|
-
outline-color: rgba(0, 0, 0, .08);
|
|
20869
|
-
}
|
|
20870
|
-
|
|
20871
|
-
// Active state
|
|
20872
|
-
.k-fab-item.k-active .k-fab-item-icon,
|
|
20873
|
-
.k-fab-item:active .k-fab-item-icon {
|
|
20874
|
-
@include box-shadow($kendo-fab-item-active-shadow);
|
|
20875
|
-
border-color: try-shade( $kendo-fab-item-icon-border, 1);
|
|
20876
|
-
background-color: try-shade( $kendo-fab-item-icon-bg, 1);
|
|
20877
|
-
}
|
|
20878
|
-
|
|
20879
|
-
// Disabled state
|
|
20880
|
-
.k-fab-item.k-disabled,
|
|
20881
|
-
.k-fab-item:disabled {
|
|
20882
|
-
opacity: 1;
|
|
20883
|
-
|
|
20884
|
-
.k-fab-item-text,
|
|
20885
|
-
.k-fab-item-icon {
|
|
20886
|
-
@include box-shadow($kendo-fab-item-disabled-shadow);
|
|
20887
|
-
background-color: try-tint( $kendo-fab-item-bg, 5 );
|
|
20888
|
-
color: try-tint( $kendo-fab-item-text, 5 );
|
|
20889
|
-
}
|
|
20890
|
-
}
|
|
20891
|
-
|
|
20892
|
-
// Popup
|
|
20893
|
-
.k-animation-container > .k-fab-popup {
|
|
20894
|
-
@include box-shadow( none );
|
|
20895
|
-
}
|
|
20896
|
-
|
|
20897
|
-
}
|
|
20898
|
-
|
|
20899
|
-
// #endregion
|
|
20900
|
-
|
|
20901
|
-
// #endregion
|
|
20902
|
-
|
|
20903
|
-
// #endregion
|
|
20904
|
-
// #region @import "menu/_index.scss"; -> packages/classic/scss/menu/_index.scss
|
|
20905
|
-
// #region @import "../core/_index.scss"; -> packages/classic/scss/core/_index.scss
|
|
20906
|
-
// File already imported_once. Skipping output.
|
|
20907
|
-
// #endregion
|
|
20908
|
-
|
|
20909
|
-
|
|
20910
|
-
// Dependencies
|
|
20911
|
-
// #region @import "../common/_index.scss"; -> packages/classic/scss/common/_index.scss
|
|
20912
|
-
// File already imported_once. Skipping output.
|
|
20913
|
-
// #endregion
|
|
20914
|
-
// #region @import "../popup/_index.scss"; -> packages/classic/scss/popup/_index.scss
|
|
20915
|
-
// File already imported_once. Skipping output.
|
|
20916
|
-
// #endregion
|
|
20917
|
-
// #region @import "../list/_index.scss"; -> packages/classic/scss/list/_index.scss
|
|
20918
|
-
// File already imported_once. Skipping output.
|
|
20919
|
-
// #endregion
|
|
20920
|
-
// #region @import "../icons/_index.scss"; -> packages/classic/scss/icons/_index.scss
|
|
20921
|
-
// File already imported_once. Skipping output.
|
|
20922
|
-
// #endregion
|
|
20923
|
-
// #region @import "../list/_index.scss"; -> packages/classic/scss/list/_index.scss
|
|
20924
|
-
// File already imported_once. Skipping output.
|
|
20925
|
-
// #endregion
|
|
20926
|
-
|
|
20927
|
-
|
|
20928
|
-
// Component
|
|
20929
|
-
// #region @import "_variables.scss"; -> packages/classic/scss/menu/_variables.scss
|
|
20930
|
-
// File already imported_once. Skipping output.
|
|
20931
|
-
// #endregion
|
|
20932
|
-
// #region @import "_layout.scss"; -> packages/classic/scss/menu/_layout.scss
|
|
20933
|
-
// #region @import "~@progress/kendo-theme-default/scss/menu/_layout.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/menu/_layout.scss
|
|
20934
|
-
@include exports("menu/layout") {
|
|
20935
|
-
|
|
20936
|
-
// Base
|
|
20937
|
-
.k-menu {
|
|
20938
|
-
border-width: $menu-border-width;
|
|
20939
|
-
border-style: solid;
|
|
20940
|
-
box-sizing: border-box;
|
|
20941
|
-
outline: 0;
|
|
20942
|
-
font-family: $menu-font-family;
|
|
20943
|
-
font-size: $menu-font-size;
|
|
20944
|
-
line-height: $menu-line-height;
|
|
20945
|
-
display: flex;
|
|
20946
|
-
flex-wrap: wrap;
|
|
20947
|
-
align-items: stretch;
|
|
20948
|
-
position: relative;
|
|
20949
|
-
cursor: default;
|
|
20950
|
-
-webkit-touch-callout: none;
|
|
20951
|
-
-webkit-tap-highlight-color: $rgba-transparent;
|
|
20952
|
-
}
|
|
20953
|
-
|
|
20954
|
-
|
|
20955
|
-
// Menu item
|
|
20956
|
-
.k-menu-item {
|
|
20957
|
-
box-sizing: border-box;
|
|
20958
|
-
border-width: 0;
|
|
20959
|
-
outline: 0;
|
|
20960
|
-
display: flex;
|
|
20961
|
-
flex-flow: column nowrap;
|
|
20962
|
-
flex: none;
|
|
20963
|
-
position: relative;
|
|
20964
|
-
user-select: none;
|
|
20965
|
-
}
|
|
20966
|
-
|
|
20967
|
-
.k-menu-item-content {
|
|
20968
|
-
display: block;
|
|
20969
|
-
height: auto;
|
|
20970
|
-
overflow: visible;
|
|
20971
|
-
|
|
20972
|
-
.k-actions {
|
|
20973
|
-
margin-top: 0;
|
|
20974
|
-
}
|
|
20975
|
-
}
|
|
20976
|
-
|
|
20977
|
-
|
|
20978
|
-
// Menu link
|
|
20979
|
-
.k-menu-link {
|
|
20980
|
-
padding: $menu-item-padding-y $menu-item-padding-x;
|
|
20981
|
-
outline: 0;
|
|
20982
|
-
color: inherit;
|
|
20983
|
-
display: flex;
|
|
20984
|
-
flex-flow: row nowrap;
|
|
20985
|
-
flex: 1 1 auto;
|
|
20986
|
-
gap: $menu-item-icon-spacing;
|
|
20987
|
-
align-items: center;
|
|
20988
|
-
position: relative;
|
|
20989
|
-
white-space: nowrap;
|
|
20990
|
-
cursor: pointer;
|
|
20991
|
-
}
|
|
20992
|
-
|
|
20993
|
-
|
|
20994
|
-
// Menu item text
|
|
20995
|
-
.k-menu-link-text {
|
|
20996
|
-
display: flex;
|
|
20997
|
-
flex-flow: row nowrap;
|
|
20998
|
-
flex: 1 1 auto;
|
|
20999
|
-
overflow: hidden;
|
|
21000
|
-
text-overflow: ellipsis;
|
|
21001
|
-
}
|
|
21002
|
-
|
|
21003
|
-
|
|
21004
|
-
// Expand arrow
|
|
21005
|
-
.k-menu-expand-arrow {
|
|
21006
|
-
margin-inline-end: -$icon-spacing;
|
|
21007
|
-
display: inline-flex;
|
|
21008
|
-
flex-flow: row wrap;
|
|
21009
|
-
align-items: center;
|
|
21010
|
-
flex: none;
|
|
21011
|
-
position: relative;
|
|
21012
|
-
}
|
|
21013
|
-
|
|
21014
|
-
|
|
21015
|
-
// Orientation -- horizontal
|
|
21016
|
-
.k-menu-horizontal {
|
|
21017
|
-
flex-direction: row;
|
|
21018
|
-
|
|
21019
|
-
> .k-menu-item + .k-menu-item {
|
|
21020
|
-
margin-left: $menu-item-spacing;
|
|
21021
|
-
}
|
|
21022
|
-
|
|
21023
|
-
> .k-separator {
|
|
21024
|
-
margin: 0 $menu-separator-spacing;
|
|
21025
|
-
width: 0;
|
|
21026
|
-
height: auto;
|
|
21027
|
-
border-width: 0 0 0 1px;
|
|
21028
|
-
border-style: solid;
|
|
21029
|
-
}
|
|
21030
|
-
}
|
|
21031
|
-
|
|
21032
|
-
|
|
21033
|
-
// Orientation -- vertical
|
|
21034
|
-
.k-menu-vertical {
|
|
21035
|
-
flex-direction: column;
|
|
21036
|
-
|
|
21037
|
-
> .k-menu-item + .k-menu-item {
|
|
21038
|
-
margin-top: $menu-item-spacing;
|
|
21039
|
-
}
|
|
21040
|
-
|
|
21041
|
-
> .k-menu-item > .k-menu-link {
|
|
21042
|
-
padding: $kendo-menu-popup-item-padding-y $kendo-menu-popup-item-padding-x;
|
|
21043
|
-
padding-right: $kendo-menu-popup-item-padding-end;
|
|
21044
|
-
}
|
|
21045
|
-
|
|
21046
|
-
.k-menu-expand-arrow {
|
|
21047
|
-
margin: 0;
|
|
21048
|
-
position: absolute;
|
|
21049
|
-
top: 50%;
|
|
21050
|
-
transform: translateY(-50%);
|
|
21051
|
-
right: $icon-spacing;
|
|
21052
|
-
}
|
|
21053
|
-
|
|
21054
|
-
> .k-separator {
|
|
21055
|
-
margin: $menu-separator-spacing 0;
|
|
21056
|
-
height: 0;
|
|
21057
|
-
border-width: 1px 0 0;
|
|
21058
|
-
border-style: solid;
|
|
21059
|
-
border-color: $panel-border;
|
|
21060
|
-
display: block;
|
|
21061
|
-
}
|
|
21062
|
-
}
|
|
21063
|
-
|
|
21064
|
-
|
|
21065
|
-
// Menu popup
|
|
21066
|
-
.k-menu-popup {
|
|
21067
|
-
border-width: $kendo-menu-popup-border-width;
|
|
21068
|
-
border-style: solid;
|
|
21069
|
-
overflow: auto;
|
|
21070
|
-
max-height: 80vh;
|
|
21071
|
-
}
|
|
21072
|
-
|
|
21073
|
-
|
|
21074
|
-
// Sub menu
|
|
21075
|
-
.k-menu-group {
|
|
21076
|
-
margin: 0;
|
|
21077
|
-
padding: $kendo-menu-popup-padding-y $kendo-menu-popup-padding-x;
|
|
21078
|
-
list-style: none;
|
|
21079
|
-
display: none;
|
|
21080
|
-
position: absolute;
|
|
21081
|
-
|
|
21082
|
-
.k-menu-popup & {
|
|
21083
|
-
position: relative;
|
|
21084
|
-
display: flex;
|
|
21085
|
-
flex-direction: column;
|
|
21086
|
-
}
|
|
21087
|
-
|
|
21088
|
-
.k-menu-item + .k-menu-item {
|
|
21089
|
-
margin-top: $kendo-menu-popup-item-spacing;
|
|
21090
|
-
}
|
|
21091
|
-
|
|
21092
|
-
.k-menu-expand-arrow {
|
|
21093
|
-
margin: 0;
|
|
21094
|
-
position: absolute;
|
|
21095
|
-
top: 50%;
|
|
21096
|
-
transform: translateY(-50%);
|
|
21097
|
-
right: $icon-spacing;
|
|
21098
|
-
}
|
|
21099
|
-
|
|
21100
|
-
.k-separator {
|
|
21101
|
-
margin: $menu-separator-spacing 0;
|
|
21102
|
-
height: 0;
|
|
21103
|
-
border-width: 1px 0 0;
|
|
21104
|
-
border-style: solid;
|
|
21105
|
-
border-color: $component-border;
|
|
21106
|
-
display: block;
|
|
21107
|
-
}
|
|
21108
|
-
}
|
|
21109
|
-
|
|
21110
|
-
// Sizes
|
|
21111
|
-
.k-menu-group-sm {
|
|
21112
|
-
font-size: $kendo-menu-popup-font-size-sm;
|
|
21113
|
-
line-height: $kendo-menu-popup-line-height-sm;
|
|
21114
|
-
|
|
21115
|
-
// jquery popup overrides those
|
|
21116
|
-
.k-menu-item {
|
|
21117
|
-
font-size: $kendo-menu-popup-font-size-sm;
|
|
21118
|
-
line-height: $kendo-menu-popup-line-height-sm;
|
|
21119
|
-
}
|
|
21120
|
-
|
|
21121
|
-
.k-menu-link {
|
|
21122
|
-
padding: $kendo-menu-popup-item-padding-y-sm $kendo-menu-popup-item-padding-x-sm;
|
|
21123
|
-
padding-inline-end: $kendo-menu-popup-item-padding-end-sm;
|
|
21124
|
-
}
|
|
21125
|
-
|
|
21126
|
-
.k-menu-expand-arrow {
|
|
21127
|
-
margin-inline-start: $kendo-menu-popup-item-icon-margin-start-sm;
|
|
21128
|
-
margin-inline-end: $kendo-menu-popup-item-icon-margin-end-sm;
|
|
21129
|
-
}
|
|
21130
|
-
}
|
|
21131
|
-
.k-menu-group-md {
|
|
21132
|
-
font-size: $kendo-menu-popup-font-size-md;
|
|
21133
|
-
line-height: $kendo-menu-popup-line-height-md;
|
|
21134
|
-
|
|
21135
|
-
// jquery popup overrides those
|
|
21136
|
-
.k-menu-item {
|
|
21137
|
-
font-size: $kendo-menu-popup-font-size-md;
|
|
21138
|
-
line-height: $kendo-menu-popup-line-height-md;
|
|
21139
|
-
}
|
|
21140
|
-
|
|
21141
|
-
.k-menu-link {
|
|
21142
|
-
padding: $kendo-menu-popup-item-padding-y-md $kendo-menu-popup-item-padding-x-md;
|
|
21143
|
-
padding-inline-end: $kendo-menu-popup-item-padding-end-md;
|
|
21144
|
-
}
|
|
21145
|
-
|
|
21146
|
-
.k-menu-expand-arrow {
|
|
21147
|
-
margin-inline-start: $kendo-menu-popup-item-icon-margin-start;
|
|
21148
|
-
margin-inline-end: $kendo-menu-popup-item-icon-margin-end;
|
|
21149
|
-
}
|
|
21150
|
-
}
|
|
21151
|
-
.k-menu-group-lg {
|
|
21152
|
-
font-size: $kendo-menu-popup-font-size-lg;
|
|
21153
|
-
line-height: $kendo-menu-popup-line-height-lg;
|
|
21154
|
-
|
|
21155
|
-
// jquery popup overrides those
|
|
21156
|
-
.k-menu-item {
|
|
21157
|
-
font-size: $kendo-menu-popup-font-size-lg;
|
|
21158
|
-
line-height: $kendo-menu-popup-line-height-lg;
|
|
21159
|
-
}
|
|
21160
|
-
|
|
21161
|
-
.k-menu-link {
|
|
21162
|
-
padding: $kendo-menu-popup-item-padding-y-lg $kendo-menu-popup-item-padding-x-lg;
|
|
21163
|
-
padding-inline-end: $kendo-menu-popup-item-padding-end-lg;
|
|
21164
|
-
}
|
|
21165
|
-
|
|
21166
|
-
.k-menu-expand-arrow {
|
|
21167
|
-
margin-inline-start: $kendo-menu-popup-item-icon-margin-start-lg;
|
|
21168
|
-
margin-inline-end: $kendo-menu-popup-item-icon-margin-end-lg;
|
|
21169
|
-
}
|
|
21170
|
-
}
|
|
21171
|
-
|
|
21172
|
-
|
|
21173
|
-
// Context menu
|
|
21174
|
-
.k-popups-wrapper {
|
|
21175
|
-
position: relative;
|
|
21176
|
-
border: 0;
|
|
21177
|
-
margin: 0;
|
|
21178
|
-
padding: 0;
|
|
21179
|
-
}
|
|
21180
|
-
.k-context-menu {
|
|
21181
|
-
margin: 0;
|
|
21182
|
-
padding: $kendo-menu-popup-padding-y $kendo-menu-popup-padding-x;
|
|
21183
|
-
border-width: $kendo-menu-popup-border-width;
|
|
21184
|
-
border-style: solid;
|
|
21185
|
-
|
|
21186
|
-
&.k-menu-horizontal {
|
|
21187
|
-
padding: $kendo-menu-popup-padding-x $kendo-menu-popup-padding-y;
|
|
21188
|
-
}
|
|
21189
|
-
}
|
|
21190
|
-
.k-animation-container .k-context-menu.k-menu-horizontal {
|
|
21191
|
-
// kendo-jquery adds `display: block` via js and we need to override it.
|
|
21192
|
-
display: flex !important; // sass-lint:disable-line no-important
|
|
21193
|
-
flex-wrap: nowrap;
|
|
21194
|
-
}
|
|
21195
|
-
.k-context-menu-popup {
|
|
21196
|
-
z-index: 12000;
|
|
21197
|
-
|
|
21198
|
-
.k-context-menu {
|
|
21199
|
-
border-width: 0;
|
|
21200
|
-
}
|
|
21201
|
-
}
|
|
21202
|
-
.k-popup .k-context-menu,
|
|
21203
|
-
.k-context-menu-popup .k-context-menu {
|
|
21204
|
-
border-width: 0;
|
|
21205
|
-
}
|
|
21206
|
-
|
|
21207
|
-
|
|
21208
|
-
// Scrolling
|
|
21209
|
-
.k-menu-scroll-wrapper {
|
|
21210
|
-
margin: 0;
|
|
21211
|
-
padding: 0;
|
|
21212
|
-
border: 0;
|
|
21213
|
-
position: relative;
|
|
21214
|
-
|
|
21215
|
-
.k-menu {
|
|
21216
|
-
overflow: hidden;
|
|
21217
|
-
flex-wrap: nowrap;
|
|
21218
|
-
}
|
|
21219
|
-
}
|
|
21220
|
-
.k-menu-scroll-button {
|
|
21221
|
-
@include border-radius( 0 );
|
|
21222
|
-
padding: 0;
|
|
21223
|
-
border-width: 0;
|
|
21224
|
-
border-color: inherit;
|
|
21225
|
-
color: inherit;
|
|
21226
|
-
background: inherit;
|
|
21227
|
-
position: absolute;
|
|
21228
|
-
|
|
21229
|
-
&.k-scroll-left {
|
|
21230
|
-
top: 0;
|
|
21231
|
-
left: 0;
|
|
21232
|
-
height: 100%;
|
|
21233
|
-
width: 16px;
|
|
21234
|
-
border-right-width: 1px;
|
|
21235
|
-
}
|
|
21236
|
-
&.k-scroll-right {
|
|
21237
|
-
top: 0;
|
|
21238
|
-
right: 0;
|
|
21239
|
-
height: 100%;
|
|
21240
|
-
width: 16px;
|
|
21241
|
-
border-left-width: 1px;
|
|
21242
|
-
}
|
|
21243
|
-
&.k-scroll-up {
|
|
21244
|
-
top: 0;
|
|
21245
|
-
left: 0;
|
|
21246
|
-
width: 100%;
|
|
21247
|
-
height: 16px;
|
|
21248
|
-
border-bottom-width: 1px;
|
|
21249
|
-
}
|
|
21250
|
-
&.k-scroll-down {
|
|
21251
|
-
bottom: 0;
|
|
21252
|
-
left: 0;
|
|
21253
|
-
width: 100%;
|
|
21254
|
-
height: 16px;
|
|
21255
|
-
border-top-width: 1px;
|
|
21256
|
-
}
|
|
21257
|
-
}
|
|
21258
|
-
|
|
21259
|
-
|
|
21260
|
-
// RTL
|
|
21261
|
-
.k-rtl,
|
|
21262
|
-
[dir="rtl"] {
|
|
21263
|
-
|
|
21264
|
-
// Orientation -- horizontal
|
|
21265
|
-
.k-menu-horizontal {
|
|
21266
|
-
|
|
21267
|
-
> .k-menu-item + .k-menu-item {
|
|
21268
|
-
margin-right: $menu-item-spacing;
|
|
21269
|
-
margin-left: 0;
|
|
21441
|
+
.k-fab-item-text {
|
|
21442
|
+
margin-right: map-get( $spacing, 2 );
|
|
21270
21443
|
}
|
|
21271
21444
|
}
|
|
21445
|
+
&.k-text-left {
|
|
21446
|
+
flex-direction: row-reverse;
|
|
21272
21447
|
|
|
21273
|
-
|
|
21274
|
-
|
|
21275
|
-
.k-menu-vertical {
|
|
21276
|
-
|
|
21277
|
-
> .k-menu-item > .k-menu-link {
|
|
21278
|
-
padding-right: $kendo-menu-popup-item-padding-x;
|
|
21279
|
-
padding-left: $kendo-menu-popup-item-padding-end;
|
|
21448
|
+
.k-fab-item-text {
|
|
21449
|
+
margin-left: map-get( $spacing, 2 );
|
|
21280
21450
|
}
|
|
21281
21451
|
}
|
|
21452
|
+
}
|
|
21282
21453
|
|
|
21454
|
+
.k-fab-item-text {
|
|
21455
|
+
padding: $kendo-fab-item-text-padding-y $kendo-fab-item-text-padding-x;
|
|
21456
|
+
border-width: $kendo-fab-item-text-border-width;
|
|
21457
|
+
border-radius: $kendo-fab-item-text-border-radius;
|
|
21458
|
+
font-size: $kendo-fab-item-text-font-size;
|
|
21459
|
+
line-height: $kendo-fab-item-text-line-height;
|
|
21460
|
+
}
|
|
21283
21461
|
|
|
21284
|
-
|
|
21285
|
-
|
|
21462
|
+
.k-fab-item-icon {
|
|
21463
|
+
width: $kendo-fab-item-icon-width;
|
|
21464
|
+
height: $kendo-fab-item-icon-height;
|
|
21465
|
+
padding: $kendo-fab-item-icon-padding-y $kendo-fab-item-icon-padding-x;
|
|
21466
|
+
border-width: $kendo-fab-item-icon-border-width;
|
|
21467
|
+
border-radius: $kendo-fab-item-icon-border-radius;
|
|
21468
|
+
box-sizing: content-box;
|
|
21469
|
+
outline: none;
|
|
21470
|
+
}
|
|
21286
21471
|
|
|
21287
|
-
|
|
21288
|
-
|
|
21289
|
-
|
|
21472
|
+
}
|
|
21473
|
+
|
|
21474
|
+
@include exports("fab/layout/rtl") {
|
|
21475
|
+
|
|
21476
|
+
.k-rtl .k-fab,
|
|
21477
|
+
.k-fab[dir="rtl"],
|
|
21478
|
+
[dir="rtl"] .k-fab {
|
|
21479
|
+
direction: rtl;
|
|
21480
|
+
|
|
21481
|
+
.k-fab-icon {
|
|
21482
|
+
&:not(:only-child) {
|
|
21483
|
+
margin-right: -$icon-spacing;
|
|
21484
|
+
margin-left: $icon-spacing;
|
|
21290
21485
|
}
|
|
21486
|
+
}
|
|
21487
|
+
}
|
|
21291
21488
|
|
|
21489
|
+
.k-rtl .k-fab-popup,
|
|
21490
|
+
[dir="rtl"] .k-fab-popup {
|
|
21491
|
+
.k-fab-item.k-text-left {
|
|
21492
|
+
flex-direction: row;
|
|
21292
21493
|
}
|
|
21293
21494
|
|
|
21495
|
+
.k-fab-item.k-text-right {
|
|
21496
|
+
flex-direction: row-reverse;
|
|
21497
|
+
}
|
|
21294
21498
|
}
|
|
21295
21499
|
|
|
21296
21500
|
}
|
|
21297
21501
|
|
|
21502
|
+
|
|
21298
21503
|
// #endregion
|
|
21299
21504
|
|
|
21300
21505
|
// #endregion
|
|
21301
|
-
// #region @import "_theme.scss"; -> packages/classic/scss/
|
|
21302
|
-
// #region @import "~@progress/kendo-theme-default/scss/
|
|
21303
|
-
@include exports("
|
|
21506
|
+
// #region @import "_theme.scss"; -> packages/classic/scss/fab/_theme.scss
|
|
21507
|
+
// #region @import "~@progress/kendo-theme-default/scss/fab/_theme.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/fab/_theme.scss
|
|
21508
|
+
@include exports( "fab/theme" ) {
|
|
21304
21509
|
|
|
21305
|
-
|
|
21306
|
-
|
|
21307
|
-
|
|
21308
|
-
$
|
|
21309
|
-
$
|
|
21310
|
-
|
|
21311
|
-
|
|
21510
|
+
// Normal state
|
|
21511
|
+
@each $name, $color in $kendo-fab-theme-colors {
|
|
21512
|
+
.k-fab-solid-#{$name} {
|
|
21513
|
+
@include box-shadow($kendo-fab-shadow);
|
|
21514
|
+
outline: $kendo-fab-border-width solid $color;
|
|
21515
|
+
outline-offset: -$kendo-fab-border-width;
|
|
21516
|
+
border-color: $color;
|
|
21517
|
+
color: contrast-wcag( $color );
|
|
21518
|
+
background-color: $color;
|
|
21519
|
+
}
|
|
21520
|
+
}
|
|
21312
21521
|
|
|
21313
|
-
|
|
21314
|
-
|
|
21315
|
-
|
|
21316
|
-
|
|
21317
|
-
|
|
21318
|
-
|
|
21319
|
-
|
|
21522
|
+
// Hover state
|
|
21523
|
+
@each $name, $color in $kendo-fab-theme-colors {
|
|
21524
|
+
.k-hover.k-fab-solid-#{$name},
|
|
21525
|
+
.k-fab-solid-#{$name}:hover {
|
|
21526
|
+
border-color: try-shade( $color, .5 );
|
|
21527
|
+
background-color: try-shade( $color, .5 );
|
|
21528
|
+
}
|
|
21529
|
+
}
|
|
21320
21530
|
|
|
21321
|
-
|
|
21322
|
-
|
|
21323
|
-
|
|
21324
|
-
|
|
21325
|
-
|
|
21326
|
-
|
|
21327
|
-
|
|
21328
|
-
|
|
21329
|
-
|
|
21531
|
+
// Focus state
|
|
21532
|
+
@each $name, $color in $kendo-fab-theme-colors {
|
|
21533
|
+
.k-fab-solid-#{$name}.k-focus,
|
|
21534
|
+
.k-fab-solid-#{$name}:focus {
|
|
21535
|
+
outline-style: solid;
|
|
21536
|
+
outline-width: 2px;
|
|
21537
|
+
outline-color: rgba( $color, .3 );
|
|
21538
|
+
}
|
|
21539
|
+
}
|
|
21330
21540
|
|
|
21331
|
-
|
|
21332
|
-
|
|
21333
|
-
|
|
21334
|
-
|
|
21335
|
-
|
|
21336
|
-
|
|
21337
|
-
|
|
21338
|
-
|
|
21339
|
-
|
|
21541
|
+
// Active state
|
|
21542
|
+
@each $name, $color in $kendo-fab-theme-colors {
|
|
21543
|
+
.k-active.k-fab-solid-#{$name},
|
|
21544
|
+
.k-selected.k-fab-solid-#{$name},
|
|
21545
|
+
.k-fab-solid-#{$name}:active {
|
|
21546
|
+
@include box-shadow($kendo-fab-active-shadow);
|
|
21547
|
+
border-color: try-shade( $color, 1.5);
|
|
21548
|
+
background-color: try-shade( $color, 1.5);
|
|
21549
|
+
}
|
|
21550
|
+
}
|
|
21340
21551
|
|
|
21341
|
-
|
|
21342
|
-
|
|
21343
|
-
|
|
21344
|
-
|
|
21552
|
+
// Disabled state
|
|
21553
|
+
@each $name, $color in $kendo-fab-theme-colors {
|
|
21554
|
+
.k-disabled.k-fab-solid-#{$name},
|
|
21555
|
+
.k-fab-solid-#{$name}:disabled {
|
|
21556
|
+
@include box-shadow($kendo-fab-disabled-shadow);
|
|
21557
|
+
background-color: try-tint( $color, 5 );
|
|
21558
|
+
color: try-tint( contrast-wcag( $color ), 5 );
|
|
21559
|
+
opacity: 1;
|
|
21345
21560
|
}
|
|
21346
21561
|
}
|
|
21347
21562
|
|
|
21348
|
-
|
|
21349
|
-
.k-
|
|
21563
|
+
// Items
|
|
21564
|
+
.k-fab-item-text {
|
|
21350
21565
|
@include fill(
|
|
21351
|
-
$kendo-
|
|
21352
|
-
$kendo-
|
|
21353
|
-
$kendo-
|
|
21354
|
-
$kendo-menu-popup-gradient
|
|
21566
|
+
$kendo-fab-item-text,
|
|
21567
|
+
$kendo-fab-item-bg,
|
|
21568
|
+
$kendo-fab-item-border
|
|
21355
21569
|
);
|
|
21570
|
+
@include box-shadow($kendo-fab-item-shadow);
|
|
21356
21571
|
|
|
21357
|
-
|
|
21358
|
-
|
|
21359
|
-
|
|
21360
|
-
|
|
21361
|
-
|
|
21362
|
-
|
|
21363
|
-
|
|
21364
|
-
|
|
21365
|
-
|
|
21366
|
-
|
|
21367
|
-
|
|
21368
|
-
$kendo-menu-popup-item-hover-text,
|
|
21369
|
-
$kendo-menu-popup-item-hover-bg,
|
|
21370
|
-
$kendo-menu-popup-item-hover-border,
|
|
21371
|
-
$kendo-menu-popup-item-hover-gradient
|
|
21372
|
-
);
|
|
21373
|
-
}
|
|
21374
|
-
|
|
21375
|
-
&:active,
|
|
21376
|
-
&.k-active,
|
|
21377
|
-
&.k-selected {
|
|
21378
|
-
@include fill(
|
|
21379
|
-
$kendo-menu-popup-item-expanded-text,
|
|
21380
|
-
$kendo-menu-popup-item-expanded-bg,
|
|
21381
|
-
$kendo-menu-popup-item-expanded-border,
|
|
21382
|
-
$kendo-menu-popup-item-expanded-gradient
|
|
21383
|
-
);
|
|
21384
|
-
}
|
|
21572
|
+
}
|
|
21573
|
+
.k-fab-item-icon {
|
|
21574
|
+
@include fill(
|
|
21575
|
+
$kendo-fab-item-icon-text,
|
|
21576
|
+
$kendo-fab-item-icon-bg,
|
|
21577
|
+
$kendo-fab-item-icon-border
|
|
21578
|
+
);
|
|
21579
|
+
@include box-shadow($kendo-fab-item-shadow);
|
|
21580
|
+
outline: $kendo-fab-border-width solid rgba(0, 0, 0, .08);
|
|
21581
|
+
outline-offset: -$kendo-fab-border-width;
|
|
21582
|
+
}
|
|
21385
21583
|
|
|
21386
|
-
|
|
21387
|
-
|
|
21388
|
-
|
|
21389
|
-
|
|
21390
|
-
|
|
21584
|
+
// Hover state
|
|
21585
|
+
.k-fab-item.k-hover .k-fab-item-icon,
|
|
21586
|
+
.k-fab-item:hover .k-fab-item-icon {
|
|
21587
|
+
border-color: try-shade( $kendo-fab-item-icon-border, .5 );
|
|
21588
|
+
background-color: try-shade( $kendo-fab-item-icon-bg, .5 );
|
|
21391
21589
|
}
|
|
21392
21590
|
|
|
21591
|
+
// Focus state
|
|
21592
|
+
.k-fab-item:focus .k-fab-item-text,
|
|
21593
|
+
.k-fab-item:focus .k-fab-item-icon,
|
|
21594
|
+
.k-fab-item.k-focus .k-fab-item-text,
|
|
21595
|
+
.k-fab-item.k-focus .k-fab-item-icon {
|
|
21596
|
+
outline-style: solid;
|
|
21597
|
+
outline-width: 2px;
|
|
21598
|
+
outline-color: rgba(0, 0, 0, .08);
|
|
21599
|
+
}
|
|
21393
21600
|
|
|
21394
|
-
//
|
|
21395
|
-
.k-
|
|
21396
|
-
|
|
21397
|
-
|
|
21398
|
-
|
|
21399
|
-
|
|
21400
|
-
|
|
21401
|
-
);
|
|
21601
|
+
// Active state
|
|
21602
|
+
.k-fab-item.k-active .k-fab-item-icon,
|
|
21603
|
+
.k-fab-item:active .k-fab-item-icon {
|
|
21604
|
+
@include box-shadow($kendo-fab-item-active-shadow);
|
|
21605
|
+
border-color: try-shade( $kendo-fab-item-icon-border, 1);
|
|
21606
|
+
background-color: try-shade( $kendo-fab-item-icon-bg, 1);
|
|
21607
|
+
}
|
|
21402
21608
|
|
|
21403
|
-
|
|
21404
|
-
|
|
21405
|
-
|
|
21406
|
-
|
|
21407
|
-
$menu-scroll-button-hover-border,
|
|
21408
|
-
$menu-scroll-button-hover-gradient
|
|
21409
|
-
);
|
|
21609
|
+
// Disabled state
|
|
21610
|
+
.k-fab-item.k-disabled,
|
|
21611
|
+
.k-fab-item:disabled {
|
|
21612
|
+
opacity: 1;
|
|
21410
21613
|
|
|
21411
|
-
|
|
21412
|
-
|
|
21413
|
-
|
|
21614
|
+
.k-fab-item-text,
|
|
21615
|
+
.k-fab-item-icon {
|
|
21616
|
+
@include box-shadow($kendo-fab-item-disabled-shadow);
|
|
21617
|
+
background-color: try-tint( $kendo-fab-item-bg, 5 );
|
|
21618
|
+
color: try-tint( $kendo-fab-item-text, 5 );
|
|
21414
21619
|
}
|
|
21415
21620
|
}
|
|
21621
|
+
|
|
21622
|
+
// Popup
|
|
21623
|
+
.k-animation-container > .k-fab-popup {
|
|
21624
|
+
@include box-shadow( none );
|
|
21625
|
+
}
|
|
21626
|
+
|
|
21416
21627
|
}
|
|
21417
21628
|
|
|
21418
21629
|
// #endregion
|
|
21419
21630
|
|
|
21420
21631
|
// #endregion
|
|
21421
21632
|
|
|
21633
|
+
// #endregion
|
|
21634
|
+
// #region @import "menu/_index.scss"; -> packages/classic/scss/menu/_index.scss
|
|
21635
|
+
// File already imported_once. Skipping output.
|
|
21422
21636
|
// #endregion
|
|
21423
21637
|
// #region @import "toolbar/_index.scss"; -> packages/classic/scss/toolbar/_index.scss
|
|
21424
21638
|
// File already imported_once. Skipping output.
|
|
@@ -21551,6 +21765,12 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
21551
21765
|
overflow-y: auto;
|
|
21552
21766
|
position: fixed;
|
|
21553
21767
|
z-index: 10002;
|
|
21768
|
+
|
|
21769
|
+
*,
|
|
21770
|
+
*::before,
|
|
21771
|
+
*::after {
|
|
21772
|
+
box-sizing: border-box;
|
|
21773
|
+
}
|
|
21554
21774
|
}
|
|
21555
21775
|
|
|
21556
21776
|
|
|
@@ -22219,6 +22439,12 @@ $drawer-selected-hover-text: $selected-hover-text !default;
|
|
|
22219
22439
|
-webkit-touch-callout: none;
|
|
22220
22440
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
22221
22441
|
|
|
22442
|
+
*,
|
|
22443
|
+
*::before,
|
|
22444
|
+
*::after {
|
|
22445
|
+
box-sizing: border-box;
|
|
22446
|
+
}
|
|
22447
|
+
|
|
22222
22448
|
// Borders
|
|
22223
22449
|
.k-drawer-mini &.k-drawer-start,
|
|
22224
22450
|
.k-drawer-expanded &.k-drawer-start,
|
|
@@ -22574,6 +22800,12 @@ $notification-themes: () !default;
|
|
|
22574
22800
|
display: block;
|
|
22575
22801
|
-webkit-touch-callout: none;
|
|
22576
22802
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
22803
|
+
|
|
22804
|
+
*,
|
|
22805
|
+
*::before,
|
|
22806
|
+
*::after {
|
|
22807
|
+
box-sizing: border-box;
|
|
22808
|
+
}
|
|
22577
22809
|
}
|
|
22578
22810
|
|
|
22579
22811
|
.k-notification-wrap {
|
|
@@ -22813,6 +23045,12 @@ $card-focus-callout-box-shadow-w: 2px -1px 4px 0 rgba( black, .06) !default;
|
|
|
22813
23045
|
overflow: hidden;
|
|
22814
23046
|
-webkit-touch-callout: none;
|
|
22815
23047
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
23048
|
+
|
|
23049
|
+
*,
|
|
23050
|
+
*::before,
|
|
23051
|
+
*::after {
|
|
23052
|
+
box-sizing: border-box;
|
|
23053
|
+
}
|
|
22816
23054
|
}
|
|
22817
23055
|
.k-card > .k-card-inner {
|
|
22818
23056
|
@include border-radius( $card-inner-border-radius );
|
|
@@ -23352,6 +23590,12 @@ $popover-callout-shadow-w: $card-callout-box-shadow-w !default;
|
|
|
23352
23590
|
z-index: 12000;
|
|
23353
23591
|
-webkit-touch-callout: none;
|
|
23354
23592
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
23593
|
+
|
|
23594
|
+
*,
|
|
23595
|
+
*::before,
|
|
23596
|
+
*::after {
|
|
23597
|
+
box-sizing: border-box;
|
|
23598
|
+
}
|
|
23355
23599
|
}
|
|
23356
23600
|
|
|
23357
23601
|
// Header
|
|
@@ -23630,6 +23874,12 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
23630
23874
|
outline: none;
|
|
23631
23875
|
-webkit-touch-callout: none;
|
|
23632
23876
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
23877
|
+
|
|
23878
|
+
*,
|
|
23879
|
+
*::before,
|
|
23880
|
+
*::after {
|
|
23881
|
+
box-sizing: border-box;
|
|
23882
|
+
}
|
|
23633
23883
|
}
|
|
23634
23884
|
|
|
23635
23885
|
.k-bottom-nav-border {
|
|
@@ -23881,6 +24131,12 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
23881
24131
|
flex-direction: row;
|
|
23882
24132
|
-webkit-touch-callout: none;
|
|
23883
24133
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
24134
|
+
|
|
24135
|
+
*,
|
|
24136
|
+
*::before,
|
|
24137
|
+
*::after {
|
|
24138
|
+
box-sizing: border-box;
|
|
24139
|
+
}
|
|
23884
24140
|
}
|
|
23885
24141
|
|
|
23886
24142
|
|
|
@@ -24201,6 +24457,12 @@ $pager-dropdown-width: 5em !default;
|
|
|
24201
24457
|
-webkit-touch-callout: none;
|
|
24202
24458
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
24203
24459
|
|
|
24460
|
+
*,
|
|
24461
|
+
*::before,
|
|
24462
|
+
*::after {
|
|
24463
|
+
box-sizing: border-box;
|
|
24464
|
+
}
|
|
24465
|
+
|
|
24204
24466
|
.k-link {
|
|
24205
24467
|
text-decoration: none;
|
|
24206
24468
|
outline: 0;
|
|
@@ -24248,7 +24510,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
24248
24510
|
%base-pager-item {
|
|
24249
24511
|
min-width: $kendo-button-calc-size;
|
|
24250
24512
|
height: $kendo-button-calc-size;
|
|
24251
|
-
box-sizing: border-box;
|
|
24252
24513
|
color: inherit;
|
|
24253
24514
|
text-align: center;
|
|
24254
24515
|
display: inline-flex;
|
|
@@ -24408,7 +24669,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
24408
24669
|
}
|
|
24409
24670
|
|
|
24410
24671
|
height: $kendo-button-calc-size;
|
|
24411
|
-
box-sizing: border-box;
|
|
24412
24672
|
border-color: inherit;
|
|
24413
24673
|
}
|
|
24414
24674
|
|
|
@@ -24733,6 +24993,12 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
24733
24993
|
color: inherit;
|
|
24734
24994
|
background: none;
|
|
24735
24995
|
|
|
24996
|
+
*,
|
|
24997
|
+
*::before,
|
|
24998
|
+
*::after {
|
|
24999
|
+
box-sizing: border-box;
|
|
25000
|
+
}
|
|
25001
|
+
|
|
24736
25002
|
|
|
24737
25003
|
// Step list
|
|
24738
25004
|
.k-step-list {
|
|
@@ -24782,7 +25048,6 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
24782
25048
|
transition-property: color, background-color, border-color;
|
|
24783
25049
|
transition-duration: .4s;
|
|
24784
25050
|
transition-timing-function: ease-in-out;
|
|
24785
|
-
box-sizing: content-box;
|
|
24786
25051
|
|
|
24787
25052
|
&::after {
|
|
24788
25053
|
@include border-radius( 100% );
|
|
@@ -25448,19 +25713,27 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
25448
25713
|
}
|
|
25449
25714
|
|
|
25450
25715
|
> .k-button {
|
|
25451
|
-
|
|
25716
|
+
width: auto;
|
|
25717
|
+
height: auto;
|
|
25718
|
+
flex: none;
|
|
25452
25719
|
align-self: stretch;
|
|
25720
|
+
aspect-ratio: auto;
|
|
25721
|
+
|
|
25722
|
+
.k-button-icon {
|
|
25723
|
+
min-width: auto;
|
|
25724
|
+
min-height: auto;
|
|
25725
|
+
}
|
|
25453
25726
|
}
|
|
25454
25727
|
|
|
25455
25728
|
&.k-hstack {
|
|
25456
25729
|
> .k-button {
|
|
25457
|
-
|
|
25730
|
+
padding: 0 map-get( $spacing, 1 );
|
|
25458
25731
|
}
|
|
25459
25732
|
}
|
|
25460
25733
|
|
|
25461
25734
|
&.k-vstack {
|
|
25462
25735
|
> .k-button {
|
|
25463
|
-
|
|
25736
|
+
padding: map-get( $spacing, 1 ) 0;
|
|
25464
25737
|
}
|
|
25465
25738
|
}
|
|
25466
25739
|
}
|
|
@@ -26040,6 +26313,12 @@ $expander-content-padding-y: $padding-y * 4 !default;
|
|
|
26040
26313
|
-webkit-touch-callout: none;
|
|
26041
26314
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
26042
26315
|
|
|
26316
|
+
*,
|
|
26317
|
+
*::before,
|
|
26318
|
+
*::after {
|
|
26319
|
+
box-sizing: border-box;
|
|
26320
|
+
}
|
|
26321
|
+
|
|
26043
26322
|
.k-rtl &,
|
|
26044
26323
|
&.k-rtl,
|
|
26045
26324
|
&[dir = "rtl"] {
|
|
@@ -26079,7 +26358,6 @@ $expander-content-padding-y: $padding-y * 4 !default;
|
|
|
26079
26358
|
// Expander content
|
|
26080
26359
|
.k-expander-content {
|
|
26081
26360
|
padding: $expander-content-padding-y $expander-content-padding-x;
|
|
26082
|
-
box-sizing: border-box;
|
|
26083
26361
|
}
|
|
26084
26362
|
|
|
26085
26363
|
// Multiple expanders
|
|
@@ -26290,6 +26568,12 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
26290
26568
|
-webkit-touch-callout: none;
|
|
26291
26569
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
26292
26570
|
|
|
26571
|
+
*,
|
|
26572
|
+
*::before,
|
|
26573
|
+
*::after {
|
|
26574
|
+
box-sizing: border-box;
|
|
26575
|
+
}
|
|
26576
|
+
|
|
26293
26577
|
|
|
26294
26578
|
// Root
|
|
26295
26579
|
> .k-item,
|
|
@@ -31937,6 +32221,7 @@ $pivotgrid-remove-text: null !default;
|
|
|
31937
32221
|
border-style: solid;
|
|
31938
32222
|
align-items: flex-start;
|
|
31939
32223
|
flex-wrap: wrap;
|
|
32224
|
+
box-shadow: none;
|
|
31940
32225
|
|
|
31941
32226
|
> * {
|
|
31942
32227
|
max-width: 100%;
|
|
@@ -31947,32 +32232,6 @@ $pivotgrid-remove-text: null !default;
|
|
|
31947
32232
|
}
|
|
31948
32233
|
}
|
|
31949
32234
|
|
|
31950
|
-
.k-pivot-toolbar .k-button {
|
|
31951
|
-
@include border-radius( $border-radius );
|
|
31952
|
-
padding: $kendo-button-padding-y $kendo-button-padding-x;
|
|
31953
|
-
padding-right: calc( #{$kendo-button-padding-x} + #{$icon-size * 3} );
|
|
31954
|
-
min-height: auto;
|
|
31955
|
-
font-size: $font-size;
|
|
31956
|
-
line-height: $kendo-button-line-height;
|
|
31957
|
-
text-align: left;
|
|
31958
|
-
white-space: normal;
|
|
31959
|
-
word-break: break-word;
|
|
31960
|
-
position: relative;
|
|
31961
|
-
cursor: move;
|
|
31962
|
-
|
|
31963
|
-
.k-field-actions .k-setting-delete {
|
|
31964
|
-
box-sizing: content-box;
|
|
31965
|
-
}
|
|
31966
|
-
}
|
|
31967
|
-
|
|
31968
|
-
.k-field-actions {
|
|
31969
|
-
position: absolute;
|
|
31970
|
-
right: $kendo-button-padding-y;
|
|
31971
|
-
top: $kendo-button-padding-y;
|
|
31972
|
-
line-height: 1;
|
|
31973
|
-
cursor: pointer;
|
|
31974
|
-
}
|
|
31975
|
-
|
|
31976
32235
|
.k-pivot-layout {
|
|
31977
32236
|
border-spacing: 0;
|
|
31978
32237
|
table-layout: auto;
|
|
@@ -31995,6 +32254,8 @@ $pivotgrid-remove-text: null !default;
|
|
|
31995
32254
|
.k-pivot-rowheaders > .k-grid,
|
|
31996
32255
|
.k-pivot-table > .k-grid {
|
|
31997
32256
|
border-width: 0;
|
|
32257
|
+
color: inherit;
|
|
32258
|
+
background: none;
|
|
31998
32259
|
}
|
|
31999
32260
|
|
|
32000
32261
|
.k-pivot-rowheaders > .k-grid td:first-child,
|
|
@@ -32058,58 +32319,73 @@ $pivotgrid-remove-text: null !default;
|
|
|
32058
32319
|
@include exports("pivotgrid/configurator/layout/legacy") {
|
|
32059
32320
|
|
|
32060
32321
|
|
|
32061
|
-
|
|
32062
|
-
|
|
32063
|
-
border-style: solid;
|
|
32322
|
+
// jquery specific -- old pivot
|
|
32323
|
+
.k-pivotgrid-wrapper {
|
|
32064
32324
|
box-sizing: border-box;
|
|
32065
|
-
|
|
32066
|
-
|
|
32067
|
-
|
|
32068
|
-
|
|
32069
|
-
-webkit-touch-callout: none;
|
|
32070
|
-
-webkit-tap-highlight-color: $rgba-transparent;
|
|
32071
|
-
|
|
32072
|
-
.k-columns {
|
|
32073
|
-
display: flex;
|
|
32074
|
-
align-items: stretch;
|
|
32325
|
+
display: flex;
|
|
32326
|
+
flex-flow: row nowrap;
|
|
32327
|
+
align-items: flex-start;
|
|
32328
|
+
gap: map-get( $spacing, 2 );
|
|
32075
32329
|
|
|
32076
|
-
|
|
32077
|
-
|
|
32078
|
-
|
|
32079
|
-
box-sizing: border-box;
|
|
32080
|
-
border-width: 0;
|
|
32081
|
-
border-style: solid;
|
|
32082
|
-
float: left;
|
|
32083
|
-
overflow: auto;
|
|
32084
|
-
}
|
|
32085
|
-
> div + div {
|
|
32086
|
-
border-left-width: 1px;
|
|
32087
|
-
}
|
|
32330
|
+
> .k-pivotgrid-configurator-panel {
|
|
32331
|
+
max-width: 320px;
|
|
32332
|
+
flex: none;
|
|
32088
32333
|
}
|
|
32334
|
+
> .k-pivot {
|
|
32335
|
+
flex: 1;
|
|
32336
|
+
}
|
|
32337
|
+
}
|
|
32338
|
+
.k-pivotgrid-configurator-panel.kendo-jquery {
|
|
32339
|
+
box-sizing: border-box;
|
|
32340
|
+
display: inline-flex;
|
|
32089
32341
|
|
|
32090
|
-
|
|
32091
|
-
|
|
32092
|
-
margin: 0 0 $padding-y-sm;
|
|
32093
|
-
text-transform: uppercase;
|
|
32342
|
+
.k-pivotgrid-configurator {
|
|
32343
|
+
height: 100%;
|
|
32094
32344
|
}
|
|
32095
|
-
|
|
32096
|
-
|
|
32345
|
+
|
|
32346
|
+
.k-pivotgrid-configurator-content {
|
|
32347
|
+
padding: map-get( $spacing, 4 );
|
|
32348
|
+
max-height: 100%;
|
|
32349
|
+
display: flex;
|
|
32350
|
+
flex-flow: column nowrap;
|
|
32351
|
+
gap: map-get( $spacing, 4 );
|
|
32352
|
+
overflow-x: hidden;
|
|
32353
|
+
overflow-y: auto;
|
|
32097
32354
|
}
|
|
32098
32355
|
|
|
32356
|
+
.k-pivotgrid-targets {
|
|
32357
|
+
display: flex;
|
|
32358
|
+
flex-flow: column nowrap;
|
|
32359
|
+
gap: map-get( $spacing, 4 );
|
|
32360
|
+
}
|
|
32099
32361
|
|
|
32100
|
-
|
|
32101
|
-
|
|
32102
|
-
|
|
32103
|
-
|
|
32362
|
+
.k-pivotgrid-configurator-section {
|
|
32363
|
+
display: flex;
|
|
32364
|
+
flex-flow: column nowrap;
|
|
32365
|
+
gap: map-get( $spacing, 2 );
|
|
32104
32366
|
}
|
|
32105
32367
|
|
|
32106
|
-
.k-
|
|
32107
|
-
|
|
32368
|
+
.k-column-fields {
|
|
32369
|
+
margin: 0;
|
|
32370
|
+
padding: map-get( $spacing, 1 );
|
|
32371
|
+
max-height: 200px;
|
|
32372
|
+
border-width: 1px;
|
|
32373
|
+
border-style: solid;
|
|
32374
|
+
display: flex;
|
|
32375
|
+
flex-flow: row wrap;
|
|
32376
|
+
gap: map-get( $spacing, 1 );
|
|
32377
|
+
overflow-x: hidden;
|
|
32378
|
+
overflow-y: auto;
|
|
32379
|
+
|
|
32380
|
+
> * {
|
|
32381
|
+
margin: 0;
|
|
32382
|
+
}
|
|
32108
32383
|
}
|
|
32109
|
-
.k-
|
|
32110
|
-
|
|
32384
|
+
.k-ie & .k-column-fields {
|
|
32385
|
+
> * {
|
|
32386
|
+
margin: 2px;
|
|
32387
|
+
}
|
|
32111
32388
|
}
|
|
32112
|
-
|
|
32113
32389
|
}
|
|
32114
32390
|
|
|
32115
32391
|
}
|
|
@@ -32327,102 +32603,59 @@ $pivotgrid-remove-text: null !default;
|
|
|
32327
32603
|
@include exports("pivotgrid/theme/legacy") {
|
|
32328
32604
|
|
|
32329
32605
|
.k-pivot {
|
|
32606
|
+
@include fill (
|
|
32607
|
+
$pivotgrid-text,
|
|
32608
|
+
$pivotgrid-bg,
|
|
32609
|
+
$pivotgrid-border
|
|
32610
|
+
);
|
|
32611
|
+
}
|
|
32612
|
+
.k-pivot-table {
|
|
32330
32613
|
border-color: $pivotgrid-border;
|
|
32331
32614
|
}
|
|
32332
32615
|
|
|
32333
|
-
|
|
32334
|
-
.k-pivot-
|
|
32335
|
-
|
|
32616
|
+
// Pivotgrid header
|
|
32617
|
+
.k-pivot-rowheaders {
|
|
32618
|
+
@include fill(
|
|
32619
|
+
$pivotgrid-headers-text,
|
|
32620
|
+
$pivotgrid-headers-bg,
|
|
32621
|
+
$pivotgrid-headers-border
|
|
32622
|
+
);
|
|
32336
32623
|
}
|
|
32337
32624
|
|
|
32338
|
-
|
|
32339
|
-
|
|
32625
|
+
|
|
32626
|
+
// Pivotgrid toolbar
|
|
32627
|
+
.k-pivot-toolbar {
|
|
32628
|
+
@include fill(
|
|
32629
|
+
$pivotgrid-headers-text,
|
|
32630
|
+
$pivotgrid-headers-bg,
|
|
32631
|
+
$pivotgrid-headers-border
|
|
32632
|
+
);
|
|
32633
|
+
|
|
32634
|
+
.k-empty {
|
|
32635
|
+
color: $subtle-text;
|
|
32636
|
+
}
|
|
32340
32637
|
}
|
|
32341
32638
|
|
|
32342
|
-
.k-
|
|
32343
|
-
background-color: $pivotgrid-
|
|
32639
|
+
.k-alt {
|
|
32640
|
+
background-color: $pivotgrid-alt-bg;
|
|
32344
32641
|
}
|
|
32345
32642
|
|
|
32346
32643
|
.k-pivot-toolbar,
|
|
32347
32644
|
.k-pivot-table,
|
|
32348
|
-
.k-fieldselector,
|
|
32349
|
-
.k-fieldselector .k-list-container,
|
|
32350
|
-
.k-fieldselector .k-columns > div,
|
|
32351
32645
|
.k-pivot-rowheaders > .k-grid td:first-child,
|
|
32352
32646
|
.k-pivot-table .k-grid-header .k-header.k-first {
|
|
32353
32647
|
border-color: $pivotgrid-chrome-border;
|
|
32354
32648
|
}
|
|
32355
32649
|
|
|
32356
|
-
.k-pivot-rowheaders .k-alt .k-alt,
|
|
32357
32650
|
.k-header.k-alt {
|
|
32358
32651
|
background-color: $pivotgrid-row-headers-bg;
|
|
32359
32652
|
}
|
|
32360
32653
|
|
|
32361
|
-
.k-pivot-
|
|
32362
|
-
@include fill(
|
|
32363
|
-
$kendo-button-text,
|
|
32364
|
-
$kendo-button-bg,
|
|
32365
|
-
$kendo-button-border,
|
|
32366
|
-
$kendo-button-gradient
|
|
32367
|
-
);
|
|
32368
|
-
|
|
32369
|
-
&:hover,
|
|
32370
|
-
&.k-state-hover {
|
|
32371
|
-
@include fill(
|
|
32372
|
-
$kendo-button-hover-text,
|
|
32373
|
-
$kendo-button-hover-bg,
|
|
32374
|
-
$kendo-button-hover-border,
|
|
32375
|
-
$kendo-button-hover-gradient
|
|
32376
|
-
);
|
|
32377
|
-
}
|
|
32378
|
-
|
|
32379
|
-
// Pressed state
|
|
32380
|
-
&:active,
|
|
32381
|
-
&.k-state-active {
|
|
32382
|
-
@include fill(
|
|
32383
|
-
$kendo-button-active-text,
|
|
32384
|
-
$kendo-button-active-bg,
|
|
32385
|
-
$kendo-button-active-border,
|
|
32386
|
-
$kendo-button-active-gradient
|
|
32387
|
-
);
|
|
32388
|
-
}
|
|
32389
|
-
|
|
32390
|
-
// Focused state
|
|
32391
|
-
&:focus,
|
|
32392
|
-
&.k-state-focus,
|
|
32393
|
-
&.k-state-focused {
|
|
32394
|
-
box-shadow: $kendo-button-focus-shadow;
|
|
32395
|
-
}
|
|
32396
|
-
|
|
32397
|
-
&.k-empty {
|
|
32398
|
-
color: $subtle-text;
|
|
32399
|
-
}
|
|
32400
|
-
}
|
|
32401
|
-
|
|
32402
|
-
.k-pivot-toolbar {
|
|
32403
|
-
.k-empty {
|
|
32404
|
-
color: $subtle-text;
|
|
32405
|
-
}
|
|
32406
|
-
}
|
|
32407
|
-
|
|
32408
|
-
.k-pivot-layout .k-grid-footer,
|
|
32409
|
-
.k-pivot-layout .k-grid.k-alt {
|
|
32654
|
+
.k-pivot-layout .k-grid-footer {
|
|
32410
32655
|
color: $pivotgrid-alt-text;
|
|
32411
32656
|
background-color: $pivotgrid-alt-bg;
|
|
32412
32657
|
}
|
|
32413
32658
|
|
|
32414
|
-
// Loading indicator
|
|
32415
|
-
.k-fieldselector {
|
|
32416
|
-
.k-i-loading {
|
|
32417
|
-
border-color: $header-bg;
|
|
32418
|
-
}
|
|
32419
|
-
|
|
32420
|
-
.k-i-loading::before,
|
|
32421
|
-
.k-i-loading::after {
|
|
32422
|
-
background-color: $header-bg;
|
|
32423
|
-
}
|
|
32424
|
-
}
|
|
32425
|
-
|
|
32426
32659
|
// KPI icons
|
|
32427
32660
|
.k-i-kpi-trend-increase,
|
|
32428
32661
|
.k-i-kpi-trend-decrease,
|
|
@@ -32441,6 +32674,16 @@ $pivotgrid-remove-text: null !default;
|
|
|
32441
32674
|
.k-i-kpi-status-open {
|
|
32442
32675
|
color: $success;
|
|
32443
32676
|
}
|
|
32677
|
+
|
|
32678
|
+
|
|
32679
|
+
// Configurator
|
|
32680
|
+
.k-pivotgrid-configurator-panel.kendo-jquery {
|
|
32681
|
+
|
|
32682
|
+
.k-column-fields {
|
|
32683
|
+
border-color: $component-border;
|
|
32684
|
+
}
|
|
32685
|
+
|
|
32686
|
+
}
|
|
32444
32687
|
}
|
|
32445
32688
|
|
|
32446
32689
|
// #endregion
|
|
@@ -32649,10 +32892,17 @@ $filter-preview-operator-text: $subtle-text !default;
|
|
|
32649
32892
|
@include exports("filter/layout") {
|
|
32650
32893
|
|
|
32651
32894
|
.k-filter {
|
|
32895
|
+
box-sizing: border-box;
|
|
32652
32896
|
border-width: 0;
|
|
32653
32897
|
display: inline-block;
|
|
32654
32898
|
background-color: transparent;
|
|
32655
32899
|
|
|
32900
|
+
*,
|
|
32901
|
+
*::before,
|
|
32902
|
+
*::after {
|
|
32903
|
+
box-sizing: border-box;
|
|
32904
|
+
}
|
|
32905
|
+
|
|
32656
32906
|
ul {
|
|
32657
32907
|
padding: 0;
|
|
32658
32908
|
|
|
@@ -33418,6 +33668,12 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
33418
33668
|
display: flex;
|
|
33419
33669
|
flex-direction: column;
|
|
33420
33670
|
position: relative;
|
|
33671
|
+
|
|
33672
|
+
*,
|
|
33673
|
+
*::before,
|
|
33674
|
+
*::after {
|
|
33675
|
+
box-sizing: border-box;
|
|
33676
|
+
}
|
|
33421
33677
|
}
|
|
33422
33678
|
|
|
33423
33679
|
// Toolbar
|
|
@@ -33486,7 +33742,6 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
33486
33742
|
.k-taskboard-column-cards {
|
|
33487
33743
|
padding: $taskboard-column-cards-padding-y $taskboard-column-cards-padding-x;
|
|
33488
33744
|
min-height: 100%;
|
|
33489
|
-
box-sizing: border-box;
|
|
33490
33745
|
display: flex;
|
|
33491
33746
|
flex-direction: column;
|
|
33492
33747
|
gap: $taskboard-column-cards-gap 0;
|
|
@@ -33515,7 +33770,6 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
33515
33770
|
width: $taskboard-pane-width;
|
|
33516
33771
|
border-width: $taskboard-pane-border-width;
|
|
33517
33772
|
border-style: solid;
|
|
33518
|
-
box-sizing: border-box;
|
|
33519
33773
|
display: flex;
|
|
33520
33774
|
flex-direction: column;
|
|
33521
33775
|
position: absolute;
|
|
@@ -34725,6 +34979,12 @@ $imageeditor-crop-overlay-bg: rgba(black, .3) !default;
|
|
|
34725
34979
|
line-height: $imageeditor-line-height;
|
|
34726
34980
|
-webkit-touch-callout: none;
|
|
34727
34981
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
34982
|
+
|
|
34983
|
+
*,
|
|
34984
|
+
*::before,
|
|
34985
|
+
*::after {
|
|
34986
|
+
box-sizing: border-box;
|
|
34987
|
+
}
|
|
34728
34988
|
}
|
|
34729
34989
|
|
|
34730
34990
|
|
|
@@ -37208,6 +37468,12 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
37208
37468
|
flex-shrink: 0;
|
|
37209
37469
|
font-size: inherit;
|
|
37210
37470
|
}
|
|
37471
|
+
|
|
37472
|
+
.k-no-data {
|
|
37473
|
+
height: auto;
|
|
37474
|
+
min-height: auto;
|
|
37475
|
+
color: inherit;
|
|
37476
|
+
}
|
|
37211
37477
|
}
|
|
37212
37478
|
|
|
37213
37479
|
}
|
|
@@ -38219,12 +38485,13 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
38219
38485
|
|
|
38220
38486
|
|
|
38221
38487
|
.k-scroll-button {
|
|
38488
|
+
// IMPORTANT: if we don't set padding, the browser will set for us
|
|
38489
|
+
padding: 0 map-get( $spacing, 1 );
|
|
38222
38490
|
height: 100%;
|
|
38223
38491
|
aspect-ratio: auto;
|
|
38224
38492
|
position: absolute;
|
|
38225
38493
|
z-index: 2;
|
|
38226
|
-
top:
|
|
38227
|
-
transform: translateY(-50%);
|
|
38494
|
+
top: 0;
|
|
38228
38495
|
|
|
38229
38496
|
.k-button-icon {
|
|
38230
38497
|
min-width: auto;
|
|
@@ -38484,6 +38751,12 @@ $mediaplayer-titlebar-gradient: rgba( $mediaplayer-text, .7 ), rgba( $mediaplaye
|
|
|
38484
38751
|
-webkit-touch-callout: none;
|
|
38485
38752
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
38486
38753
|
|
|
38754
|
+
*,
|
|
38755
|
+
*::before,
|
|
38756
|
+
*::after {
|
|
38757
|
+
box-sizing: border-box;
|
|
38758
|
+
}
|
|
38759
|
+
|
|
38487
38760
|
> iframe {
|
|
38488
38761
|
width: 100%;
|
|
38489
38762
|
height: 100%;
|
|
@@ -38706,6 +38979,12 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
38706
38979
|
-webkit-touch-callout: none;
|
|
38707
38980
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
38708
38981
|
|
|
38982
|
+
*,
|
|
38983
|
+
*::before,
|
|
38984
|
+
*::after {
|
|
38985
|
+
box-sizing: border-box;
|
|
38986
|
+
}
|
|
38987
|
+
|
|
38709
38988
|
ul {
|
|
38710
38989
|
margin: 0;
|
|
38711
38990
|
padding: 0;
|
|
@@ -38723,7 +39002,6 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
38723
39002
|
line-height: $timeline-flag-line-height;
|
|
38724
39003
|
min-width: $timeline-flag-min-width;
|
|
38725
39004
|
max-width: $timeline-flag-max-width;
|
|
38726
|
-
box-sizing: border-box;
|
|
38727
39005
|
position: relative;
|
|
38728
39006
|
z-index: 1;
|
|
38729
39007
|
}
|
|
@@ -38803,7 +39081,6 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
38803
39081
|
margin: $timeline-spacing-y 0;
|
|
38804
39082
|
width: 100%;
|
|
38805
39083
|
position: relative;
|
|
38806
|
-
box-sizing: border-box;
|
|
38807
39084
|
border: 0;
|
|
38808
39085
|
}
|
|
38809
39086
|
|
|
@@ -38993,12 +39270,10 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
38993
39270
|
|
|
38994
39271
|
.k-timeline-card {
|
|
38995
39272
|
height: 100%;
|
|
38996
|
-
box-sizing: border-box;
|
|
38997
39273
|
}
|
|
38998
39274
|
|
|
38999
39275
|
.k-card {
|
|
39000
39276
|
max-height: 100%;
|
|
39001
|
-
box-sizing: border-box;
|
|
39002
39277
|
}
|
|
39003
39278
|
|
|
39004
39279
|
.k-timeline-events-list {
|
|
@@ -40830,12 +41105,19 @@ $map-marker-fill: $primary !default;
|
|
|
40830
41105
|
// Layout
|
|
40831
41106
|
.k-map {
|
|
40832
41107
|
height: 600px;
|
|
41108
|
+
box-sizing: border-box;
|
|
40833
41109
|
border-width: $map-border-width;
|
|
40834
41110
|
border-style: solid;
|
|
40835
41111
|
font-size: $map-font-size;
|
|
40836
41112
|
line-height: $map-line-height;
|
|
40837
41113
|
font-family: $map-font-family;
|
|
40838
41114
|
|
|
41115
|
+
*,
|
|
41116
|
+
*::before,
|
|
41117
|
+
*::after {
|
|
41118
|
+
box-sizing: border-box;
|
|
41119
|
+
}
|
|
41120
|
+
|
|
40839
41121
|
|
|
40840
41122
|
// Scroll
|
|
40841
41123
|
.km-scroll-wrapper {
|
|
@@ -41103,6 +41385,12 @@ $orgchart-line-v-height: 25px !default;
|
|
|
41103
41385
|
font-family: $orgchart-font-family;
|
|
41104
41386
|
line-height: $orgchart-line-height;
|
|
41105
41387
|
overflow: auto;
|
|
41388
|
+
|
|
41389
|
+
*,
|
|
41390
|
+
*::before,
|
|
41391
|
+
*::after {
|
|
41392
|
+
box-sizing: border-box;
|
|
41393
|
+
}
|
|
41106
41394
|
}
|
|
41107
41395
|
|
|
41108
41396
|
.k-orgchart-container {
|