@progress/kendo-theme-material 5.0.0-beta.1 → 5.0.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +718 -586
- package/dist/all.scss +963 -804
- package/package.json +3 -3
- package/scss/avatar/index.md +0 -0
- package/scss/button/index.md +0 -0
- package/scss/checkbox/index.md +0 -0
- package/scss/chip/_index.scss +1 -0
- package/scss/chip/_variables.scss +10 -10
- package/scss/chip/index.md +0 -0
- package/scss/color-preview/_variables.scss +1 -0
- package/scss/colorpicker/_index.scss +1 -2
- package/scss/colorpicker/_variables.scss +1 -24
- package/scss/dateinput/_index.scss +0 -4
- package/scss/dateinput/_variables.scss +1 -1
- package/scss/datepicker/_index.scss +1 -3
- package/scss/datetimepicker/_index.scss +5 -3
- package/scss/datetimepicker/_variables.scss +2 -1
- package/scss/dropdowngrid/index.md +0 -0
- package/scss/filter/_index.scss +1 -1
- package/scss/gantt/_index.scss +1 -1
- package/scss/grid/_index.scss +1 -1
- package/scss/grid/_variables.scss +1 -1
- package/scss/index.scss +1 -1
- package/scss/input/_variables.scss +12 -22
- package/scss/list/index.md +0 -0
- package/scss/panelbar/_variables.scss +5 -0
- package/scss/pivotgrid/_variables.scss +0 -3
- package/scss/radio/index.md +0 -0
- package/scss/scheduler/_index.scss +1 -1
- package/scss/spreadsheet/_index.scss +1 -1
- package/scss/switch/index.md +0 -0
- package/scss/taskboard/_variables.scss +0 -2
- package/scss/timepicker/_index.scss +3 -3
- package/scss/timepicker/_variables.scss +1 -1
- package/scss/{datetime → timeselector}/_index.scss +2 -5
- package/scss/timeselector/_layout.scss +1 -0
- package/scss/timeselector/_theme.scss +19 -0
- package/scss/timeselector/_variables.scss +32 -0
- package/scss/treeview/_theme.scss +20 -20
- package/scss/treeview/_variables.scss +142 -46
- package/scss/utils/_border.scss +1 -2
- package/scss/datetime/_layout.scss +0 -38
- package/scss/datetime/_theme.scss +0 -61
- package/scss/datetime/_variables.scss +0 -53
package/dist/all.scss
CHANGED
|
@@ -4159,8 +4159,7 @@ $utils-border-radius: (
|
|
|
4159
4159
|
sm: .125rem,
|
|
4160
4160
|
md: .25rem,
|
|
4161
4161
|
lg: .375rem,
|
|
4162
|
-
|
|
4163
|
-
pill: 9999px
|
|
4162
|
+
full: 9999px
|
|
4164
4163
|
) !default;
|
|
4165
4164
|
|
|
4166
4165
|
// #region @import "~@progress/kendo-theme-default/scss/utils/_border.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/utils/_border.scss
|
|
@@ -4212,8 +4211,7 @@ $utils-border-radius: (
|
|
|
4212
4211
|
sm: ( map-get( $spacing, 1 ) / 4 ),
|
|
4213
4212
|
md: ( map-get( $spacing, 1 ) / 2 ),
|
|
4214
4213
|
lg: map-get( $spacing, 1 ),
|
|
4215
|
-
|
|
4216
|
-
pill: 9999px
|
|
4214
|
+
full: 9999px
|
|
4217
4215
|
) !default;
|
|
4218
4216
|
|
|
4219
4217
|
|
|
@@ -4337,34 +4335,42 @@ $utils-border-radius: (
|
|
|
4337
4335
|
/// @description This is equivalent to `display: flex`. It defines a flex container and enables a flex context for all its direct children. Think of flex items as primarily laying out either in horizontal rows or vertical columns.
|
|
4338
4336
|
/// @group flex-layout
|
|
4339
4337
|
.k-d-flex { display: flex; }
|
|
4338
|
+
.\!k-d-flex { display: flex !important; } // sass-lint:disable-line no-important class-name-format
|
|
4340
4339
|
/// @name k-d-inline-flex
|
|
4341
4340
|
/// @description This is equivalent to `display: inline-flex`. It defines a flex container and enables a flex context for all its direct children. Think of flex items as primarily laying out either in horizontal rows or vertical columns.
|
|
4342
4341
|
/// @group flex-layout
|
|
4343
4342
|
.k-d-inline-flex { display: inline-flex; }
|
|
4343
|
+
.\!k-d-inline-flex { display: inline-flex !important; } // sass-lint:disable-line no-important class-name-format
|
|
4344
4344
|
/// @name k-d-flex-row
|
|
4345
4345
|
/// @description This is equivalent to `display: inline-flex` and `flex-direction: row`.
|
|
4346
4346
|
/// @group flex-layout
|
|
4347
|
-
.k-d-flex-row {
|
|
4347
|
+
.k-d-flex-row { @extend .k-d-flex, .k-flex-row; }
|
|
4348
|
+
.\!k-d-flex-row { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
|
|
4348
4349
|
/// @name k-d-flex-col
|
|
4349
4350
|
/// @description This is equivalent to `display: inline-flex` and `flex-direction: column`.
|
|
4350
4351
|
/// @group flex-layout
|
|
4351
|
-
.k-d-flex-col {
|
|
4352
|
+
.k-d-flex-col { @extend .k-d-flex, .k-flex-col; }
|
|
4353
|
+
.\!k-d-flex-col { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
|
|
4352
4354
|
/// @name k-flex-row
|
|
4353
4355
|
/// @description This is equivalent to `flex-direction: row`. This establishes the main-axis to be horizontal, thus defining the direction flex items are placed in the flex container: left to right in `ltr`; right to left in `rtl`.
|
|
4354
4356
|
/// @group flex-layout
|
|
4355
4357
|
.k-flex-row { flex-direction: row; }
|
|
4358
|
+
.\!k-flex-row { flex-direction: row !important; } // sass-lint:disable-line no-important class-name-format
|
|
4356
4359
|
/// @name k-flex-row-reverse
|
|
4357
4360
|
/// @description This is equivalent to `flex-direction: row-reverse`. This establishes the main-axis to be horizontal, thus defining the direction flex items are placed in the flex container: right to left in `ltr`; left to right in `rtl`.
|
|
4358
4361
|
/// @group flex-layout
|
|
4359
4362
|
.k-flex-row-reverse { flex-direction: row-reverse; }
|
|
4363
|
+
.\!k-flex-row-reverse { flex-direction: row-reverse !important; } // sass-lint:disable-line no-important class-name-format
|
|
4360
4364
|
/// @name k-flex-col
|
|
4361
4365
|
/// @description This is equivalent to `flex-direction: column`. This establishes the main-axis to be vertical, thus defining the direction flex items are placed in the flex container: top to bottom.
|
|
4362
4366
|
/// @group flex-layout
|
|
4363
4367
|
.k-flex-col { flex-direction: column; }
|
|
4368
|
+
.\!k-flex-col { flex-direction: column !important; } // sass-lint:disable-line no-important class-name-format
|
|
4364
4369
|
/// @name k-flex-col-reverse
|
|
4365
4370
|
/// @description This is equivalent to `flex-direction: column-reverse`. This establishes the main-axis to be vertical, thus defining the direction flex items are placed in the flex container: bottom to top.
|
|
4366
4371
|
/// @group flex-layout
|
|
4367
4372
|
.k-flex-col-reverse { flex-direction: column-reverse; }
|
|
4373
|
+
.\!k-flex-col-reverse { flex-direction: column-reverse; } // sass-lint:disable-line no-important class-name-format
|
|
4368
4374
|
|
|
4369
4375
|
|
|
4370
4376
|
// Aliases
|
|
@@ -4419,7 +4425,7 @@ $utils-border-radius: (
|
|
|
4419
4425
|
/// @group flex-layout
|
|
4420
4426
|
.k-flex-shrink { flex-shrink: 1; }
|
|
4421
4427
|
/// @name k-flex-shrink-0
|
|
4422
|
-
/// @description This is equivalent to `flex-shrink: 0`. The item will not
|
|
4428
|
+
/// @description This is equivalent to `flex-shrink: 0`. The item will not shrink.
|
|
4423
4429
|
/// @group flex-layout
|
|
4424
4430
|
.k-flex-shrink-0 { flex-shrink: 0; }
|
|
4425
4431
|
/// @name k-flex-basis-auto
|
|
@@ -7120,12 +7126,24 @@ $kendo-list-no-data-text: $subtle-text !default;
|
|
|
7120
7126
|
padding: 0;
|
|
7121
7127
|
font-size: $kendo-list-font-size;
|
|
7122
7128
|
line-height: $kendo-list-line-height;
|
|
7129
|
+
display: flex;
|
|
7130
|
+
flex-flow: column nowrap;
|
|
7123
7131
|
outline: none;
|
|
7132
|
+
position: relative;
|
|
7133
|
+
overflow: hidden;
|
|
7134
|
+
}
|
|
7135
|
+
|
|
7136
|
+
|
|
7137
|
+
// List in popup
|
|
7138
|
+
.k-popup > .k-list {
|
|
7139
|
+
height: 100%;
|
|
7140
|
+
border-width: 0;
|
|
7124
7141
|
}
|
|
7125
7142
|
|
|
7126
7143
|
|
|
7127
7144
|
// List header
|
|
7128
|
-
.k-list-header
|
|
7145
|
+
// .k-list-header,
|
|
7146
|
+
.k-list-group-sticky-header {
|
|
7129
7147
|
padding: $kendo-list-header-padding-y $kendo-list-header-padding-x;
|
|
7130
7148
|
border-width: 0;
|
|
7131
7149
|
border-width: $kendo-list-header-border-width; // sass-lint:disable-line no-duplicate-properties
|
|
@@ -7134,6 +7152,7 @@ $kendo-list-no-data-text: $subtle-text !default;
|
|
|
7134
7152
|
line-height: $kendo-list-header-line-height;
|
|
7135
7153
|
font-weight: $kendo-list-header-font-weight;
|
|
7136
7154
|
white-space: nowrap;
|
|
7155
|
+
flex: none;
|
|
7137
7156
|
overflow: hidden;
|
|
7138
7157
|
text-overflow: ellipsis;
|
|
7139
7158
|
}
|
|
@@ -7142,6 +7161,7 @@ $kendo-list-no-data-text: $subtle-text !default;
|
|
|
7142
7161
|
// List content
|
|
7143
7162
|
.k-list-content {
|
|
7144
7163
|
border-color: inherit;
|
|
7164
|
+
flex: 1 1 auto;
|
|
7145
7165
|
overflow: hidden;
|
|
7146
7166
|
overflow-y: auto;
|
|
7147
7167
|
-webkit-overflow-scrolling: touch;
|
|
@@ -7237,7 +7257,9 @@ $kendo-list-no-data-text: $subtle-text !default;
|
|
|
7237
7257
|
overflow-y: scroll;
|
|
7238
7258
|
}
|
|
7239
7259
|
.k-virtual-list .k-list-item,
|
|
7240
|
-
.k-virtual-list .k-list-group-item
|
|
7260
|
+
.k-virtual-list .k-list-group-item,
|
|
7261
|
+
.k-virtual-content .k-list-item,
|
|
7262
|
+
.k-virtual-content .k-list-group-item {
|
|
7241
7263
|
position: absolute;
|
|
7242
7264
|
width: 100%;
|
|
7243
7265
|
}
|
|
@@ -7281,7 +7303,8 @@ $kendo-list-no-data-text: $subtle-text !default;
|
|
|
7281
7303
|
font-size: $_font-size;
|
|
7282
7304
|
line-height: $_line-height;
|
|
7283
7305
|
|
|
7284
|
-
.k-list-header
|
|
7306
|
+
// .k-list-header,
|
|
7307
|
+
.k-list-group-sticky-header {
|
|
7285
7308
|
padding: $_header-padding-y $_header-padding-x;
|
|
7286
7309
|
font-size: $_header-font-size;
|
|
7287
7310
|
line-height: $_header-line-height;
|
|
@@ -7333,7 +7356,8 @@ $kendo-list-no-data-text: $subtle-text !default;
|
|
|
7333
7356
|
|
|
7334
7357
|
|
|
7335
7358
|
// List header
|
|
7336
|
-
.k-list-header
|
|
7359
|
+
// .k-list-header,
|
|
7360
|
+
.k-list-group-sticky-header {
|
|
7337
7361
|
@include fill(
|
|
7338
7362
|
$kendo-list-header-text,
|
|
7339
7363
|
$kendo-list-header-bg,
|
|
@@ -8596,12 +8620,12 @@ $kendo-button-group-focus-shadow: null !default;
|
|
|
8596
8620
|
z-index: 2;
|
|
8597
8621
|
}
|
|
8598
8622
|
|
|
8599
|
-
.k-group-start,
|
|
8600
|
-
.k-button:first-child {
|
|
8623
|
+
.k-group-start:not(:only-child),
|
|
8624
|
+
.k-button:first-child:not(:only-child) {
|
|
8601
8625
|
@include border-right-radius( 0 );
|
|
8602
8626
|
}
|
|
8603
|
-
.k-group-end,
|
|
8604
|
-
.k-button:last-child {
|
|
8627
|
+
.k-group-end:not(:only-child),
|
|
8628
|
+
.k-button:last-child:not(:only-child) {
|
|
8605
8629
|
@include border-left-radius( 0 );
|
|
8606
8630
|
}
|
|
8607
8631
|
}
|
|
@@ -9403,60 +9427,54 @@ $kendo-button-group-focus-shadow: null !default;
|
|
|
9403
9427
|
// Component
|
|
9404
9428
|
// #region @import "_variables.scss"; -> packages/material/scss/input/_variables.scss
|
|
9405
9429
|
// Input
|
|
9430
|
+
$kendo-input-default-width: 100% !default;
|
|
9431
|
+
|
|
9406
9432
|
$kendo-input-border-width: 1px !default;
|
|
9407
9433
|
$kendo-input-border-height: 1px !default;
|
|
9408
9434
|
$kendo-input-border-radius: null !default;
|
|
9409
|
-
$kendo-input-border-radius-sm: 0px !default;
|
|
9410
|
-
$kendo-input-border-radius-lg: 0px !default;
|
|
9411
9435
|
|
|
9412
9436
|
$kendo-input-padding-x: map-get( $spacing, 4 ) !default;
|
|
9413
9437
|
$kendo-input-padding-y: map-get( $spacing, 2 ) !default;
|
|
9414
9438
|
$kendo-input-font-family: $font-family !default;
|
|
9415
9439
|
$kendo-input-font-size: $font-size !default;
|
|
9416
9440
|
$kendo-input-line-height: (20 / 14) !default;
|
|
9417
|
-
$kendo-input-line-height-em: $kendo-input-line-height * 1em !default;
|
|
9418
9441
|
|
|
9419
9442
|
$kendo-input-padding-x-sm: ($kendo-input-padding-x / 2) !default;
|
|
9420
9443
|
$kendo-input-padding-y-sm: ($kendo-input-padding-y / 2) !default;
|
|
9421
|
-
$kendo-input-font-size-sm: $
|
|
9444
|
+
$kendo-input-font-size-sm: $font-size !default;
|
|
9422
9445
|
$kendo-input-line-height-sm: (20 / 14) !default;
|
|
9423
9446
|
|
|
9424
9447
|
$kendo-input-padding-x-md: $kendo-input-padding-x !default;
|
|
9425
9448
|
$kendo-input-padding-y-md: $kendo-input-padding-y !default;
|
|
9426
|
-
$kendo-input-font-size-md: $
|
|
9449
|
+
$kendo-input-font-size-md: $font-size !default;
|
|
9427
9450
|
$kendo-input-line-height-md: (20 / 14) !default;
|
|
9428
9451
|
|
|
9429
9452
|
$kendo-input-padding-x-lg: ($kendo-input-padding-x * 1.5) !default;
|
|
9430
9453
|
$kendo-input-padding-y-lg: ($kendo-input-padding-y * 1.5) !default;
|
|
9431
|
-
$kendo-input-font-size-lg: $
|
|
9454
|
+
$kendo-input-font-size-lg: $font-size !default;
|
|
9432
9455
|
$kendo-input-line-height-lg: (20 / 14) !default;
|
|
9433
9456
|
|
|
9434
|
-
$kendo-input-calc-height: calc( #{$kendo-input-line-height * 1em} + #{$kendo-input-padding-y * 2} + #{$kendo-input-border-width * 2} ) !default;
|
|
9435
|
-
$kendo-input-calc-height-sm: calc( #{$kendo-input-line-height-sm * 1em} + #{$kendo-input-padding-y-sm * 2} + #{$kendo-input-border-width * 2} ) !default;
|
|
9436
|
-
$kendo-input-calc-height-lg: calc( #{$kendo-input-line-height-lg * 1em} + #{$kendo-input-padding-y-lg * 2} + #{$kendo-input-border-width * 2} ) !default;
|
|
9437
|
-
|
|
9438
|
-
$kendo-input-inner-calc-height: calc( #{$kendo-input-line-height * 1em} + #{$kendo-input-padding-y * 2} ) !default;
|
|
9439
|
-
$kendo-input-inner-calc-height-sm: calc( #{$kendo-input-line-height-sm * 1em} + #{$kendo-input-padding-y-sm * 2} ) !default;
|
|
9440
|
-
$kendo-input-inner-calc-height-lg: calc( #{$kendo-input-line-height-lg * 1em} + #{$kendo-input-padding-y-lg * 2} ) !default;
|
|
9441
|
-
|
|
9442
9457
|
$kendo-input-sizes: (
|
|
9443
9458
|
sm: (
|
|
9444
9459
|
padding-x: $kendo-input-padding-x-sm,
|
|
9445
9460
|
padding-y: $kendo-input-padding-y-sm,
|
|
9446
9461
|
font-size: $kendo-input-font-size-sm,
|
|
9447
|
-
line-height: $kendo-input-line-height-sm
|
|
9462
|
+
line-height: $kendo-input-line-height-sm,
|
|
9463
|
+
icon-size: calc( #{$icon-size} + #{$kendo-input-padding-y-sm * 2} )
|
|
9448
9464
|
),
|
|
9449
9465
|
md: (
|
|
9450
9466
|
padding-x: $kendo-input-padding-x-md,
|
|
9451
9467
|
padding-y: $kendo-input-padding-y-md,
|
|
9452
9468
|
font-size: $kendo-input-font-size-md,
|
|
9453
|
-
line-height: $kendo-input-line-height-md
|
|
9469
|
+
line-height: $kendo-input-line-height-md,
|
|
9470
|
+
icon-size: calc( #{$icon-size} + #{$kendo-input-padding-y-md * 2} )
|
|
9454
9471
|
),
|
|
9455
9472
|
lg: (
|
|
9456
9473
|
padding-x: $kendo-input-padding-x-lg,
|
|
9457
9474
|
padding-y: $kendo-input-padding-y-lg,
|
|
9458
9475
|
font-size: $kendo-input-font-size-lg,
|
|
9459
|
-
line-height: $kendo-input-line-height-lg
|
|
9476
|
+
line-height: $kendo-input-line-height-lg,
|
|
9477
|
+
icon-size: calc( #{$icon-size} + #{$kendo-input-padding-y-lg * 2} )
|
|
9460
9478
|
)
|
|
9461
9479
|
) !default;
|
|
9462
9480
|
|
|
@@ -9491,6 +9509,7 @@ $kendo-input-clear-value-hover-opacity: 1 !default;
|
|
|
9491
9509
|
$kendo-input-values-margin-y: map-get( $spacing, thin ) !default;
|
|
9492
9510
|
$kendo-input-values-margin-x: $kendo-input-values-margin-y !default;
|
|
9493
9511
|
|
|
9512
|
+
|
|
9494
9513
|
// Input actions
|
|
9495
9514
|
$kendo-input-button-width: null !default;
|
|
9496
9515
|
$kendo-input-button-border-width: 0px !default;
|
|
@@ -9498,11 +9517,6 @@ $kendo-input-spinner-width: null !default;
|
|
|
9498
9517
|
$kendo-input-spinner-icon-offset: 2px !default;
|
|
9499
9518
|
|
|
9500
9519
|
|
|
9501
|
-
// Input icon
|
|
9502
|
-
$kendo-input-icon-width: calc( #{$icon-size} + #{$kendo-input-padding-y * 2} ) !default;
|
|
9503
|
-
$kendo-input-icon-height: calc( #{$kendo-input-line-height * $kendo-input-font-size} + #{$kendo-input-padding-y * 2} ) !default;
|
|
9504
|
-
|
|
9505
|
-
|
|
9506
9520
|
// Input separator
|
|
9507
9521
|
$kendo-input-separator-color: $kendo-input-text !default;
|
|
9508
9522
|
$kendo-input-separator-opacity: .5 !default;
|
|
@@ -9523,7 +9537,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9523
9537
|
@include border-radius( $kendo-input-border-radius );
|
|
9524
9538
|
margin: 0;
|
|
9525
9539
|
padding: 0;
|
|
9526
|
-
width:
|
|
9540
|
+
width: $kendo-input-default-width;
|
|
9527
9541
|
min-width: 0;
|
|
9528
9542
|
border-width: $kendo-input-border-width;
|
|
9529
9543
|
border-style: solid;
|
|
@@ -9629,8 +9643,9 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9629
9643
|
.k-icon-picker {
|
|
9630
9644
|
.k-input-inner {
|
|
9631
9645
|
padding: $kendo-input-padding-y;
|
|
9632
|
-
|
|
9633
|
-
|
|
9646
|
+
// TODO we need better way
|
|
9647
|
+
// width: $kendo-input-inner-calc-height;
|
|
9648
|
+
// height: $kendo-input-inner-calc-height;
|
|
9634
9649
|
justify-content: center;
|
|
9635
9650
|
}
|
|
9636
9651
|
}
|
|
@@ -9639,6 +9654,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9639
9654
|
// Input prefix and suffix
|
|
9640
9655
|
.k-input-prefix,
|
|
9641
9656
|
.k-input-suffix {
|
|
9657
|
+
border-color: inherit;
|
|
9642
9658
|
display: flex;
|
|
9643
9659
|
flex-flow: row nowrap;
|
|
9644
9660
|
align-items: center;
|
|
@@ -9650,13 +9666,24 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9650
9666
|
}
|
|
9651
9667
|
|
|
9652
9668
|
|
|
9669
|
+
// Input separator
|
|
9670
|
+
.k-input-separator {
|
|
9671
|
+
margin: 0;
|
|
9672
|
+
width: 0;
|
|
9673
|
+
height: $icon-size;
|
|
9674
|
+
border-width: 0 0 0 1px;
|
|
9675
|
+
border-style: solid;
|
|
9676
|
+
border-color: inherit;
|
|
9677
|
+
align-self: center;
|
|
9678
|
+
}
|
|
9679
|
+
|
|
9680
|
+
|
|
9653
9681
|
// Input with icon styles
|
|
9654
9682
|
.k-input-icon,
|
|
9655
9683
|
.k-input-validation-icon,
|
|
9656
9684
|
.k-input-loading-icon {
|
|
9657
|
-
width: $kendo-input-icon-width;
|
|
9658
|
-
height: $kendo-input-icon-height;
|
|
9659
9685
|
flex: none;
|
|
9686
|
+
align-self: center;
|
|
9660
9687
|
display: inline-flex;
|
|
9661
9688
|
flex-flow: row nowrap;
|
|
9662
9689
|
align-items: center;
|
|
@@ -9666,11 +9693,10 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9666
9693
|
|
|
9667
9694
|
// Clear value
|
|
9668
9695
|
.k-clear-value {
|
|
9669
|
-
width: $kendo-input-icon-width;
|
|
9670
|
-
height: $kendo-input-icon-height;
|
|
9671
9696
|
outline: 0;
|
|
9672
9697
|
color: $kendo-input-clear-value-text;
|
|
9673
9698
|
flex: none;
|
|
9699
|
+
align-self: center;
|
|
9674
9700
|
display: inline-flex;
|
|
9675
9701
|
align-items: center;
|
|
9676
9702
|
justify-content: center;
|
|
@@ -9744,6 +9770,24 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9744
9770
|
}
|
|
9745
9771
|
|
|
9746
9772
|
|
|
9773
|
+
// Legacy wrappers
|
|
9774
|
+
.k-picker-wrap,
|
|
9775
|
+
.k-dropdown-wrap,
|
|
9776
|
+
.k-dateinput-wrap,
|
|
9777
|
+
.k-multiselect-wrap,
|
|
9778
|
+
.k-numeric-wrap {
|
|
9779
|
+
width: 100%;
|
|
9780
|
+
border-width: 0;
|
|
9781
|
+
border-color: inherit;
|
|
9782
|
+
box-sizing: border-box;
|
|
9783
|
+
flex: 1 1 auto;
|
|
9784
|
+
display: flex;
|
|
9785
|
+
flex-flow: row nowrap;
|
|
9786
|
+
overflow: hidden;
|
|
9787
|
+
position: relative;
|
|
9788
|
+
}
|
|
9789
|
+
|
|
9790
|
+
|
|
9747
9791
|
// Fill mode
|
|
9748
9792
|
.k-input-flat,
|
|
9749
9793
|
.k-picker-flat {
|
|
@@ -9770,6 +9814,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9770
9814
|
$_padding-y: map-get( $size-props, padding-y );
|
|
9771
9815
|
$_font-size: map-get( $size-props, font-size );
|
|
9772
9816
|
$_line-height: map-get( $size-props, line-height );
|
|
9817
|
+
$_icon-size: map-get( $size-props, icon-size );
|
|
9773
9818
|
|
|
9774
9819
|
.k-input-#{$size},
|
|
9775
9820
|
.k-picker-#{$size} {
|
|
@@ -9779,8 +9824,22 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9779
9824
|
.k-input-inner {
|
|
9780
9825
|
padding: $_padding-y $_padding-x;
|
|
9781
9826
|
}
|
|
9782
|
-
}
|
|
9783
9827
|
|
|
9828
|
+
.k-input-icon,
|
|
9829
|
+
.k-input-validation-icon,
|
|
9830
|
+
.k-input-loading-icon,
|
|
9831
|
+
.k-clear-value {
|
|
9832
|
+
width: $_icon-size;
|
|
9833
|
+
height: $_icon-size;
|
|
9834
|
+
}
|
|
9835
|
+
|
|
9836
|
+
&.k-icon-picker .k-input-inner {
|
|
9837
|
+
width: calc( #{$_line-height * 1em} );
|
|
9838
|
+
height: calc( #{$_line-height * 1em} );
|
|
9839
|
+
padding: $_padding-y;
|
|
9840
|
+
box-sizing: content-box;
|
|
9841
|
+
}
|
|
9842
|
+
}
|
|
9784
9843
|
}
|
|
9785
9844
|
|
|
9786
9845
|
}
|
|
@@ -9895,7 +9954,8 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9895
9954
|
|
|
9896
9955
|
// Invalid
|
|
9897
9956
|
&:invalid,
|
|
9898
|
-
&.k-invalid
|
|
9957
|
+
&.k-invalid,
|
|
9958
|
+
&.ng-invalid {
|
|
9899
9959
|
@include fill( $border: $invalid-border );
|
|
9900
9960
|
|
|
9901
9961
|
.k-input-validation-icon {
|
|
@@ -9943,7 +10003,8 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9943
10003
|
|
|
9944
10004
|
// Invalid
|
|
9945
10005
|
&:invalid,
|
|
9946
|
-
&.k-invalid
|
|
10006
|
+
&.k-invalid,
|
|
10007
|
+
&.ng-invalid {
|
|
9947
10008
|
@include fill( $border: $kendo-input-invalid-border );
|
|
9948
10009
|
|
|
9949
10010
|
.k-input-validation-icon {
|
|
@@ -10464,7 +10525,7 @@ $grid-header-font-size: 12px !default;
|
|
|
10464
10525
|
$grid-footer-padding-x: $grid-header-padding-x !default;
|
|
10465
10526
|
$grid-footer-padding-y: $grid-header-padding-y !default;
|
|
10466
10527
|
|
|
10467
|
-
$grid-grouping-header-padding-x:
|
|
10528
|
+
$grid-grouping-header-padding-x: 8px !default;
|
|
10468
10529
|
$grid-grouping-header-padding-y: $grid-grouping-header-padding-x !default;
|
|
10469
10530
|
|
|
10470
10531
|
$grid-filter-cell-padding-x: $grid-padding-x !default;
|
|
@@ -10791,6 +10852,10 @@ $kendo-table-selected-border: $grid-selected-border !default;
|
|
|
10791
10852
|
.k-data-table {
|
|
10792
10853
|
border-width: $kendo-table-border-width;
|
|
10793
10854
|
border-style: solid;
|
|
10855
|
+
|
|
10856
|
+
.k-table {
|
|
10857
|
+
table-layout: fixed;
|
|
10858
|
+
}
|
|
10794
10859
|
}
|
|
10795
10860
|
|
|
10796
10861
|
|
|
@@ -10852,7 +10917,7 @@ $kendo-table-selected-border: $grid-selected-border !default;
|
|
|
10852
10917
|
width: 100%;
|
|
10853
10918
|
max-width: none;
|
|
10854
10919
|
border-width: 0;
|
|
10855
|
-
display: table
|
|
10920
|
+
display: table;
|
|
10856
10921
|
border-collapse: collapse;
|
|
10857
10922
|
border-spacing: 0;
|
|
10858
10923
|
table-layout: fixed;
|
|
@@ -10860,10 +10925,11 @@ $kendo-table-selected-border: $grid-selected-border !default;
|
|
|
10860
10925
|
list-style: none;
|
|
10861
10926
|
outline: none;
|
|
10862
10927
|
|
|
10863
|
-
.k-table-row
|
|
10928
|
+
.k-table-row,
|
|
10929
|
+
.k-table-group-row {
|
|
10864
10930
|
width: 100%;
|
|
10865
10931
|
box-sizing: border-box;
|
|
10866
|
-
display:
|
|
10932
|
+
display: table-row;
|
|
10867
10933
|
position: relative;
|
|
10868
10934
|
}
|
|
10869
10935
|
.k-table-row.k-first {
|
|
@@ -10875,6 +10941,26 @@ $kendo-table-selected-border: $grid-selected-border !default;
|
|
|
10875
10941
|
vertical-align: middle;
|
|
10876
10942
|
}
|
|
10877
10943
|
|
|
10944
|
+
.k-table-group-row {
|
|
10945
|
+
|
|
10946
|
+
&::before {
|
|
10947
|
+
content: ".";
|
|
10948
|
+
padding: $kendo-table-cell-padding-y 0;
|
|
10949
|
+
width: 0;
|
|
10950
|
+
display: block;
|
|
10951
|
+
overflow: hidden;
|
|
10952
|
+
}
|
|
10953
|
+
|
|
10954
|
+
.k-table-th {
|
|
10955
|
+
width: 100%;
|
|
10956
|
+
border-color: inherit;
|
|
10957
|
+
color: inherit;
|
|
10958
|
+
background-color: inherit;
|
|
10959
|
+
position: absolute;
|
|
10960
|
+
top: 0;
|
|
10961
|
+
}
|
|
10962
|
+
}
|
|
10963
|
+
|
|
10878
10964
|
.k-table-spacer-td {
|
|
10879
10965
|
padding: 0 !important; // sass-lint:disable-line no-important
|
|
10880
10966
|
width: 0 !important; // sass-lint:disable-line no-important
|
|
@@ -10898,6 +10984,13 @@ $kendo-table-selected-border: $grid-selected-border !default;
|
|
|
10898
10984
|
}
|
|
10899
10985
|
|
|
10900
10986
|
|
|
10987
|
+
// Virtualization
|
|
10988
|
+
.k-virtual-table .k-table-row {
|
|
10989
|
+
position: absolute;
|
|
10990
|
+
width: 100%;
|
|
10991
|
+
}
|
|
10992
|
+
|
|
10993
|
+
|
|
10901
10994
|
// Table scroller
|
|
10902
10995
|
.k-table-scroller {
|
|
10903
10996
|
position: relative;
|
|
@@ -10949,6 +11042,10 @@ $kendo-table-selected-border: $grid-selected-border !default;
|
|
|
10949
11042
|
.k-table-#{$size} .k-table-list .k-table-group-td > span {
|
|
10950
11043
|
padding: 0 ( $_cell-padding-x / 2 );
|
|
10951
11044
|
}
|
|
11045
|
+
|
|
11046
|
+
.k-table-#{$size} .k-table-list .k-table-group-row::before {
|
|
11047
|
+
padding: $_cell-padding-y 0;
|
|
11048
|
+
}
|
|
10952
11049
|
}
|
|
10953
11050
|
|
|
10954
11051
|
|
|
@@ -11247,6 +11344,9 @@ $kendo-avatar-theme-colors: $theme-colors !default;
|
|
|
11247
11344
|
// #region @import "../icons/_index.scss"; -> packages/material/scss/icons/_index.scss
|
|
11248
11345
|
// File already imported_once. Skipping output.
|
|
11249
11346
|
// #endregion
|
|
11347
|
+
// #region @import "../button/_variables.scss"; -> packages/material/scss/button/_variables.scss
|
|
11348
|
+
// File already imported_once. Skipping output.
|
|
11349
|
+
// #endregion
|
|
11250
11350
|
|
|
11251
11351
|
|
|
11252
11352
|
// Component
|
|
@@ -11296,50 +11396,50 @@ $kendo-chip-sizes: (
|
|
|
11296
11396
|
lg: ( font-size: $kendo-chip-font-size-lg, line-height: $kendo-chip-line-height-lg, padding: $kendo-chip-padding-x-lg )
|
|
11297
11397
|
) !default;
|
|
11298
11398
|
|
|
11399
|
+
/// The base background of the chip.
|
|
11400
|
+
/// @group chip
|
|
11401
|
+
$kendo-chip-base-bg: if( $dark-theme, $white, $kendo-button-text ) !default;
|
|
11402
|
+
|
|
11299
11403
|
/// Theme colors map for the chip.
|
|
11300
11404
|
/// @group chip
|
|
11301
11405
|
$kendo-chip-theme-colors: (
|
|
11302
|
-
"base": $
|
|
11406
|
+
"base": $kendo-chip-base-bg,
|
|
11303
11407
|
"error": map-get( $theme-colors, "error" ),
|
|
11304
11408
|
"info": map-get( $theme-colors, "info" ),
|
|
11305
11409
|
"warning": map-get( $theme-colors, "warning" ),
|
|
11306
11410
|
"success": map-get( $theme-colors, "success" )
|
|
11307
11411
|
) !default;
|
|
11308
11412
|
|
|
11309
|
-
/// The base background of the chip.
|
|
11310
|
-
/// @group chip
|
|
11311
|
-
$kendo-chip-base-bg: $black !default;
|
|
11312
|
-
|
|
11313
11413
|
/// The base background color of solid chip.
|
|
11314
11414
|
/// @group chip
|
|
11315
|
-
$kendo-chip-solid-bg:
|
|
11415
|
+
$kendo-chip-solid-bg: try-tint( $kendo-chip-base-bg, 92% ) !default;
|
|
11316
11416
|
/// The base text color of solid chip.
|
|
11317
11417
|
/// @group chip
|
|
11318
11418
|
$kendo-chip-solid-text: $kendo-chip-base-bg !default;
|
|
11319
11419
|
/// The base border color of solid chip.
|
|
11320
11420
|
/// @group chip
|
|
11321
|
-
$kendo-chip-solid-border:
|
|
11421
|
+
$kendo-chip-solid-border: try-tint( $kendo-chip-base-bg, 70% ) !default;
|
|
11322
11422
|
/// The base shadow of solid chip.
|
|
11323
11423
|
/// @group chip
|
|
11324
11424
|
$kendo-chip-solid-shadow: null !default;
|
|
11325
11425
|
|
|
11326
11426
|
/// The base background color of focused solid chip.
|
|
11327
11427
|
/// @group chip
|
|
11328
|
-
$kendo-chip-solid-focus-bg:
|
|
11428
|
+
$kendo-chip-solid-focus-bg: try-tint( $kendo-chip-base-bg, 92% ) !default;
|
|
11329
11429
|
/// The base text color of focused solid chip.
|
|
11330
11430
|
/// @group chip
|
|
11331
11431
|
$kendo-chip-solid-focus-text: null !default;
|
|
11332
11432
|
|
|
11333
11433
|
/// The base background color of hovered solid chip.
|
|
11334
11434
|
/// @group chip
|
|
11335
|
-
$kendo-chip-solid-hover-bg:
|
|
11435
|
+
$kendo-chip-solid-hover-bg: try-tint( $kendo-chip-base-bg, 84% ) !default;
|
|
11336
11436
|
/// The base text color of hovered solid chip.
|
|
11337
11437
|
/// @group chip
|
|
11338
11438
|
$kendo-chip-solid-hover-text: null !default;
|
|
11339
11439
|
|
|
11340
11440
|
/// The base background color of selected solid chip.
|
|
11341
11441
|
/// @group chip
|
|
11342
|
-
$kendo-chip-solid-selected-bg:
|
|
11442
|
+
$kendo-chip-solid-selected-bg: try-tint( $kendo-chip-base-bg, 76% ) !default;
|
|
11343
11443
|
/// The base text color of selected solid chip.
|
|
11344
11444
|
/// @group chip
|
|
11345
11445
|
$kendo-chip-solid-selected-text: null !default;
|
|
@@ -11391,38 +11491,132 @@ $kendo-chip-list-sizes: (
|
|
|
11391
11491
|
padding: $kendo-chip-padding-y $kendo-chip-padding-x;
|
|
11392
11492
|
border-width: $kendo-chip-border-width;
|
|
11393
11493
|
border-style: solid;
|
|
11394
|
-
|
|
11494
|
+
outline: 0;
|
|
11395
11495
|
font-family: $font-family;
|
|
11396
11496
|
font-size: $kendo-chip-font-size;
|
|
11397
11497
|
line-height: $kendo-chip-line-height;
|
|
11398
11498
|
display: inline-flex;
|
|
11399
|
-
|
|
11499
|
+
flex-flow: row nowrap;
|
|
11400
11500
|
align-items: center;
|
|
11501
|
+
justify-content: center;
|
|
11401
11502
|
gap: $kendo-chip-spacing;
|
|
11402
11503
|
position: relative;
|
|
11403
11504
|
overflow: hidden;
|
|
11404
11505
|
cursor: pointer;
|
|
11405
11506
|
user-select: none;
|
|
11406
11507
|
|
|
11407
|
-
|
|
11408
|
-
|
|
11409
|
-
outline: 0;
|
|
11508
|
+
.k-selected-icon-wrapper {
|
|
11509
|
+
display: none !important; // sass-lint:disable-line no-important
|
|
11410
11510
|
}
|
|
11411
11511
|
}
|
|
11412
11512
|
|
|
11413
|
-
|
|
11513
|
+
|
|
11514
|
+
// Chip content
|
|
11414
11515
|
.k-chip-content {
|
|
11415
11516
|
min-width: 0;
|
|
11416
|
-
display:
|
|
11517
|
+
display: flex;
|
|
11518
|
+
flex-flow: row nowrap;
|
|
11519
|
+
align-items: center;
|
|
11520
|
+
overflow: hidden;
|
|
11417
11521
|
flex: 1 1 auto;
|
|
11522
|
+
}
|
|
11523
|
+
.k-chip-content:first-child {
|
|
11524
|
+
margin-inline-start: $kendo-chip-spacing;
|
|
11525
|
+
}
|
|
11526
|
+
.k-chip-content:last-child {
|
|
11527
|
+
margin-inline-end: $kendo-chip-spacing;
|
|
11528
|
+
}
|
|
11529
|
+
|
|
11530
|
+
|
|
11531
|
+
// Chip text
|
|
11532
|
+
.k-chip-text,
|
|
11533
|
+
.k-chip-label {
|
|
11418
11534
|
white-space: nowrap;
|
|
11535
|
+
text-overflow: ellipsis;
|
|
11536
|
+
overflow: hidden;
|
|
11537
|
+
flex: 1 1 auto;
|
|
11419
11538
|
}
|
|
11420
11539
|
|
|
11421
|
-
|
|
11422
|
-
|
|
11423
|
-
.k-chip-
|
|
11540
|
+
|
|
11541
|
+
// Chip avatar
|
|
11542
|
+
.k-chip-avatar {
|
|
11543
|
+
border-radius: 50%;
|
|
11544
|
+
background-size: cover;
|
|
11545
|
+
background-position: center;
|
|
11546
|
+
flex: none;
|
|
11547
|
+
}
|
|
11548
|
+
|
|
11549
|
+
|
|
11550
|
+
// Chip icon
|
|
11551
|
+
.k-chip-icon {
|
|
11424
11552
|
font-size: inherit;
|
|
11553
|
+
display: flex;
|
|
11554
|
+
align-items: center;
|
|
11555
|
+
justify-content: center;
|
|
11556
|
+
flex: none;
|
|
11425
11557
|
}
|
|
11558
|
+
.k-ie .k-chip-icon {
|
|
11559
|
+
margin-right: $kendo-chip-spacing;
|
|
11560
|
+
}
|
|
11561
|
+
|
|
11562
|
+
|
|
11563
|
+
// Actions
|
|
11564
|
+
.k-chip-actions {
|
|
11565
|
+
flex: none;
|
|
11566
|
+
display: flex;
|
|
11567
|
+
flex-flow: row nowrap;
|
|
11568
|
+
align-items: center;
|
|
11569
|
+
align-self: center;
|
|
11570
|
+
}
|
|
11571
|
+
.k-chip-action {
|
|
11572
|
+
flex: none;
|
|
11573
|
+
display: flex;
|
|
11574
|
+
flex-flow: row nowrap;
|
|
11575
|
+
align-items: center;
|
|
11576
|
+
align-self: center;
|
|
11577
|
+
}
|
|
11578
|
+
|
|
11579
|
+
|
|
11580
|
+
// Legacy chip icons
|
|
11581
|
+
.k-remove-icon {
|
|
11582
|
+
font-size: inherit;
|
|
11583
|
+
display: flex;
|
|
11584
|
+
align-items: center;
|
|
11585
|
+
justify-content: center;
|
|
11586
|
+
flex: none;
|
|
11587
|
+
}
|
|
11588
|
+
.k-ie .k-remove-icon {
|
|
11589
|
+
margin-right: 0;
|
|
11590
|
+
margin-left: $kendo-chip-spacing;
|
|
11591
|
+
}
|
|
11592
|
+
|
|
11593
|
+
|
|
11594
|
+
// Chip list
|
|
11595
|
+
.k-chip-list {
|
|
11596
|
+
min-width: 0px;
|
|
11597
|
+
display: inline-flex;
|
|
11598
|
+
flex-wrap: wrap;
|
|
11599
|
+
align-items: center;
|
|
11600
|
+
position: relative;
|
|
11601
|
+
}
|
|
11602
|
+
|
|
11603
|
+
|
|
11604
|
+
// RTL
|
|
11605
|
+
.k-ie .k-chip.k-rtl,
|
|
11606
|
+
.k-ie .k-rtl .k-chip,
|
|
11607
|
+
.k-ie .k-chip[dir="rtl"] {
|
|
11608
|
+
.k-chip-icon {
|
|
11609
|
+
margin-right: 0;
|
|
11610
|
+
margin-left: $kendo-chip-spacing;
|
|
11611
|
+
}
|
|
11612
|
+
|
|
11613
|
+
.k-remove-icon {
|
|
11614
|
+
margin-left: 0;
|
|
11615
|
+
margin-right: $kendo-chip-spacing;
|
|
11616
|
+
}
|
|
11617
|
+
}
|
|
11618
|
+
|
|
11619
|
+
|
|
11426
11620
|
|
|
11427
11621
|
// Sizes
|
|
11428
11622
|
@each $size, $size-props in $kendo-chip-sizes {
|
|
@@ -11431,6 +11625,7 @@ $kendo-chip-list-sizes: (
|
|
|
11431
11625
|
$_line-height: map-get( $size-props, line-height );
|
|
11432
11626
|
$_padding: map-get( $size-props, padding );
|
|
11433
11627
|
$_size: calc( #{$line-height-xs * 1em} + #{$_padding * 2} + #{$kendo-chip-border-width * 2} );
|
|
11628
|
+
$_avatar-size: 1em;
|
|
11434
11629
|
|
|
11435
11630
|
.k-chip-#{$size} {
|
|
11436
11631
|
height: $_size;
|
|
@@ -11438,30 +11633,13 @@ $kendo-chip-list-sizes: (
|
|
|
11438
11633
|
font-size: $_font-size;
|
|
11439
11634
|
line-height: $_line-height;
|
|
11440
11635
|
}
|
|
11441
|
-
}
|
|
11442
11636
|
|
|
11443
|
-
|
|
11444
|
-
|
|
11445
|
-
|
|
11446
|
-
|
|
11447
|
-
|
|
11448
|
-
}
|
|
11449
|
-
.k-chip-avatar .k-avatar-image > img {
|
|
11450
|
-
vertical-align: top;
|
|
11451
|
-
}
|
|
11452
|
-
|
|
11453
|
-
}
|
|
11454
|
-
|
|
11455
|
-
@include exports("chip/layout/list") {
|
|
11637
|
+
.k-chip-avatar {
|
|
11638
|
+
width: $_avatar-size;
|
|
11639
|
+
height: $_avatar-size;
|
|
11640
|
+
flex-basis: $_avatar-size;
|
|
11641
|
+
}
|
|
11456
11642
|
|
|
11457
|
-
// Chip List
|
|
11458
|
-
.k-chip-list {
|
|
11459
|
-
min-width: 0px;
|
|
11460
|
-
display: inline-flex;
|
|
11461
|
-
flex-wrap: wrap;
|
|
11462
|
-
align-items: center;
|
|
11463
|
-
position: relative;
|
|
11464
|
-
box-sizing: border-box;
|
|
11465
11643
|
}
|
|
11466
11644
|
|
|
11467
11645
|
// Sizes
|
|
@@ -11478,7 +11656,7 @@ $kendo-chip-list-sizes: (
|
|
|
11478
11656
|
// #endregion
|
|
11479
11657
|
// #region @import "_theme.scss"; -> packages/material/scss/chip/_theme.scss
|
|
11480
11658
|
// #region @import "~@progress/kendo-theme-default/scss/chip/_theme.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/chip/_theme.scss
|
|
11481
|
-
@include exports("chip/theme") {
|
|
11659
|
+
@include exports( "chip/theme" ) {
|
|
11482
11660
|
|
|
11483
11661
|
// Solid
|
|
11484
11662
|
@each $name, $color in $kendo-chip-theme-colors {
|
|
@@ -11508,28 +11686,29 @@ $kendo-chip-list-sizes: (
|
|
|
11508
11686
|
} @else {
|
|
11509
11687
|
@include fill(
|
|
11510
11688
|
$color,
|
|
11511
|
-
|
|
11512
|
-
|
|
11689
|
+
try-tint( $color, 92% ),
|
|
11690
|
+
try-tint( $color, 70% )
|
|
11513
11691
|
);
|
|
11514
11692
|
|
|
11515
11693
|
&:focus,
|
|
11516
11694
|
&.k-focus {
|
|
11517
11695
|
@include box-shadow( 0 0 0 2px rgba( $color, .16 ) );
|
|
11518
|
-
@include fill( $bg:
|
|
11696
|
+
@include fill( $bg: try-tint( $color, 92% ) );
|
|
11519
11697
|
}
|
|
11520
11698
|
|
|
11521
11699
|
&:hover,
|
|
11522
11700
|
&.k-hover {
|
|
11523
|
-
@include fill( $bg:
|
|
11701
|
+
@include fill( $bg: try-tint($color, 84% ) );
|
|
11524
11702
|
}
|
|
11525
11703
|
|
|
11526
11704
|
&.k-selected {
|
|
11527
|
-
@include fill( $bg:
|
|
11705
|
+
@include fill( $bg: try-tint( $color, 76% ) );
|
|
11528
11706
|
}
|
|
11529
11707
|
}
|
|
11530
11708
|
}
|
|
11531
11709
|
}
|
|
11532
11710
|
|
|
11711
|
+
|
|
11533
11712
|
// Outline
|
|
11534
11713
|
@each $name, $color in $kendo-chip-theme-colors {
|
|
11535
11714
|
.k-chip-outline-#{$name} {
|
|
@@ -11667,14 +11846,17 @@ $color-preview-no-color-text: $error !default;
|
|
|
11667
11846
|
$color-preview-no-color-border: null !default;
|
|
11668
11847
|
|
|
11669
11848
|
$color-preview-no-color-image: escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' version='1.1'><line x1='0' x2='20' y1='0' y2='20' stroke='#{$color-preview-no-color-text}' stroke-width='1'/></svg>") ) !default;
|
|
11849
|
+
$color-preview-transparent-color-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAuSURBVHgBxYyxDQAwDMJIL+YT+DjtzFRliUfLcklqBCRT4eCTxbD6kdL2/LgYXqpvCbs3kBv/AAAAAElFTkSuQmCC") !default;
|
|
11670
11850
|
|
|
11671
11851
|
// #endregion
|
|
11672
11852
|
// #region @import "_layout.scss"; -> packages/material/scss/color-preview/_layout.scss
|
|
11673
11853
|
// #region @import "~@progress/kendo-theme-default/scss/color-preview/_layout.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/color-preview/_layout.scss
|
|
11674
|
-
@include exports("color-preview/layout") {
|
|
11854
|
+
@include exports( "color-preview/layout" ) {
|
|
11675
11855
|
|
|
11676
11856
|
// Color Preview
|
|
11677
11857
|
.k-color-preview {
|
|
11858
|
+
width: 100%;
|
|
11859
|
+
height: 100%;
|
|
11678
11860
|
border-width: $color-preview-border-width;
|
|
11679
11861
|
border-radius: $color-preview-border-radius;
|
|
11680
11862
|
border-style: solid;
|
|
@@ -11683,14 +11865,23 @@ $color-preview-no-color-image: escape-svg( url("data:image/svg+xml,<svg xmlns='h
|
|
|
11683
11865
|
flex-wrap: nowrap;
|
|
11684
11866
|
position: relative;
|
|
11685
11867
|
overflow: hidden;
|
|
11686
|
-
|
|
11687
|
-
|
|
11688
|
-
|
|
11689
|
-
|
|
11690
|
-
|
|
11691
|
-
|
|
11692
|
-
|
|
11693
|
-
|
|
11868
|
+
|
|
11869
|
+
> .k-color-preview-mask {
|
|
11870
|
+
width: 100%;
|
|
11871
|
+
height: 100%;
|
|
11872
|
+
position: absolute;
|
|
11873
|
+
top: 0;
|
|
11874
|
+
left: 0;
|
|
11875
|
+
}
|
|
11876
|
+
|
|
11877
|
+
&::before {
|
|
11878
|
+
content: "";
|
|
11879
|
+
width: 100%;
|
|
11880
|
+
height: 100%;
|
|
11881
|
+
display: block;
|
|
11882
|
+
position: relative;
|
|
11883
|
+
z-index: -1;
|
|
11884
|
+
}
|
|
11694
11885
|
}
|
|
11695
11886
|
|
|
11696
11887
|
// Current Color
|
|
@@ -11706,11 +11897,13 @@ $color-preview-no-color-image: escape-svg( url("data:image/svg+xml,<svg xmlns='h
|
|
|
11706
11897
|
display: flex;
|
|
11707
11898
|
flex-flow: column nowrap;
|
|
11708
11899
|
align-items: center;
|
|
11900
|
+
justify-content: center;
|
|
11709
11901
|
gap: 2px;
|
|
11710
11902
|
|
|
11711
11903
|
.k-color-preview-mask {
|
|
11712
11904
|
width: calc( #{$icon-size} - 2px );
|
|
11713
11905
|
height: 2px;
|
|
11906
|
+
position: static;
|
|
11714
11907
|
}
|
|
11715
11908
|
|
|
11716
11909
|
&::before {
|
|
@@ -11720,7 +11913,7 @@ $color-preview-no-color-image: escape-svg( url("data:image/svg+xml,<svg xmlns='h
|
|
|
11720
11913
|
|
|
11721
11914
|
|
|
11722
11915
|
// No Color
|
|
11723
|
-
.k-no-color::
|
|
11916
|
+
.k-no-color::before {
|
|
11724
11917
|
content: "";
|
|
11725
11918
|
width: 100%;
|
|
11726
11919
|
height: 100%;
|
|
@@ -11736,7 +11929,7 @@ $color-preview-no-color-image: escape-svg( url("data:image/svg+xml,<svg xmlns='h
|
|
|
11736
11929
|
// #endregion
|
|
11737
11930
|
// #region @import "_theme.scss"; -> packages/material/scss/color-preview/_theme.scss
|
|
11738
11931
|
// #region @import "~@progress/kendo-theme-default/scss/color-preview/_theme.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/color-preview/_theme.scss
|
|
11739
|
-
@include exports("color-preview/theme") {
|
|
11932
|
+
@include exports( "color-preview/theme" ) {
|
|
11740
11933
|
|
|
11741
11934
|
// Color Preview
|
|
11742
11935
|
.k-color-preview {
|
|
@@ -11747,7 +11940,7 @@ $color-preview-no-color-image: escape-svg( url("data:image/svg+xml,<svg xmlns='h
|
|
|
11747
11940
|
);
|
|
11748
11941
|
|
|
11749
11942
|
&::before {
|
|
11750
|
-
background:
|
|
11943
|
+
background: $color-preview-transparent-color-image;
|
|
11751
11944
|
background-size: contain;
|
|
11752
11945
|
background-position: 0;
|
|
11753
11946
|
}
|
|
@@ -11759,10 +11952,11 @@ $color-preview-no-color-image: escape-svg( url("data:image/svg+xml,<svg xmlns='h
|
|
|
11759
11952
|
}
|
|
11760
11953
|
|
|
11761
11954
|
// No Color
|
|
11762
|
-
.k-no-color::
|
|
11955
|
+
.k-no-color::before {
|
|
11763
11956
|
background-color: $color-preview-no-color-bg;
|
|
11764
11957
|
background-image: $color-preview-no-color-image;
|
|
11765
11958
|
background-size: 100% 100%;
|
|
11959
|
+
background-position: 0 0;
|
|
11766
11960
|
}
|
|
11767
11961
|
|
|
11768
11962
|
}
|
|
@@ -15893,11 +16087,13 @@ $slider-disabled-opacity: .65 !default;
|
|
|
15893
16087
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
15894
16088
|
|
|
15895
16089
|
.k-button-increase {
|
|
16090
|
+
position: absolute;
|
|
15896
16091
|
right: 0;
|
|
15897
16092
|
top: 0;
|
|
15898
16093
|
}
|
|
15899
16094
|
|
|
15900
16095
|
.k-button-decrease {
|
|
16096
|
+
position: absolute;
|
|
15901
16097
|
left: 0;
|
|
15902
16098
|
top: 0;
|
|
15903
16099
|
}
|
|
@@ -17460,6 +17656,369 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
17460
17656
|
|
|
17461
17657
|
// #endregion
|
|
17462
17658
|
|
|
17659
|
+
// #endregion
|
|
17660
|
+
// #region @import "timeselector/_index.scss"; -> packages/material/scss/timeselector/_index.scss
|
|
17661
|
+
// #region @import "../core/_index.scss"; -> packages/material/scss/core/_index.scss
|
|
17662
|
+
// File already imported_once. Skipping output.
|
|
17663
|
+
// #endregion
|
|
17664
|
+
|
|
17665
|
+
|
|
17666
|
+
// Dependencies
|
|
17667
|
+
// #region @import "../list/_index.scss"; -> packages/material/scss/list/_index.scss
|
|
17668
|
+
// File already imported_once. Skipping output.
|
|
17669
|
+
// #endregion
|
|
17670
|
+
// #region @import "../action-buttons/_index.scss"; -> packages/material/scss/action-buttons/_index.scss
|
|
17671
|
+
// File already imported_once. Skipping output.
|
|
17672
|
+
// #endregion
|
|
17673
|
+
// #region @import "../button/_index.scss"; -> packages/material/scss/button/_index.scss
|
|
17674
|
+
// File already imported_once. Skipping output.
|
|
17675
|
+
// #endregion
|
|
17676
|
+
|
|
17677
|
+
|
|
17678
|
+
// Component
|
|
17679
|
+
// #region @import "_variables.scss"; -> packages/material/scss/timeselector/_variables.scss
|
|
17680
|
+
// Time selector
|
|
17681
|
+
$time-selector-border-width: 1px !default;
|
|
17682
|
+
$time-selector-font-family: $font-family !default;
|
|
17683
|
+
$time-selector-font-size: $font-size !default;
|
|
17684
|
+
$time-selector-line-height: (20 / 14) !default;
|
|
17685
|
+
|
|
17686
|
+
$time-selector-bg: $component-bg !default;
|
|
17687
|
+
$time-selector-text: $component-text !default;
|
|
17688
|
+
$time-selector-border: $component-border !default;
|
|
17689
|
+
|
|
17690
|
+
$time-selector-header-padding-x: map-get( $spacing, 1 ) !default;
|
|
17691
|
+
$time-selector-header-padding-y: map-get( $spacing, 1 ) !default;
|
|
17692
|
+
$time-selector-header-border-width: 0px !default;
|
|
17693
|
+
|
|
17694
|
+
$time-list-width: 4em !default;
|
|
17695
|
+
$time-list-height: 240px !default;
|
|
17696
|
+
|
|
17697
|
+
$time-list-title-font-size: $font-size-sm !default;
|
|
17698
|
+
$time-list-title-line-height: 1.5 !default;
|
|
17699
|
+
$time-list-title-height: ( $time-list-title-font-size * $time-list-title-line-height) !default;
|
|
17700
|
+
$time-list-title-text: $subtle-text !default;
|
|
17701
|
+
$time-list-title-focus-text: $component-text !default;
|
|
17702
|
+
|
|
17703
|
+
$time-list-item-padding-x: $kendo-list-item-padding-x-md !default;
|
|
17704
|
+
$time-list-item-padding-y: $kendo-list-item-padding-y-md !default;
|
|
17705
|
+
|
|
17706
|
+
$time-list-highlight-border-width: 1px 0px !default;
|
|
17707
|
+
$time-list-highlight-height: calc( #{$time-selector-font-size * $time-selector-line-height} + #{ $time-list-item-padding-y * 2} ) !default;
|
|
17708
|
+
$time-list-highlight-bg: $component-bg !default;
|
|
17709
|
+
$time-list-highlight-border: $component-border !default;
|
|
17710
|
+
|
|
17711
|
+
$time-list-focused-bg: null !default;
|
|
17712
|
+
|
|
17713
|
+
// #endregion
|
|
17714
|
+
// #region @import "_layout.scss"; -> packages/material/scss/timeselector/_layout.scss
|
|
17715
|
+
// #region @import "~@progress/kendo-theme-default/scss/timeselector/_layout.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/timeselector/_layout.scss
|
|
17716
|
+
@include exports( "timeselector/layout" ) {
|
|
17717
|
+
|
|
17718
|
+
// Time selector
|
|
17719
|
+
.k-timeselector {
|
|
17720
|
+
border-width: $time-selector-border-width;
|
|
17721
|
+
border-style: solid;
|
|
17722
|
+
box-sizing: border-box;
|
|
17723
|
+
outline: 0;
|
|
17724
|
+
font-family: $time-selector-font-family;
|
|
17725
|
+
font-size: $time-selector-font-size;
|
|
17726
|
+
line-height: $time-selector-line-height;
|
|
17727
|
+
position: relative;
|
|
17728
|
+
overflow: hidden;
|
|
17729
|
+
display: flex;
|
|
17730
|
+
flex-flow: column nowrap;
|
|
17731
|
+
user-select: none;
|
|
17732
|
+
-webkit-touch-callout: none;
|
|
17733
|
+
-webkit-tap-highlight-color: $rgba-transparent;
|
|
17734
|
+
|
|
17735
|
+
.k-popup > & {
|
|
17736
|
+
border-width: 0;
|
|
17737
|
+
}
|
|
17738
|
+
}
|
|
17739
|
+
|
|
17740
|
+
|
|
17741
|
+
// Time selector header
|
|
17742
|
+
.k-time-header,
|
|
17743
|
+
.k-time-selector-header {
|
|
17744
|
+
padding: $time-selector-header-padding-y $time-selector-header-padding-x;
|
|
17745
|
+
box-sizing: border-box;
|
|
17746
|
+
display: flex;
|
|
17747
|
+
align-items: center;
|
|
17748
|
+
justify-content: space-between;
|
|
17749
|
+
flex: 0 0 auto;
|
|
17750
|
+
|
|
17751
|
+
.k-title,
|
|
17752
|
+
.k-time-selector-header-title {
|
|
17753
|
+
padding: $kendo-button-padding-y $kendo-button-padding-x;
|
|
17754
|
+
font-weight: bold;
|
|
17755
|
+
display: inline-block;
|
|
17756
|
+
}
|
|
17757
|
+
|
|
17758
|
+
.k-time-now {
|
|
17759
|
+
border-width: 0;
|
|
17760
|
+
line-height: inherit;
|
|
17761
|
+
cursor: pointer;
|
|
17762
|
+
}
|
|
17763
|
+
}
|
|
17764
|
+
|
|
17765
|
+
|
|
17766
|
+
// Time selector footer
|
|
17767
|
+
// .k-time-footer {}
|
|
17768
|
+
// .k-time-selector-footer {}
|
|
17769
|
+
|
|
17770
|
+
|
|
17771
|
+
// Time list container
|
|
17772
|
+
.k-time-list-container {
|
|
17773
|
+
display: flex;
|
|
17774
|
+
position: relative;
|
|
17775
|
+
flex: 1 1 auto;
|
|
17776
|
+
}
|
|
17777
|
+
|
|
17778
|
+
|
|
17779
|
+
// Time list highlight
|
|
17780
|
+
.k-time-highlight,
|
|
17781
|
+
.k-time-list-highlight {
|
|
17782
|
+
width: 100%;
|
|
17783
|
+
height: $time-list-highlight-height;
|
|
17784
|
+
border-width: $time-list-highlight-border-width;
|
|
17785
|
+
border-style: solid;
|
|
17786
|
+
box-sizing: border-box;
|
|
17787
|
+
position: absolute;
|
|
17788
|
+
top: calc( 50% + #{$time-list-title-height / 2});
|
|
17789
|
+
left: 0;
|
|
17790
|
+
right: 0;
|
|
17791
|
+
transform: translateY(-50%);
|
|
17792
|
+
z-index: 1;
|
|
17793
|
+
}
|
|
17794
|
+
|
|
17795
|
+
|
|
17796
|
+
// Time list wrapper
|
|
17797
|
+
.k-time-list-wrapper {
|
|
17798
|
+
min-width: $time-list-width;
|
|
17799
|
+
height: $time-list-height;
|
|
17800
|
+
box-sizing: content-box;
|
|
17801
|
+
display: inline-flex;
|
|
17802
|
+
flex-flow: column nowrap;
|
|
17803
|
+
align-items: stretch;
|
|
17804
|
+
overflow: hidden;
|
|
17805
|
+
position: relative;
|
|
17806
|
+
text-align: center;
|
|
17807
|
+
flex: 1 1 auto;
|
|
17808
|
+
|
|
17809
|
+
.k-title {
|
|
17810
|
+
font-size: $time-list-title-font-size;
|
|
17811
|
+
line-height: $time-list-title-line-height;
|
|
17812
|
+
font-weight: bold;
|
|
17813
|
+
text-align: center;
|
|
17814
|
+
text-transform: capitalize;
|
|
17815
|
+
display: block;
|
|
17816
|
+
}
|
|
17817
|
+
|
|
17818
|
+
&.k-state-focused {
|
|
17819
|
+
&::before,
|
|
17820
|
+
&::after {
|
|
17821
|
+
display: block;
|
|
17822
|
+
content: " ";
|
|
17823
|
+
position: absolute;
|
|
17824
|
+
width: 100%;
|
|
17825
|
+
left: 0;
|
|
17826
|
+
pointer-events: none;
|
|
17827
|
+
height: calc( 50% - #{$time-list-highlight-height / 2} );
|
|
17828
|
+
box-sizing: border-box;
|
|
17829
|
+
border-width: 0;
|
|
17830
|
+
border-style: solid;
|
|
17831
|
+
}
|
|
17832
|
+
|
|
17833
|
+
&::before {
|
|
17834
|
+
top: $time-list-title-height;
|
|
17835
|
+
}
|
|
17836
|
+
|
|
17837
|
+
&::after {
|
|
17838
|
+
bottom: 0;
|
|
17839
|
+
}
|
|
17840
|
+
}
|
|
17841
|
+
}
|
|
17842
|
+
|
|
17843
|
+
|
|
17844
|
+
// Time list
|
|
17845
|
+
.k-time-list {
|
|
17846
|
+
display: flex;
|
|
17847
|
+
flex-flow: row nowrap;
|
|
17848
|
+
align-items: stretch;
|
|
17849
|
+
flex: 1;
|
|
17850
|
+
position: relative;
|
|
17851
|
+
z-index: 1;
|
|
17852
|
+
overflow: hidden;
|
|
17853
|
+
|
|
17854
|
+
&::before,
|
|
17855
|
+
&::after {
|
|
17856
|
+
display: block;
|
|
17857
|
+
position: absolute;
|
|
17858
|
+
content: " ";
|
|
17859
|
+
height: 0;
|
|
17860
|
+
line-height: 0;
|
|
17861
|
+
z-index: 1;
|
|
17862
|
+
width: 200%;
|
|
17863
|
+
left: -50%;
|
|
17864
|
+
}
|
|
17865
|
+
|
|
17866
|
+
&::before { top: 0; }
|
|
17867
|
+
&::after { bottom: 0; }
|
|
17868
|
+
}
|
|
17869
|
+
|
|
17870
|
+
|
|
17871
|
+
// Time list content
|
|
17872
|
+
.k-time-container,
|
|
17873
|
+
.k-time-list-content {
|
|
17874
|
+
position: relative;
|
|
17875
|
+
flex: 1 1 auto;
|
|
17876
|
+
display: block;
|
|
17877
|
+
overflow-x: hidden;
|
|
17878
|
+
overflow-y: scroll;
|
|
17879
|
+
|
|
17880
|
+
@include hide-scrollbar("right");
|
|
17881
|
+
|
|
17882
|
+
> ul {
|
|
17883
|
+
height: auto;
|
|
17884
|
+
width: $time-list-width;
|
|
17885
|
+
margin: auto;
|
|
17886
|
+
}
|
|
17887
|
+
|
|
17888
|
+
.k-rtl &
|
|
17889
|
+
[dir="rtl"] & {
|
|
17890
|
+
@include hide-scrollbar("left");
|
|
17891
|
+
}
|
|
17892
|
+
|
|
17893
|
+
.k-scrollable-placeholder {
|
|
17894
|
+
position: absolute;
|
|
17895
|
+
width: 1px;
|
|
17896
|
+
top: 0;
|
|
17897
|
+
right: 0;
|
|
17898
|
+
}
|
|
17899
|
+
}
|
|
17900
|
+
|
|
17901
|
+
|
|
17902
|
+
// Time list item
|
|
17903
|
+
.k-time-list-item,
|
|
17904
|
+
.k-time-list .k-item {
|
|
17905
|
+
padding: $time-list-item-padding-y $time-list-item-padding-x;
|
|
17906
|
+
}
|
|
17907
|
+
|
|
17908
|
+
|
|
17909
|
+
// Time separator
|
|
17910
|
+
.k-time-separator {
|
|
17911
|
+
width: 0;
|
|
17912
|
+
height: $time-list-highlight-height;
|
|
17913
|
+
align-self: center;
|
|
17914
|
+
display: inline-flex;
|
|
17915
|
+
justify-content: center;
|
|
17916
|
+
align-items: center;
|
|
17917
|
+
position: relative;
|
|
17918
|
+
z-index: 11;
|
|
17919
|
+
top: calc( #{$time-list-title-height / 2} );
|
|
17920
|
+
}
|
|
17921
|
+
|
|
17922
|
+
}
|
|
17923
|
+
|
|
17924
|
+
// #endregion
|
|
17925
|
+
|
|
17926
|
+
// #endregion
|
|
17927
|
+
// #region @import "_theme.scss"; -> packages/material/scss/timeselector/_theme.scss
|
|
17928
|
+
// #region @import "~@progress/kendo-theme-default/scss/timeselector/_theme.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/timeselector/_theme.scss
|
|
17929
|
+
@include exports( "timeselector/theme" ) {
|
|
17930
|
+
|
|
17931
|
+
// Time selector
|
|
17932
|
+
.k-timeselector {
|
|
17933
|
+
@include fill(
|
|
17934
|
+
$time-selector-text,
|
|
17935
|
+
$time-selector-bg,
|
|
17936
|
+
$time-selector-border
|
|
17937
|
+
);
|
|
17938
|
+
}
|
|
17939
|
+
|
|
17940
|
+
|
|
17941
|
+
// Time selector header
|
|
17942
|
+
.k-time-header,
|
|
17943
|
+
.k-time-selector-header {
|
|
17944
|
+
|
|
17945
|
+
.k-time-now {
|
|
17946
|
+
color: $link-text;
|
|
17947
|
+
}
|
|
17948
|
+
.k-time-now:hover {
|
|
17949
|
+
color: $link-hover-text;
|
|
17950
|
+
}
|
|
17951
|
+
}
|
|
17952
|
+
|
|
17953
|
+
|
|
17954
|
+
// Time list wrapper
|
|
17955
|
+
.k-time-list-wrapper {
|
|
17956
|
+
|
|
17957
|
+
.k-title {
|
|
17958
|
+
color: $time-list-title-text;
|
|
17959
|
+
}
|
|
17960
|
+
|
|
17961
|
+
&.k-state-focused {
|
|
17962
|
+
.k-title {
|
|
17963
|
+
color: $time-list-title-focus-text;
|
|
17964
|
+
}
|
|
17965
|
+
|
|
17966
|
+
&::before,
|
|
17967
|
+
&::after {
|
|
17968
|
+
background-color: $time-list-focused-bg;
|
|
17969
|
+
}
|
|
17970
|
+
}
|
|
17971
|
+
}
|
|
17972
|
+
|
|
17973
|
+
|
|
17974
|
+
// Time list
|
|
17975
|
+
.k-time-list {
|
|
17976
|
+
&::before,
|
|
17977
|
+
&::after {
|
|
17978
|
+
$shadow-size: 3em;
|
|
17979
|
+
box-shadow: 0 0 $shadow-size ($shadow-size / 2) $time-selector-bg;
|
|
17980
|
+
}
|
|
17981
|
+
|
|
17982
|
+
.k-item:hover {
|
|
17983
|
+
color: $primary;
|
|
17984
|
+
}
|
|
17985
|
+
}
|
|
17986
|
+
|
|
17987
|
+
.k-time-container {
|
|
17988
|
+
background: transparent;
|
|
17989
|
+
}
|
|
17990
|
+
|
|
17991
|
+
.k-time-highlight {
|
|
17992
|
+
@include fill(
|
|
17993
|
+
$bg: $time-list-highlight-bg,
|
|
17994
|
+
$border: $time-list-highlight-border
|
|
17995
|
+
);
|
|
17996
|
+
}
|
|
17997
|
+
|
|
17998
|
+
}
|
|
17999
|
+
|
|
18000
|
+
// #endregion
|
|
18001
|
+
|
|
18002
|
+
@include exports( "timeselector/theme/material" ) {
|
|
18003
|
+
|
|
18004
|
+
// Time selector
|
|
18005
|
+
.k-timeselector {}
|
|
18006
|
+
|
|
18007
|
+
|
|
18008
|
+
// Time list
|
|
18009
|
+
.k-time-list {
|
|
18010
|
+
.k-item:hover {
|
|
18011
|
+
@include fill(
|
|
18012
|
+
$kendo-list-item-hover-text,
|
|
18013
|
+
$kendo-list-item-hover-bg
|
|
18014
|
+
);
|
|
18015
|
+
}
|
|
18016
|
+
}
|
|
18017
|
+
|
|
18018
|
+
}
|
|
18019
|
+
|
|
18020
|
+
// #endregion
|
|
18021
|
+
|
|
17463
18022
|
// #endregion
|
|
17464
18023
|
|
|
17465
18024
|
|
|
@@ -18380,10 +18939,7 @@ $coloreditor-views-gap: $coloreditor-spacer !default;
|
|
|
18380
18939
|
|
|
18381
18940
|
|
|
18382
18941
|
// Dependencies
|
|
18383
|
-
// #region @import "../
|
|
18384
|
-
// File already imported_once. Skipping output.
|
|
18385
|
-
// #endregion
|
|
18386
|
-
// #region @import "../utils/_flex.scss"; -> packages/material/scss/utils/_flex.scss
|
|
18942
|
+
// #region @import "../input/_index.scss"; -> packages/material/scss/input/_index.scss
|
|
18387
18943
|
// File already imported_once. Skipping output.
|
|
18388
18944
|
// #endregion
|
|
18389
18945
|
// #region @import "../button/_index.scss"; -> packages/material/scss/button/_index.scss
|
|
@@ -18405,35 +18961,12 @@ $coloreditor-views-gap: $coloreditor-spacer !default;
|
|
|
18405
18961
|
|
|
18406
18962
|
// Component
|
|
18407
18963
|
// #region @import "_variables.scss"; -> packages/material/scss/colorpicker/_variables.scss
|
|
18408
|
-
//
|
|
18409
|
-
$colorpicker-font-family: $font-family !default;
|
|
18410
|
-
$colorpicker-font-size: $font-size !default;
|
|
18411
|
-
$colorpicker-line-height: $line-height !default;
|
|
18412
|
-
|
|
18413
|
-
$colorpicker-bg: null !default;
|
|
18414
|
-
$colorpicker-text: $kendo-input-text !default;
|
|
18415
|
-
$colorpicker-border: $kendo-input-border !default;
|
|
18416
|
-
$colorpicker-gradient: null !default;
|
|
18417
|
-
|
|
18418
|
-
$colorpicker-hovered-bg: null !default;
|
|
18419
|
-
$colorpicker-hovered-text: null !default;
|
|
18420
|
-
$colorpicker-hovered-border: $kendo-input-hover-border !default;
|
|
18421
|
-
$colorpicker-hovered-gradient: null !default;
|
|
18422
|
-
|
|
18423
|
-
$colorpicker-focused-bg: null !default;
|
|
18424
|
-
$colorpicker-focused-text: null !default;
|
|
18425
|
-
$colorpicker-focused-border: $kendo-input-focus-border !default;
|
|
18426
|
-
$colorpicker-focused-gradient: null !default;
|
|
18427
|
-
$colorpicker-focused-shadow: null !default;
|
|
18428
|
-
|
|
18429
|
-
$colorpicker-select-text: $subtle-text !default;
|
|
18430
|
-
$colorpicker-select-hovered-text: $kendo-input-text !default;
|
|
18431
|
-
$colorpicker-select-focused-text: $kendo-input-text !default;
|
|
18964
|
+
// Color picker
|
|
18432
18965
|
|
|
18433
18966
|
// #endregion
|
|
18434
18967
|
// #region @import "_layout.scss"; -> packages/material/scss/colorpicker/_layout.scss
|
|
18435
18968
|
// #region @import "~@progress/kendo-theme-default/scss/colorpicker/_layout.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/colorpicker/_layout.scss
|
|
18436
|
-
@include exports("colorpicker/layout") {
|
|
18969
|
+
@include exports( "colorpicker/layout" ) {
|
|
18437
18970
|
|
|
18438
18971
|
// Color picker
|
|
18439
18972
|
.k-colorpicker {
|
|
@@ -18449,7 +18982,7 @@ $colorpicker-select-focused-text: $kendo-input-text !default;
|
|
|
18449
18982
|
// #region @import "~@progress/kendo-theme-default/scss/colorpicker/_theme.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/colorpicker/_theme.scss
|
|
18450
18983
|
@include exports( "colorpicker/theme" ) {
|
|
18451
18984
|
|
|
18452
|
-
//
|
|
18985
|
+
// Color picker
|
|
18453
18986
|
.k-colorpicker {}
|
|
18454
18987
|
|
|
18455
18988
|
}
|
|
@@ -18469,26 +19002,14 @@ $colorpicker-select-focused-text: $kendo-input-text !default;
|
|
|
18469
19002
|
|
|
18470
19003
|
|
|
18471
19004
|
// Dependencies
|
|
18472
|
-
// #region @import "../common/_index.scss"; -> packages/material/scss/common/_index.scss
|
|
18473
|
-
// File already imported_once. Skipping output.
|
|
18474
|
-
// #endregion
|
|
18475
19005
|
// #region @import "../input/_index.scss"; -> packages/material/scss/input/_index.scss
|
|
18476
19006
|
// File already imported_once. Skipping output.
|
|
18477
19007
|
// #endregion
|
|
18478
|
-
// #region @import "../floating-label/_index.scss"; -> packages/material/scss/floating-label/_index.scss
|
|
18479
|
-
// File already imported_once. Skipping output.
|
|
18480
|
-
// #endregion
|
|
18481
|
-
// #region @import "../popup/_index.scss"; -> packages/material/scss/popup/_index.scss
|
|
18482
|
-
// File already imported_once. Skipping output.
|
|
18483
|
-
// #endregion
|
|
18484
|
-
// #region @import "../icons/_index.scss"; -> packages/material/scss/icons/_index.scss
|
|
18485
|
-
// File already imported_once. Skipping output.
|
|
18486
|
-
// #endregion
|
|
18487
19008
|
|
|
18488
19009
|
|
|
18489
19010
|
// Component
|
|
18490
19011
|
// #region @import "_variables.scss"; -> packages/material/scss/dateinput/_variables.scss
|
|
18491
|
-
//
|
|
19012
|
+
// Date input
|
|
18492
19013
|
|
|
18493
19014
|
// #endregion
|
|
18494
19015
|
// #region @import "_layout.scss"; -> packages/material/scss/dateinput/_layout.scss
|
|
@@ -18524,19 +19045,13 @@ $colorpicker-select-focused-text: $kendo-input-text !default;
|
|
|
18524
19045
|
|
|
18525
19046
|
|
|
18526
19047
|
// Dependencies
|
|
18527
|
-
// #region @import "../common/_index.scss"; -> packages/material/scss/common/_index.scss
|
|
18528
|
-
// File already imported_once. Skipping output.
|
|
18529
|
-
// #endregion
|
|
18530
19048
|
// #region @import "../input/_index.scss"; -> packages/material/scss/input/_index.scss
|
|
18531
19049
|
// File already imported_once. Skipping output.
|
|
18532
19050
|
// #endregion
|
|
18533
|
-
// #region @import "../floating-label/_index.scss"; -> packages/material/scss/floating-label/_index.scss
|
|
18534
|
-
// File already imported_once. Skipping output.
|
|
18535
|
-
// #endregion
|
|
18536
19051
|
// #region @import "../popup/_index.scss"; -> packages/material/scss/popup/_index.scss
|
|
18537
19052
|
// File already imported_once. Skipping output.
|
|
18538
19053
|
// #endregion
|
|
18539
|
-
// #region @import "../
|
|
19054
|
+
// #region @import "../calendar/_index.scss"; -> packages/material/scss/calendar/_index.scss
|
|
18540
19055
|
// File already imported_once. Skipping output.
|
|
18541
19056
|
// #endregion
|
|
18542
19057
|
|
|
@@ -18579,26 +19094,26 @@ $colorpicker-select-focused-text: $kendo-input-text !default;
|
|
|
18579
19094
|
|
|
18580
19095
|
|
|
18581
19096
|
// Dependencies
|
|
18582
|
-
// #region @import "../common/_index.scss"; -> packages/material/scss/common/_index.scss
|
|
18583
|
-
// File already imported_once. Skipping output.
|
|
18584
|
-
// #endregion
|
|
18585
19097
|
// #region @import "../input/_index.scss"; -> packages/material/scss/input/_index.scss
|
|
18586
19098
|
// File already imported_once. Skipping output.
|
|
18587
19099
|
// #endregion
|
|
18588
|
-
// #region @import "../
|
|
19100
|
+
// #region @import "../button/_index.scss"; -> packages/material/scss/button/_index.scss
|
|
18589
19101
|
// File already imported_once. Skipping output.
|
|
18590
19102
|
// #endregion
|
|
18591
19103
|
// #region @import "../popup/_index.scss"; -> packages/material/scss/popup/_index.scss
|
|
18592
19104
|
// File already imported_once. Skipping output.
|
|
18593
19105
|
// #endregion
|
|
18594
|
-
// #region @import "../
|
|
19106
|
+
// #region @import "../list/_index.scss"; -> packages/material/scss/list/_index.scss
|
|
19107
|
+
// File already imported_once. Skipping output.
|
|
19108
|
+
// #endregion
|
|
19109
|
+
// #region @import "../timeselector/_index.scss"; -> packages/material/scss/timeselector/_index.scss
|
|
18595
19110
|
// File already imported_once. Skipping output.
|
|
18596
19111
|
// #endregion
|
|
18597
19112
|
|
|
18598
19113
|
|
|
18599
19114
|
// Component
|
|
18600
19115
|
// #region @import "_variables.scss"; -> packages/material/scss/timepicker/_variables.scss
|
|
18601
|
-
//
|
|
19116
|
+
// Time picker
|
|
18602
19117
|
|
|
18603
19118
|
// #endregion
|
|
18604
19119
|
// #region @import "_layout.scss"; -> packages/material/scss/timepicker/_layout.scss
|
|
@@ -18634,33 +19149,40 @@ $colorpicker-select-focused-text: $kendo-input-text !default;
|
|
|
18634
19149
|
|
|
18635
19150
|
|
|
18636
19151
|
// Dependencies
|
|
18637
|
-
// #region @import "../common/_index.scss"; -> packages/material/scss/common/_index.scss
|
|
18638
|
-
// File already imported_once. Skipping output.
|
|
18639
|
-
// #endregion
|
|
18640
19152
|
// #region @import "../input/_index.scss"; -> packages/material/scss/input/_index.scss
|
|
18641
19153
|
// File already imported_once. Skipping output.
|
|
18642
19154
|
// #endregion
|
|
18643
|
-
// #region @import "../
|
|
19155
|
+
// #region @import "../button/_index.scss"; -> packages/material/scss/button/_index.scss
|
|
18644
19156
|
// File already imported_once. Skipping output.
|
|
18645
19157
|
// #endregion
|
|
18646
19158
|
// #region @import "../popup/_index.scss"; -> packages/material/scss/popup/_index.scss
|
|
18647
19159
|
// File already imported_once. Skipping output.
|
|
18648
19160
|
// #endregion
|
|
18649
|
-
// #region @import "../
|
|
19161
|
+
// #region @import "../list/_index.scss"; -> packages/material/scss/list/_index.scss
|
|
19162
|
+
// File already imported_once. Skipping output.
|
|
19163
|
+
// #endregion
|
|
19164
|
+
// #region @import "../calendar/_index.scss"; -> packages/material/scss/calendar/_index.scss
|
|
19165
|
+
// File already imported_once. Skipping output.
|
|
19166
|
+
// #endregion
|
|
19167
|
+
// #region @import "../timeselector/_index.scss"; -> packages/material/scss/timeselector/_index.scss
|
|
19168
|
+
// File already imported_once. Skipping output.
|
|
19169
|
+
// #endregion
|
|
19170
|
+
// #region @import "../action-buttons/_index.scss"; -> packages/material/scss/action-buttons/_index.scss
|
|
18650
19171
|
// File already imported_once. Skipping output.
|
|
18651
19172
|
// #endregion
|
|
18652
19173
|
|
|
18653
19174
|
|
|
18654
19175
|
// Component
|
|
18655
19176
|
// #region @import "_variables.scss"; -> packages/material/scss/datetimepicker/_variables.scss
|
|
18656
|
-
//
|
|
19177
|
+
// DateTime
|
|
19178
|
+
$datetime-width: calc( #{$calendar-cell-size * 8} + #{$infinite-calendar-view-padding-x * 2}) !default;
|
|
18657
19179
|
|
|
18658
19180
|
// #endregion
|
|
18659
19181
|
// #region @import "_layout.scss"; -> packages/material/scss/datetimepicker/_layout.scss
|
|
18660
19182
|
// #region @import "~@progress/kendo-theme-default/scss/datetimepicker/_layout.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/datetimepicker/_layout.scss
|
|
18661
|
-
@include exports("datetimepicker/layout") {
|
|
19183
|
+
@include exports( "datetimepicker/layout" ) {
|
|
18662
19184
|
|
|
18663
|
-
//
|
|
19185
|
+
// Datetime picker
|
|
18664
19186
|
.k-datetimepicker {}
|
|
18665
19187
|
|
|
18666
19188
|
}
|
|
@@ -18670,9 +19192,9 @@ $colorpicker-select-focused-text: $kendo-input-text !default;
|
|
|
18670
19192
|
// #endregion
|
|
18671
19193
|
// #region @import "_theme.scss"; -> packages/material/scss/datetimepicker/_theme.scss
|
|
18672
19194
|
// #region @import "~@progress/kendo-theme-default/scss/datetimepicker/_theme.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/datetimepicker/_theme.scss
|
|
18673
|
-
@include exports("datetimepicker/theme") {
|
|
19195
|
+
@include exports( "datetimepicker/theme" ) {
|
|
18674
19196
|
|
|
18675
|
-
//
|
|
19197
|
+
// Datetime picker
|
|
18676
19198
|
.k-datetimepicker {}
|
|
18677
19199
|
|
|
18678
19200
|
}
|
|
@@ -18728,492 +19250,6 @@ $colorpicker-select-focused-text: $kendo-input-text !default;
|
|
|
18728
19250
|
|
|
18729
19251
|
// #endregion
|
|
18730
19252
|
|
|
18731
|
-
// #endregion
|
|
18732
|
-
|
|
18733
|
-
// #endregion
|
|
18734
|
-
// #region @import "datetime/_index.scss"; -> packages/material/scss/datetime/_index.scss
|
|
18735
|
-
// #region @import "../core/_index.scss"; -> packages/material/scss/core/_index.scss
|
|
18736
|
-
// File already imported_once. Skipping output.
|
|
18737
|
-
// #endregion
|
|
18738
|
-
|
|
18739
|
-
|
|
18740
|
-
// Dependencies
|
|
18741
|
-
// #region @import "../common/_index.scss"; -> packages/material/scss/common/_index.scss
|
|
18742
|
-
// File already imported_once. Skipping output.
|
|
18743
|
-
// #endregion
|
|
18744
|
-
// #region @import "../action-buttons/_index.scss"; -> packages/material/scss/action-buttons/_index.scss
|
|
18745
|
-
// File already imported_once. Skipping output.
|
|
18746
|
-
// #endregion
|
|
18747
|
-
// #region @import "../input/_index.scss"; -> packages/material/scss/input/_index.scss
|
|
18748
|
-
// File already imported_once. Skipping output.
|
|
18749
|
-
// #endregion
|
|
18750
|
-
// #region @import "../floating-label/_index.scss"; -> packages/material/scss/floating-label/_index.scss
|
|
18751
|
-
// File already imported_once. Skipping output.
|
|
18752
|
-
// #endregion
|
|
18753
|
-
// #region @import "../calendar/_index.scss"; -> packages/material/scss/calendar/_index.scss
|
|
18754
|
-
// File already imported_once. Skipping output.
|
|
18755
|
-
// #endregion
|
|
18756
|
-
// #region @import "../popup/_index.scss"; -> packages/material/scss/popup/_index.scss
|
|
18757
|
-
// File already imported_once. Skipping output.
|
|
18758
|
-
// #endregion
|
|
18759
|
-
|
|
18760
|
-
|
|
18761
|
-
// Component
|
|
18762
|
-
// #region @import "_variables.scss"; -> packages/material/scss/datetime/_variables.scss
|
|
18763
|
-
// DateTime
|
|
18764
|
-
$time-highlight-size: 1px !default;
|
|
18765
|
-
|
|
18766
|
-
$time-list-title-text: $subtle-text !default;
|
|
18767
|
-
$time-list-title-focus-text: $component-text !default;
|
|
18768
|
-
|
|
18769
|
-
$time-list-highlight-bg: null !default;
|
|
18770
|
-
$time-list-highlight-border: null !default;
|
|
18771
|
-
|
|
18772
|
-
$time-list-focused-bg: null !default;
|
|
18773
|
-
|
|
18774
|
-
$time-header-padding: null !default;
|
|
18775
|
-
$timepicker-header-height: 2em !default;
|
|
18776
|
-
|
|
18777
|
-
$time-list-padding: $padding-y * 5 !default;
|
|
18778
|
-
$time-list-focus-size: 2px !default;
|
|
18779
|
-
$time-list-width: 4em !default;
|
|
18780
|
-
$time-list-height: 200px !default;
|
|
18781
|
-
|
|
18782
|
-
$time-list-item-padding-x: $padding-x !default;
|
|
18783
|
-
$time-list-item-padding-y: $padding-y !default;
|
|
18784
|
-
|
|
18785
|
-
$dateinput-text: $component-text !default;
|
|
18786
|
-
|
|
18787
|
-
$datetime-width: calc( #{$calendar-cell-size * 8} + #{$infinite-calendar-view-padding-x * 2}) !default;
|
|
18788
|
-
|
|
18789
|
-
$datetime-bg: $kendo-input-bg !default;
|
|
18790
|
-
$datetime-text: $kendo-input-text !default;
|
|
18791
|
-
$datetime-border: $kendo-input-border !default;
|
|
18792
|
-
|
|
18793
|
-
$datetime-hovered-bg: $kendo-input-hover-bg !default;
|
|
18794
|
-
$datetime-hovered-text: $kendo-input-hover-text !default;
|
|
18795
|
-
$datetime-hovered-border: $kendo-input-hover-border !default;
|
|
18796
|
-
|
|
18797
|
-
$datetime-focused-bg: $kendo-input-focus-bg !default;
|
|
18798
|
-
$datetime-focused-text: $kendo-input-focus-text !default;
|
|
18799
|
-
$datetime-focused-border: $kendo-input-focus-border !default;
|
|
18800
|
-
$datetime-focused-shadow: $kendo-input-focus-shadow !default;
|
|
18801
|
-
|
|
18802
|
-
$datetime-select-bg: null !default;
|
|
18803
|
-
$datetime-select-text: $subtle-text !default;
|
|
18804
|
-
$datetime-select-border: null !default;
|
|
18805
|
-
$datetime-select-gradient: null !default;
|
|
18806
|
-
|
|
18807
|
-
$datetime-select-hovered-bg: null !default;
|
|
18808
|
-
$datetime-select-hovered-text: $kendo-input-text !default;
|
|
18809
|
-
$datetime-select-hovered-border: null !default;
|
|
18810
|
-
$datetime-select-hovered-gradient: null !default;
|
|
18811
|
-
|
|
18812
|
-
$datetime-select-pressed-bg: null !default;
|
|
18813
|
-
$datetime-select-pressed-text: $primary !default;
|
|
18814
|
-
$datetime-select-pressed-border: null !default;
|
|
18815
|
-
$datetime-select-pressed-gradient: null !default;
|
|
18816
|
-
|
|
18817
|
-
// #endregion
|
|
18818
|
-
// #region @import "_layout.scss"; -> packages/material/scss/datetime/_layout.scss
|
|
18819
|
-
// #region @import "~@progress/kendo-theme-default/scss/datetime/_layout.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/datetime/_layout.scss
|
|
18820
|
-
@include exports("datetime/layout") {
|
|
18821
|
-
|
|
18822
|
-
.k-datetime-container {
|
|
18823
|
-
|
|
18824
|
-
.k-datetime-wrap {
|
|
18825
|
-
width: $datetime-width;
|
|
18826
|
-
overflow: hidden;
|
|
18827
|
-
}
|
|
18828
|
-
|
|
18829
|
-
.k-datetime-buttongroup {
|
|
18830
|
-
padding: $kendo-button-padding-x;
|
|
18831
|
-
}
|
|
18832
|
-
|
|
18833
|
-
.k-datetime-selector {
|
|
18834
|
-
display: flex;
|
|
18835
|
-
transition: transform .2s;
|
|
18836
|
-
}
|
|
18837
|
-
|
|
18838
|
-
.k-datetime-calendar-wrap,
|
|
18839
|
-
.k-datetime-time-wrap {
|
|
18840
|
-
text-align: center;
|
|
18841
|
-
flex: 0 0 $datetime-width;
|
|
18842
|
-
}
|
|
18843
|
-
|
|
18844
|
-
.k-timeselector {
|
|
18845
|
-
outline: none;
|
|
18846
|
-
}
|
|
18847
|
-
|
|
18848
|
-
.k-time-list-container {
|
|
18849
|
-
justify-content: center;
|
|
18850
|
-
}
|
|
18851
|
-
|
|
18852
|
-
.k-time-tab {
|
|
18853
|
-
|
|
18854
|
-
.k-datetime-selector {
|
|
18855
|
-
transform: translateX(-100%);
|
|
18856
|
-
}
|
|
18857
|
-
}
|
|
18858
|
-
|
|
18859
|
-
.k-rtl &,
|
|
18860
|
-
&.k-rtl,
|
|
18861
|
-
[dir="rtl"] &,
|
|
18862
|
-
&[dir="rtl"] {
|
|
18863
|
-
.k-time-tab {
|
|
18864
|
-
|
|
18865
|
-
.k-datetime-selector {
|
|
18866
|
-
transform: translateX(100%);
|
|
18867
|
-
}
|
|
18868
|
-
}
|
|
18869
|
-
}
|
|
18870
|
-
}
|
|
18871
|
-
|
|
18872
|
-
// Infinite timepicker
|
|
18873
|
-
.k-timeselector {}
|
|
18874
|
-
|
|
18875
|
-
|
|
18876
|
-
// Header
|
|
18877
|
-
.k-time-header {
|
|
18878
|
-
display: flex;
|
|
18879
|
-
align-items: center;
|
|
18880
|
-
justify-content: space-between;
|
|
18881
|
-
padding: 2 * $padding-y $padding-x * 2;
|
|
18882
|
-
line-height: $timepicker-header-height;
|
|
18883
|
-
|
|
18884
|
-
.k-title {
|
|
18885
|
-
font-weight: bold;
|
|
18886
|
-
}
|
|
18887
|
-
|
|
18888
|
-
.k-time-now {
|
|
18889
|
-
border-width: 0;
|
|
18890
|
-
line-height: inherit;
|
|
18891
|
-
cursor: pointer;
|
|
18892
|
-
}
|
|
18893
|
-
}
|
|
18894
|
-
|
|
18895
|
-
// Content
|
|
18896
|
-
.k-time-list-wrapper {
|
|
18897
|
-
display: inline-block;
|
|
18898
|
-
overflow: hidden;
|
|
18899
|
-
box-sizing: content-box;
|
|
18900
|
-
overflow-x: hidden;
|
|
18901
|
-
overflow-y: auto;
|
|
18902
|
-
position: relative;
|
|
18903
|
-
padding: $time-list-padding 0;
|
|
18904
|
-
text-align: center;
|
|
18905
|
-
min-width: $time-list-width;
|
|
18906
|
-
height: $time-list-height;
|
|
18907
|
-
flex: 1 1 auto;
|
|
18908
|
-
|
|
18909
|
-
.k-title {
|
|
18910
|
-
display: block;
|
|
18911
|
-
text-align: center;
|
|
18912
|
-
font-size: $font-size-xs;
|
|
18913
|
-
position: absolute;
|
|
18914
|
-
text-transform: capitalize;
|
|
18915
|
-
font-weight: bold;
|
|
18916
|
-
min-width: 100%;
|
|
18917
|
-
height: 1.5em;
|
|
18918
|
-
line-height: 1.5em;
|
|
18919
|
-
margin-top: -$time-list-padding;
|
|
18920
|
-
z-index: 12;
|
|
18921
|
-
}
|
|
18922
|
-
|
|
18923
|
-
&.k-state-focused {
|
|
18924
|
-
&::before,
|
|
18925
|
-
&::after {
|
|
18926
|
-
display: block;
|
|
18927
|
-
content: " ";
|
|
18928
|
-
position: absolute;
|
|
18929
|
-
width: 100%;
|
|
18930
|
-
left: 0;
|
|
18931
|
-
pointer-events: none;
|
|
18932
|
-
height: calc(50% - 1em);
|
|
18933
|
-
box-sizing: border-box;
|
|
18934
|
-
border-width: 0;
|
|
18935
|
-
border-style: solid;
|
|
18936
|
-
}
|
|
18937
|
-
|
|
18938
|
-
&::before {
|
|
18939
|
-
top: 0;
|
|
18940
|
-
}
|
|
18941
|
-
|
|
18942
|
-
&::after {
|
|
18943
|
-
bottom: 0;
|
|
18944
|
-
}
|
|
18945
|
-
}
|
|
18946
|
-
}
|
|
18947
|
-
|
|
18948
|
-
.k-time-container {
|
|
18949
|
-
position: absolute;
|
|
18950
|
-
display: block;
|
|
18951
|
-
overflow-x: hidden;
|
|
18952
|
-
overflow-y: scroll;
|
|
18953
|
-
line-height: $line-height;
|
|
18954
|
-
left: 0;
|
|
18955
|
-
right: 0;
|
|
18956
|
-
top: $time-list-padding;
|
|
18957
|
-
bottom: $time-list-padding;
|
|
18958
|
-
|
|
18959
|
-
@include hide-scrollbar("right");
|
|
18960
|
-
|
|
18961
|
-
> ul {
|
|
18962
|
-
height: auto;
|
|
18963
|
-
width: $time-list-width;
|
|
18964
|
-
margin: auto;
|
|
18965
|
-
}
|
|
18966
|
-
|
|
18967
|
-
.k-rtl &,
|
|
18968
|
-
&.k-rtl,
|
|
18969
|
-
[dir="rtl"] &,
|
|
18970
|
-
&[dir="rtl"] {
|
|
18971
|
-
@include hide-scrollbar("left");
|
|
18972
|
-
}
|
|
18973
|
-
}
|
|
18974
|
-
|
|
18975
|
-
.k-time-list-container {
|
|
18976
|
-
display: flex;
|
|
18977
|
-
position: relative;
|
|
18978
|
-
}
|
|
18979
|
-
|
|
18980
|
-
.k-time-list {
|
|
18981
|
-
position: absolute;
|
|
18982
|
-
display: flex;
|
|
18983
|
-
z-index: 10;
|
|
18984
|
-
outline: 0;
|
|
18985
|
-
bottom: 0;
|
|
18986
|
-
right: 0;
|
|
18987
|
-
left: 0;
|
|
18988
|
-
top: 0;
|
|
18989
|
-
|
|
18990
|
-
&::before,
|
|
18991
|
-
&::after {
|
|
18992
|
-
display: block;
|
|
18993
|
-
position: absolute;
|
|
18994
|
-
content: " ";
|
|
18995
|
-
height: 0;
|
|
18996
|
-
line-height: 0;
|
|
18997
|
-
z-index: 1;
|
|
18998
|
-
width: 200%;
|
|
18999
|
-
left: -50%;
|
|
19000
|
-
}
|
|
19001
|
-
|
|
19002
|
-
&::before { top: 0; }
|
|
19003
|
-
&::after { bottom: 0; }
|
|
19004
|
-
}
|
|
19005
|
-
|
|
19006
|
-
.k-time-list .k-item {
|
|
19007
|
-
padding: $time-list-item-padding-y $time-list-item-padding-x;
|
|
19008
|
-
min-height: calc( #{decimal-round($line-height-em, 2)} + 2px );
|
|
19009
|
-
line-height: calc( #{decimal-round($line-height-em, 2)} + 2px );
|
|
19010
|
-
}
|
|
19011
|
-
|
|
19012
|
-
.k-time-highlight {
|
|
19013
|
-
position: absolute;
|
|
19014
|
-
top: 50%;
|
|
19015
|
-
left: 0;
|
|
19016
|
-
right: 0;
|
|
19017
|
-
transform: translateY(-50%);
|
|
19018
|
-
width: 100%;
|
|
19019
|
-
height: $kendo-button-inner-calc-size;
|
|
19020
|
-
z-index: 1;
|
|
19021
|
-
border-width: $time-highlight-size 0;
|
|
19022
|
-
border-style: solid;
|
|
19023
|
-
}
|
|
19024
|
-
|
|
19025
|
-
.k-time-container .k-scrollable-placeholder {
|
|
19026
|
-
position: absolute;
|
|
19027
|
-
width: 1px;
|
|
19028
|
-
top: 0;
|
|
19029
|
-
right: 0;
|
|
19030
|
-
}
|
|
19031
|
-
|
|
19032
|
-
.k-time-separator {
|
|
19033
|
-
width: 0;
|
|
19034
|
-
height: 100%;
|
|
19035
|
-
display: inline-flex;
|
|
19036
|
-
align-self: center;
|
|
19037
|
-
justify-content: center;
|
|
19038
|
-
z-index: 11;
|
|
19039
|
-
}
|
|
19040
|
-
}
|
|
19041
|
-
|
|
19042
|
-
// #endregion
|
|
19043
|
-
|
|
19044
|
-
@include exports("datetime/layout/material") {
|
|
19045
|
-
|
|
19046
|
-
.k-timeselector,
|
|
19047
|
-
.k-datetime-wrap {
|
|
19048
|
-
.k-time-header {
|
|
19049
|
-
padding: $padding-x-sm calc( #{$padding-x} + 2px );
|
|
19050
|
-
|
|
19051
|
-
.k-title {
|
|
19052
|
-
font-weight: bold;
|
|
19053
|
-
}
|
|
19054
|
-
|
|
19055
|
-
.k-time-now {
|
|
19056
|
-
cursor: pointer;
|
|
19057
|
-
text-transform: uppercase;
|
|
19058
|
-
font-weight: bold;
|
|
19059
|
-
padding: 0;
|
|
19060
|
-
min-width: auto;
|
|
19061
|
-
}
|
|
19062
|
-
}
|
|
19063
|
-
|
|
19064
|
-
.k-time-list-wrapper {
|
|
19065
|
-
.k-title {
|
|
19066
|
-
text-transform: uppercase;
|
|
19067
|
-
z-index: 99;
|
|
19068
|
-
}
|
|
19069
|
-
}
|
|
19070
|
-
|
|
19071
|
-
.k-time-list-container {
|
|
19072
|
-
.k-time-separator {
|
|
19073
|
-
display: none;
|
|
19074
|
-
}
|
|
19075
|
-
}
|
|
19076
|
-
|
|
19077
|
-
}
|
|
19078
|
-
|
|
19079
|
-
}
|
|
19080
|
-
|
|
19081
|
-
// #endregion
|
|
19082
|
-
// #region @import "_theme.scss"; -> packages/material/scss/datetime/_theme.scss
|
|
19083
|
-
// #region @import "~@progress/kendo-theme-default/scss/datetime/_theme.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/datetime/_theme.scss
|
|
19084
|
-
@include exports("datetime/theme") {
|
|
19085
|
-
|
|
19086
|
-
// Timepicker header
|
|
19087
|
-
.k-time-header {
|
|
19088
|
-
|
|
19089
|
-
.k-time-now {
|
|
19090
|
-
color: $link-text;
|
|
19091
|
-
background: transparent;
|
|
19092
|
-
|
|
19093
|
-
&:hover,
|
|
19094
|
-
&:focus {
|
|
19095
|
-
color: $link-hover-text;
|
|
19096
|
-
}
|
|
19097
|
-
}
|
|
19098
|
-
}
|
|
19099
|
-
|
|
19100
|
-
|
|
19101
|
-
// Timepicker content
|
|
19102
|
-
.k-time-list-wrapper {
|
|
19103
|
-
|
|
19104
|
-
.k-title {
|
|
19105
|
-
color: $time-list-title-text;
|
|
19106
|
-
}
|
|
19107
|
-
|
|
19108
|
-
&.k-state-focused {
|
|
19109
|
-
.k-title {
|
|
19110
|
-
color: $time-list-title-focus-text;
|
|
19111
|
-
}
|
|
19112
|
-
|
|
19113
|
-
&::before,
|
|
19114
|
-
&::after {
|
|
19115
|
-
background-color: $time-list-focused-bg;
|
|
19116
|
-
}
|
|
19117
|
-
}
|
|
19118
|
-
}
|
|
19119
|
-
|
|
19120
|
-
.k-time-list {
|
|
19121
|
-
&::before,
|
|
19122
|
-
&::after {
|
|
19123
|
-
$shadow-size: 3em;
|
|
19124
|
-
box-shadow: 0 0 $shadow-size ($shadow-size / 2) $popup-bg;
|
|
19125
|
-
}
|
|
19126
|
-
|
|
19127
|
-
.k-item:hover {
|
|
19128
|
-
color: $primary;
|
|
19129
|
-
}
|
|
19130
|
-
}
|
|
19131
|
-
|
|
19132
|
-
.k-time-container {
|
|
19133
|
-
background: transparent;
|
|
19134
|
-
}
|
|
19135
|
-
|
|
19136
|
-
.k-time-highlight {
|
|
19137
|
-
@include fill(
|
|
19138
|
-
$bg: $time-list-highlight-bg,
|
|
19139
|
-
$border: $time-list-highlight-border
|
|
19140
|
-
);
|
|
19141
|
-
}
|
|
19142
|
-
|
|
19143
|
-
.k-datetime-container {
|
|
19144
|
-
.k-date-tab {
|
|
19145
|
-
|
|
19146
|
-
.k-datetime-buttongroup,
|
|
19147
|
-
.k-datetime-selector {
|
|
19148
|
-
background-color: $component-bg;
|
|
19149
|
-
}
|
|
19150
|
-
}
|
|
19151
|
-
}
|
|
19152
|
-
|
|
19153
|
-
}
|
|
19154
|
-
|
|
19155
|
-
// #endregion
|
|
19156
|
-
|
|
19157
|
-
@include exports( "datetime/theme/material" ) {
|
|
19158
|
-
|
|
19159
|
-
.k-timeselector,
|
|
19160
|
-
.k-datetime-wrap {
|
|
19161
|
-
border-color: inherit;
|
|
19162
|
-
}
|
|
19163
|
-
|
|
19164
|
-
.k-timeselector,
|
|
19165
|
-
.k-datetime-wrap {
|
|
19166
|
-
.k-time-header {
|
|
19167
|
-
|
|
19168
|
-
.k-time-now {
|
|
19169
|
-
&::before {
|
|
19170
|
-
opacity: 0;
|
|
19171
|
-
}
|
|
19172
|
-
}
|
|
19173
|
-
}
|
|
19174
|
-
|
|
19175
|
-
.k-time-list-wrapper {
|
|
19176
|
-
|
|
19177
|
-
.k-time-list {
|
|
19178
|
-
.k-item:hover {
|
|
19179
|
-
@include fill(
|
|
19180
|
-
$node-hovered-text,
|
|
19181
|
-
$node-hovered-bg,
|
|
19182
|
-
$node-hovered-border,
|
|
19183
|
-
$node-hovered-gradient
|
|
19184
|
-
);
|
|
19185
|
-
}
|
|
19186
|
-
|
|
19187
|
-
&::before,
|
|
19188
|
-
&::after {
|
|
19189
|
-
$shadow-size: 3em;
|
|
19190
|
-
box-shadow: 0 0 $shadow-size ($shadow-size) $popup-bg;
|
|
19191
|
-
}
|
|
19192
|
-
}
|
|
19193
|
-
}
|
|
19194
|
-
}
|
|
19195
|
-
|
|
19196
|
-
.k-time-container {
|
|
19197
|
-
background: transparent;
|
|
19198
|
-
}
|
|
19199
|
-
|
|
19200
|
-
.k-time-highlight {
|
|
19201
|
-
background-color: $component-bg;
|
|
19202
|
-
border-color: $component-border;
|
|
19203
|
-
}
|
|
19204
|
-
|
|
19205
|
-
.k-datetime-container {
|
|
19206
|
-
.k-date-tab {
|
|
19207
|
-
|
|
19208
|
-
.k-datetime-buttongroup,
|
|
19209
|
-
.k-datetime-selector {
|
|
19210
|
-
background-color: $component-bg;
|
|
19211
|
-
}
|
|
19212
|
-
}
|
|
19213
|
-
}
|
|
19214
|
-
}
|
|
19215
|
-
|
|
19216
|
-
|
|
19217
19253
|
// #endregion
|
|
19218
19254
|
|
|
19219
19255
|
// #endregion
|
|
@@ -19756,52 +19792,148 @@ $dropdownlist-select-focused-text: $kendo-input-text !default;
|
|
|
19756
19792
|
// Component
|
|
19757
19793
|
// #region @import "_variables.scss"; -> packages/material/scss/treeview/_variables.scss
|
|
19758
19794
|
// Treeview
|
|
19759
|
-
$treeview-padding-x: 0px !default;
|
|
19760
|
-
$treeview-padding-y: 0px !default;
|
|
19761
|
-
$treeview-font-family: $font-family !default;
|
|
19762
|
-
$treeview-font-size: $font-size !default;
|
|
19763
|
-
$treeview-line-height: (20 / 14) !default;
|
|
19764
|
-
|
|
19765
|
-
$treeview-indent: 16px !default;
|
|
19766
|
-
|
|
19767
|
-
$treeview-item-padding-x: 8px !default;
|
|
19768
|
-
$treeview-item-padding-y: 6px !default;
|
|
19769
|
-
$treeview-item-border-width: 0px !default;
|
|
19770
|
-
$treeview-item-border-radius: null !default;
|
|
19771
|
-
|
|
19772
|
-
$treeview-bg: null !default;
|
|
19773
|
-
$treeview-text: $component-text !default;
|
|
19774
|
-
$treeview-border: null !default;
|
|
19775
|
-
|
|
19776
|
-
$treeview-item-hovered-bg: rgba( $treeview-text, .07 ) !default;
|
|
19777
|
-
$treeview-item-hovered-text: null !default;
|
|
19778
|
-
$treeview-item-hovered-border: null !default;
|
|
19779
|
-
$treeview-item-hovered-gradient: null !default;
|
|
19780
|
-
|
|
19781
|
-
$treeview-item-selected-bg: null !default;
|
|
19782
|
-
$treeview-item-selected-text: $selected-bg !default;
|
|
19783
|
-
$treeview-item-selected-border: null !default;
|
|
19784
|
-
$treeview-item-selected-gradient: null !default;
|
|
19785
19795
|
|
|
19786
|
-
|
|
19787
|
-
|
|
19788
|
-
|
|
19789
|
-
|
|
19790
|
-
|
|
19791
|
-
|
|
19792
|
-
|
|
19793
|
-
|
|
19794
|
-
|
|
19795
|
-
|
|
19796
|
-
|
|
19797
|
-
|
|
19798
|
-
|
|
19799
|
-
|
|
19796
|
+
/// The sizes of the treeview.
|
|
19797
|
+
/// @group treeview
|
|
19798
|
+
$kendo-treeview-sizes: (
|
|
19799
|
+
sm: (
|
|
19800
|
+
font-size: map-get( $spacing, 3),
|
|
19801
|
+
line-height: $line-height,
|
|
19802
|
+
item-padding-x: map-get( $spacing, thin ),
|
|
19803
|
+
item-padding-y: map-get( $spacing, 1 )
|
|
19804
|
+
),
|
|
19805
|
+
md: (
|
|
19806
|
+
font-size: $font-size,
|
|
19807
|
+
line-height: $line-height,
|
|
19808
|
+
item-padding-x: map-get( $spacing, 1 ),
|
|
19809
|
+
item-padding-y: map-get( $spacing, 2 )
|
|
19810
|
+
),
|
|
19811
|
+
lg: (
|
|
19812
|
+
font-size: map-get( $spacing, 4),
|
|
19813
|
+
line-height: $line-height,
|
|
19814
|
+
item-padding-x: map-get( $spacing, 2 ),
|
|
19815
|
+
item-padding-y: map-get( $spacing, 3 )
|
|
19816
|
+
)
|
|
19817
|
+
) !default;
|
|
19800
19818
|
|
|
19801
|
-
|
|
19802
|
-
|
|
19803
|
-
$treeview-
|
|
19804
|
-
|
|
19819
|
+
/// The horizontal padding of the treeview.
|
|
19820
|
+
/// @group treeview
|
|
19821
|
+
$kendo-treeview-padding-x: 0px !default;
|
|
19822
|
+
/// The vertical padding of the treeview.
|
|
19823
|
+
/// @group treeview
|
|
19824
|
+
$kendo-treeview-padding-y: 0px !default;
|
|
19825
|
+
/// The font family of the treeview.
|
|
19826
|
+
/// @group treeview
|
|
19827
|
+
$kendo-treeview-font-family: $font-family !default;
|
|
19828
|
+
/// The font size of the treeview.
|
|
19829
|
+
/// @group treeview
|
|
19830
|
+
$kendo-treeview-font-size: $font-size !default;
|
|
19831
|
+
/// The line height of the treeview.
|
|
19832
|
+
/// @group treeview
|
|
19833
|
+
$kendo-treeview-line-height: (20 / 14) !default;
|
|
19834
|
+
|
|
19835
|
+
/// The indent of the treeview item.
|
|
19836
|
+
/// @group treeview
|
|
19837
|
+
$kendo-treeview-indent: 16px !default;
|
|
19838
|
+
|
|
19839
|
+
/// The horizontal padding of the treeview item.
|
|
19840
|
+
/// @group treeview
|
|
19841
|
+
$kendo-treeview-item-padding-x: 8px !default;
|
|
19842
|
+
/// The vertical padding of the treeview item.
|
|
19843
|
+
/// @group treeview
|
|
19844
|
+
$kendo-treeview-item-padding-y: 6px !default;
|
|
19845
|
+
/// The border width of the treeview item.
|
|
19846
|
+
/// @group treeview
|
|
19847
|
+
$kendo-treeview-item-border-width: 0px !default;
|
|
19848
|
+
/// The border radius of the treeview item.
|
|
19849
|
+
/// @group treeview
|
|
19850
|
+
$kendo-treeview-item-border-radius: null !default;
|
|
19851
|
+
|
|
19852
|
+
/// The background of the treeview.
|
|
19853
|
+
/// @group treeview
|
|
19854
|
+
$kendo-treeview-bg: null !default;
|
|
19855
|
+
/// The text color of the treeview.
|
|
19856
|
+
/// @group treeview
|
|
19857
|
+
$kendo-treeview-text: $component-text !default;
|
|
19858
|
+
/// The border color of the treeview.
|
|
19859
|
+
/// @group treeview
|
|
19860
|
+
$kendo-treeview-border: null !default;
|
|
19861
|
+
|
|
19862
|
+
/// The background of a hovered treeview item.
|
|
19863
|
+
/// @group treeview
|
|
19864
|
+
$kendo-treeview-item-hovered-bg: rgba( $kendo-treeview-text, .07 ) !default;
|
|
19865
|
+
/// The text color of a hovered treeview item.
|
|
19866
|
+
/// @group treeview
|
|
19867
|
+
$kendo-treeview-item-hovered-text: null !default;
|
|
19868
|
+
/// The border of a hovered treeview item.
|
|
19869
|
+
/// @group treeview
|
|
19870
|
+
$kendo-treeview-item-hovered-border: null !default;
|
|
19871
|
+
/// The gradient of a hovered treeview item.
|
|
19872
|
+
/// @group treeview
|
|
19873
|
+
$kendo-treeview-item-hovered-gradient: null !default;
|
|
19874
|
+
|
|
19875
|
+
/// The background of a selected treeview item.
|
|
19876
|
+
/// @group treeview
|
|
19877
|
+
$kendo-treeview-item-selected-bg: null !default;
|
|
19878
|
+
/// The text color of a selected treeview item.
|
|
19879
|
+
/// @group treeview
|
|
19880
|
+
$kendo-treeview-item-selected-text: $selected-bg !default;
|
|
19881
|
+
/// The border of a selected treeview item.
|
|
19882
|
+
/// @group treeview
|
|
19883
|
+
$kendo-treeview-item-selected-border: null !default;
|
|
19884
|
+
/// The gradient of a selected treeview item.
|
|
19885
|
+
/// @group treeview
|
|
19886
|
+
$kendo-treeview-item-selected-gradient: null !default;
|
|
19887
|
+
|
|
19888
|
+
/// The shadow of a focused treeview item.
|
|
19889
|
+
/// @group treeview
|
|
19890
|
+
$kendo-treeview-item-focused-shadow: null !default;
|
|
19891
|
+
/// The shadow of a selected and focused treeview item.
|
|
19892
|
+
/// @group treeview
|
|
19893
|
+
$kendo-treeview-item-selected-focused-shadow: null !default;
|
|
19894
|
+
|
|
19895
|
+
/// The horizontal padding of the load more checkboxes.
|
|
19896
|
+
/// @group treeview
|
|
19897
|
+
$kendo-treeview-loadmore-checkboxes-padding-x: calc( #{$icon-spacing} + #{map-get( $kendo-checkbox-sizes, "md" )} + #{$kendo-treeview-indent} ) !default;
|
|
19898
|
+
/// The icon indent of the load more checkboxes.
|
|
19899
|
+
/// @group treeview
|
|
19900
|
+
$kendo-treeview-loadmore-checkboxes-icon-indent: calc( -1 * (#{$icon-spacing} + #{$kendo-treeview-indent}) ) !default;
|
|
19901
|
+
/// The horizontal margin of the load more checkboxes.
|
|
19902
|
+
/// @group treeview
|
|
19903
|
+
$kendo-treeview-loadmore-checkboxes-icon-margin-x: $icon-spacing !default;
|
|
19904
|
+
|
|
19905
|
+
/// The background of load more.
|
|
19906
|
+
/// @group treeview
|
|
19907
|
+
$kendo-treeview-loadmore-bg: transparent !default;
|
|
19908
|
+
/// The text color of load more.
|
|
19909
|
+
/// @group treeview
|
|
19910
|
+
$kendo-treeview-loadmore-text: $primary !default;
|
|
19911
|
+
/// The border of load more.
|
|
19912
|
+
/// @group treeview
|
|
19913
|
+
$kendo-treeview-loadmore-border: null !default;
|
|
19914
|
+
|
|
19915
|
+
/// The background of a hovered load more.
|
|
19916
|
+
/// @group treeview
|
|
19917
|
+
$kendo-treeview-loadmore-hover-bg: transparent !default;
|
|
19918
|
+
/// The text color of a hovered load more.
|
|
19919
|
+
/// @group treeview
|
|
19920
|
+
$kendo-treeview-loadmore-hover-text: $primary-darker !default;
|
|
19921
|
+
/// The border of a hovered load more.
|
|
19922
|
+
/// @group treeview
|
|
19923
|
+
$kendo-treeview-loadmore-hover-border: null !default;
|
|
19924
|
+
|
|
19925
|
+
/// The background of a focused load more.
|
|
19926
|
+
/// @group treeview
|
|
19927
|
+
$kendo-treeview-loadmore-focus-bg: transparent !default;
|
|
19928
|
+
/// The text color of a focused load more.
|
|
19929
|
+
/// @group treeview
|
|
19930
|
+
$kendo-treeview-loadmore-focus-text: $primary !default;
|
|
19931
|
+
/// The border of a focused load more.
|
|
19932
|
+
/// @group treeview
|
|
19933
|
+
$kendo-treeview-loadmore-focus-border: null !default;
|
|
19934
|
+
/// The shadow of a focused load more.
|
|
19935
|
+
/// @group treeview
|
|
19936
|
+
$kendo-treeview-loadmore-focus-shadow: none !default;
|
|
19805
19937
|
|
|
19806
19938
|
// #endregion
|
|
19807
19939
|
// #region @import "_layout.scss"; -> packages/material/scss/treeview/_layout.scss
|
|
@@ -19810,14 +19942,12 @@ $treeview-loadmore-focus-shadow: none !default;
|
|
|
19810
19942
|
|
|
19811
19943
|
// Base
|
|
19812
19944
|
.k-treeview {
|
|
19813
|
-
padding: $treeview-padding-y $treeview-padding-x;
|
|
19945
|
+
padding: $kendo-treeview-padding-y $kendo-treeview-padding-x;
|
|
19814
19946
|
border-width: 0;
|
|
19815
19947
|
background: none;
|
|
19816
19948
|
box-sizing: border-box;
|
|
19817
19949
|
outline: 0;
|
|
19818
|
-
font-family: $treeview-font-family;
|
|
19819
|
-
font-size: $treeview-font-size;
|
|
19820
|
-
line-height: $treeview-line-height;
|
|
19950
|
+
font-family: $kendo-treeview-font-family;
|
|
19821
19951
|
display: block;
|
|
19822
19952
|
cursor: default;
|
|
19823
19953
|
overflow: auto;
|
|
@@ -19825,15 +19955,15 @@ $treeview-loadmore-focus-shadow: none !default;
|
|
|
19825
19955
|
-webkit-touch-callout: none;
|
|
19826
19956
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
19827
19957
|
|
|
19828
|
-
> .k-group {
|
|
19958
|
+
> .k-treeview-group {
|
|
19829
19959
|
outline: 0;
|
|
19830
19960
|
-webkit-touch-callout: none;
|
|
19831
19961
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
19832
19962
|
}
|
|
19833
19963
|
|
|
19834
19964
|
.k-content,
|
|
19835
|
-
> .k-group,
|
|
19836
|
-
.k-item > .k-group {
|
|
19965
|
+
> .k-treeview-group,
|
|
19966
|
+
.k-treeview-item > .k-treeview-group {
|
|
19837
19967
|
margin: 0;
|
|
19838
19968
|
padding: 0;
|
|
19839
19969
|
background: none;
|
|
@@ -19846,9 +19976,9 @@ $treeview-loadmore-focus-shadow: none !default;
|
|
|
19846
19976
|
}
|
|
19847
19977
|
|
|
19848
19978
|
// Wrappers
|
|
19849
|
-
.k-top,
|
|
19850
|
-
.k-mid,
|
|
19851
|
-
.k-bot {
|
|
19979
|
+
.k-treeview-top,
|
|
19980
|
+
.k-treeview-mid,
|
|
19981
|
+
.k-treeview-bot {
|
|
19852
19982
|
display: flex;
|
|
19853
19983
|
flex-direction: row;
|
|
19854
19984
|
align-items: center;
|
|
@@ -19856,20 +19986,19 @@ $treeview-loadmore-focus-shadow: none !default;
|
|
|
19856
19986
|
}
|
|
19857
19987
|
|
|
19858
19988
|
// Items
|
|
19859
|
-
.k-item {
|
|
19989
|
+
.k-treeview-item {
|
|
19860
19990
|
outline-style: none;
|
|
19861
19991
|
margin: 0;
|
|
19862
|
-
padding: 0 0 0 $treeview-indent;
|
|
19992
|
+
padding: 0 0 0 $kendo-treeview-indent;
|
|
19863
19993
|
border-width: 0;
|
|
19864
19994
|
display: block;
|
|
19865
19995
|
}
|
|
19866
19996
|
|
|
19867
19997
|
// Link
|
|
19868
|
-
.k-
|
|
19869
|
-
@include border-radius( $treeview-item-border-radius );
|
|
19998
|
+
.k-treeview-leaf {
|
|
19999
|
+
@include border-radius( $kendo-treeview-item-border-radius );
|
|
19870
20000
|
margin: 0;
|
|
19871
|
-
|
|
19872
|
-
border: $treeview-item-border-width solid transparent;
|
|
20001
|
+
border: $kendo-treeview-item-border-width solid transparent;
|
|
19873
20002
|
text-decoration: none;
|
|
19874
20003
|
display: inline-flex;
|
|
19875
20004
|
align-items: center;
|
|
@@ -19877,7 +20006,7 @@ $treeview-loadmore-focus-shadow: none !default;
|
|
|
19877
20006
|
vertical-align: middle;
|
|
19878
20007
|
position: relative;
|
|
19879
20008
|
}
|
|
19880
|
-
.k-
|
|
20009
|
+
.k-treeview-leaf.k-state-focused {
|
|
19881
20010
|
z-index: 1;
|
|
19882
20011
|
}
|
|
19883
20012
|
|
|
@@ -19893,18 +20022,18 @@ $treeview-loadmore-focus-shadow: none !default;
|
|
|
19893
20022
|
}
|
|
19894
20023
|
}
|
|
19895
20024
|
.k-treeview-load-more-checkboxes-container {
|
|
19896
|
-
padding-left: $treeview-loadmore-checkboxes-padding-x;
|
|
20025
|
+
padding-left: $kendo-treeview-loadmore-checkboxes-padding-x;
|
|
19897
20026
|
|
|
19898
20027
|
.k-i-loading {
|
|
19899
|
-
margin-left: $treeview-loadmore-checkboxes-icon-indent;
|
|
19900
|
-
margin-right: $treeview-loadmore-checkboxes-icon-margin-x;
|
|
20028
|
+
margin-left: $kendo-treeview-loadmore-checkboxes-icon-indent;
|
|
20029
|
+
margin-right: $kendo-treeview-loadmore-checkboxes-icon-margin-x;
|
|
19901
20030
|
}
|
|
19902
20031
|
}
|
|
19903
20032
|
|
|
19904
20033
|
// Expand / collapse
|
|
19905
20034
|
.k-i-expand,
|
|
19906
20035
|
.k-i-collapse {
|
|
19907
|
-
margin-left: -$treeview-indent;
|
|
20036
|
+
margin-left: -$kendo-treeview-indent;
|
|
19908
20037
|
cursor: pointer;
|
|
19909
20038
|
|
|
19910
20039
|
+ .k-checkbox-wrapper {
|
|
@@ -19926,30 +20055,34 @@ $treeview-loadmore-focus-shadow: none !default;
|
|
|
19926
20055
|
}
|
|
19927
20056
|
|
|
19928
20057
|
// Other content
|
|
19929
|
-
.k-
|
|
19930
|
-
.k-
|
|
19931
|
-
.k-
|
|
20058
|
+
.k-treeview-leaf .k-icon,
|
|
20059
|
+
.k-treeview-leaf .k-image,
|
|
20060
|
+
.k-treeview-leaf .k-sprite {
|
|
19932
20061
|
margin-right: $icon-spacing;
|
|
19933
20062
|
}
|
|
19934
20063
|
}
|
|
19935
20064
|
|
|
20065
|
+
.k-treeview-toggle {}
|
|
20066
|
+
|
|
20067
|
+
.k-treeview-leaf-text {}
|
|
20068
|
+
|
|
19936
20069
|
// RTL
|
|
19937
20070
|
.k-rtl .k-treeview,
|
|
19938
20071
|
.k-treeview[dir="rtl"] {
|
|
19939
20072
|
|
|
19940
20073
|
// Items
|
|
19941
|
-
.k-item {
|
|
20074
|
+
.k-treeview-item {
|
|
19942
20075
|
padding-left: 0;
|
|
19943
|
-
padding-right: $treeview-indent;
|
|
20076
|
+
padding-right: $kendo-treeview-indent;
|
|
19944
20077
|
}
|
|
19945
20078
|
|
|
19946
20079
|
.k-treeview-load-more-checkboxes-container {
|
|
19947
20080
|
padding-left: 0;
|
|
19948
|
-
padding-right: $treeview-loadmore-checkboxes-padding-x;
|
|
20081
|
+
padding-right: $kendo-treeview-loadmore-checkboxes-padding-x;
|
|
19949
20082
|
|
|
19950
20083
|
.k-i-loading {
|
|
19951
|
-
margin-left: $treeview-loadmore-checkboxes-icon-margin-x;
|
|
19952
|
-
margin-right: $treeview-loadmore-checkboxes-icon-indent;
|
|
20084
|
+
margin-left: $kendo-treeview-loadmore-checkboxes-icon-margin-x;
|
|
20085
|
+
margin-right: $kendo-treeview-loadmore-checkboxes-icon-indent;
|
|
19953
20086
|
}
|
|
19954
20087
|
}
|
|
19955
20088
|
|
|
@@ -19957,7 +20090,7 @@ $treeview-loadmore-focus-shadow: none !default;
|
|
|
19957
20090
|
.k-i-expand,
|
|
19958
20091
|
.k-i-collapse {
|
|
19959
20092
|
margin-left: 0;
|
|
19960
|
-
margin-right: -$treeview-indent;
|
|
20093
|
+
margin-right: -$kendo-treeview-indent;
|
|
19961
20094
|
|
|
19962
20095
|
+ .k-checkbox-wrapper {
|
|
19963
20096
|
margin-right: $icon-spacing;
|
|
@@ -19971,13 +20104,28 @@ $treeview-loadmore-focus-shadow: none !default;
|
|
|
19971
20104
|
}
|
|
19972
20105
|
|
|
19973
20106
|
// Other content
|
|
19974
|
-
.k-
|
|
19975
|
-
.k-
|
|
19976
|
-
.k-
|
|
20107
|
+
.k-treeview-leaf .k-icon,
|
|
20108
|
+
.k-treeview-leaf .k-image,
|
|
20109
|
+
.k-treeview-leaf .k-sprite {
|
|
19977
20110
|
margin-left: $icon-spacing;
|
|
19978
20111
|
margin-right: 0;
|
|
19979
20112
|
}
|
|
20113
|
+
}
|
|
19980
20114
|
|
|
20115
|
+
@each $size, $size-props in $kendo-treeview-sizes {
|
|
20116
|
+
$_font-size: map-get( $size-props, font-size);
|
|
20117
|
+
$_line-height: map-get( $size-props, line-height);
|
|
20118
|
+
$_item-padding-x: map-get( $size-props, item-padding-x);
|
|
20119
|
+
$_item-padding-y: map-get( $size-props, item-padding-y);
|
|
20120
|
+
|
|
20121
|
+
.k-treeview-#{$size} {
|
|
20122
|
+
font-size: $_font-size;
|
|
20123
|
+
line-height: $_line-height;
|
|
20124
|
+
|
|
20125
|
+
.k-treeview-leaf {
|
|
20126
|
+
padding: $_item-padding-x $_item-padding-y;
|
|
20127
|
+
}
|
|
20128
|
+
}
|
|
19981
20129
|
}
|
|
19982
20130
|
}
|
|
19983
20131
|
|
|
@@ -19990,40 +20138,40 @@ $treeview-loadmore-focus-shadow: none !default;
|
|
|
19990
20138
|
// Appearance
|
|
19991
20139
|
.k-treeview {
|
|
19992
20140
|
@include fill(
|
|
19993
|
-
$treeview-text,
|
|
19994
|
-
$treeview-bg,
|
|
19995
|
-
$treeview-border
|
|
20141
|
+
$kendo-treeview-text,
|
|
20142
|
+
$kendo-treeview-bg,
|
|
20143
|
+
$kendo-treeview-border
|
|
19996
20144
|
);
|
|
19997
20145
|
|
|
19998
20146
|
|
|
19999
20147
|
// Item
|
|
20000
|
-
.k-
|
|
20148
|
+
.k-treeview-leaf {}
|
|
20001
20149
|
|
|
20002
20150
|
|
|
20003
20151
|
// Interactive states
|
|
20004
|
-
.k-
|
|
20005
|
-
.k-
|
|
20152
|
+
.k-treeview-leaf:hover,
|
|
20153
|
+
.k-treeview-leaf.k-hover {
|
|
20006
20154
|
@include fill(
|
|
20007
|
-
$treeview-item-hovered-text,
|
|
20008
|
-
$treeview-item-hovered-bg,
|
|
20009
|
-
$treeview-item-hovered-border,
|
|
20010
|
-
$treeview-item-hovered-gradient
|
|
20155
|
+
$kendo-treeview-item-hovered-text,
|
|
20156
|
+
$kendo-treeview-item-hovered-bg,
|
|
20157
|
+
$kendo-treeview-item-hovered-border,
|
|
20158
|
+
$kendo-treeview-item-hovered-gradient
|
|
20011
20159
|
);
|
|
20012
20160
|
}
|
|
20013
|
-
.k-
|
|
20161
|
+
.k-treeview-leaf.k-selected {
|
|
20014
20162
|
@include fill(
|
|
20015
|
-
$treeview-item-selected-text,
|
|
20016
|
-
$treeview-item-selected-bg,
|
|
20017
|
-
$treeview-item-selected-border,
|
|
20018
|
-
$treeview-item-selected-gradient
|
|
20163
|
+
$kendo-treeview-item-selected-text,
|
|
20164
|
+
$kendo-treeview-item-selected-bg,
|
|
20165
|
+
$kendo-treeview-item-selected-border,
|
|
20166
|
+
$kendo-treeview-item-selected-gradient
|
|
20019
20167
|
);
|
|
20020
20168
|
}
|
|
20021
|
-
.k-
|
|
20169
|
+
.k-treeview-leaf.k-focus {
|
|
20022
20170
|
@include fill(
|
|
20023
|
-
$treeview-item-hovered-text,
|
|
20024
|
-
$treeview-item-hovered-bg,
|
|
20025
|
-
$treeview-item-hovered-border,
|
|
20026
|
-
$treeview-item-hovered-gradient
|
|
20171
|
+
$kendo-treeview-item-hovered-text,
|
|
20172
|
+
$kendo-treeview-item-hovered-bg,
|
|
20173
|
+
$kendo-treeview-item-hovered-border,
|
|
20174
|
+
$kendo-treeview-item-hovered-gradient
|
|
20027
20175
|
);
|
|
20028
20176
|
}
|
|
20029
20177
|
}
|
|
@@ -20675,7 +20823,8 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
|
|
|
20675
20823
|
}
|
|
20676
20824
|
|
|
20677
20825
|
.k-switch-#{$size}[dir="rtl"],
|
|
20678
|
-
[dir="rtl"] .k-switch-#{$size}
|
|
20826
|
+
[dir="rtl"] .k-switch-#{$size},
|
|
20827
|
+
.k-rtl .k-switch-#{$size} {
|
|
20679
20828
|
|
|
20680
20829
|
.k-switch-label-on {
|
|
20681
20830
|
left: auto;
|
|
@@ -20698,7 +20847,8 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
|
|
|
20698
20847
|
|
|
20699
20848
|
// RTL
|
|
20700
20849
|
.k-switch[dir="rtl"],
|
|
20701
|
-
[dir="rtl"] .k-switch
|
|
20850
|
+
[dir="rtl"] .k-switch,
|
|
20851
|
+
.k-rtl .k-switch {
|
|
20702
20852
|
|
|
20703
20853
|
.k-switch-thumb {
|
|
20704
20854
|
transform: translate( 50%, -50% );
|
|
@@ -27905,6 +28055,11 @@ $panelbar-item-selected-hovered-focused-text: null !default;
|
|
|
27905
28055
|
$panelbar-item-selected-hovered-focused-border: null !default;
|
|
27906
28056
|
$panelbar-item-selected-hovered-focused-gradient: null !default;
|
|
27907
28057
|
|
|
28058
|
+
$panelbar-header-expanded-bg: null !default;
|
|
28059
|
+
$panelbar-header-expanded-text: null !default;
|
|
28060
|
+
$panelbar-header-expanded-border: null !default;
|
|
28061
|
+
$panelbar-header-expanded-gradient: null !default;
|
|
28062
|
+
|
|
27908
28063
|
// #endregion
|
|
27909
28064
|
// #region @import "_layout.scss"; -> packages/material/scss/panelbar/_layout.scss
|
|
27910
28065
|
// #region @import "~@progress/kendo-theme-default/scss/panelbar/_layout.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/panelbar/_layout.scss
|
|
@@ -28101,6 +28256,15 @@ $panelbar-item-selected-hovered-focused-gradient: null !default;
|
|
|
28101
28256
|
> .k-item,
|
|
28102
28257
|
> .k-panelbar-header {
|
|
28103
28258
|
|
|
28259
|
+
&.k-state-expanded.k-level-0 > .k-link {
|
|
28260
|
+
@include fill(
|
|
28261
|
+
$panelbar-header-expanded-text,
|
|
28262
|
+
$panelbar-header-expanded-bg,
|
|
28263
|
+
$panelbar-header-expanded-border,
|
|
28264
|
+
$panelbar-header-expanded-gradient
|
|
28265
|
+
);
|
|
28266
|
+
}
|
|
28267
|
+
|
|
28104
28268
|
// Normal
|
|
28105
28269
|
> .k-link {
|
|
28106
28270
|
@include fill(
|
|
@@ -28137,7 +28301,6 @@ $panelbar-item-selected-hovered-focused-gradient: null !default;
|
|
|
28137
28301
|
$panelbar-header-focused-border,
|
|
28138
28302
|
$panelbar-header-focused-gradient
|
|
28139
28303
|
);
|
|
28140
|
-
|
|
28141
28304
|
box-shadow: $panelbar-header-focused-shadow;
|
|
28142
28305
|
}
|
|
28143
28306
|
|
|
@@ -28234,7 +28397,6 @@ $panelbar-item-selected-hovered-focused-gradient: null !default;
|
|
|
28234
28397
|
$panelbar-item-focused-border,
|
|
28235
28398
|
$panelbar-item-focused-gradient
|
|
28236
28399
|
);
|
|
28237
|
-
|
|
28238
28400
|
box-shadow: $panelbar-item-focused-shadow;
|
|
28239
28401
|
}
|
|
28240
28402
|
|
|
@@ -29453,7 +29615,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
29453
29615
|
// #region @import "../autocomplete/_index.scss"; -> packages/material/scss/autocomplete/_index.scss
|
|
29454
29616
|
// File already imported_once. Skipping output.
|
|
29455
29617
|
// #endregion
|
|
29456
|
-
// #region @import "../
|
|
29618
|
+
// #region @import "../datetimepicker/_index.scss"; -> packages/material/scss/datetimepicker/_index.scss
|
|
29457
29619
|
// File already imported_once. Skipping output.
|
|
29458
29620
|
// #endregion
|
|
29459
29621
|
// #region @import "../dropdownlist/_index.scss"; -> packages/material/scss/dropdownlist/_index.scss
|
|
@@ -29508,7 +29670,9 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
29508
29670
|
// #region @import "~@progress/kendo-theme-default/scss/grid/_layout.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/grid/_layout.scss
|
|
29509
29671
|
@include exports("grid/layout") {
|
|
29510
29672
|
|
|
29511
|
-
|
|
29673
|
+
// TODO: see why we need this variable
|
|
29674
|
+
// $filter-rows-span-size: calc( #{$line-height-em} + #{$kendo-input-padding-y-md * 2} + #{$kendo-input-border-width * 2}) !default;
|
|
29675
|
+
$filter-rows-span-size: null !default;
|
|
29512
29676
|
|
|
29513
29677
|
$grid-group-dropclue-size: 6px;
|
|
29514
29678
|
$grid-group-dropclue-line-size: $grid-group-dropclue-size / 3;
|
|
@@ -30007,10 +30171,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
30007
30171
|
}
|
|
30008
30172
|
}
|
|
30009
30173
|
|
|
30010
|
-
.k-group-indicator {
|
|
30011
|
-
margin-right: ( $grid-group-indicator-gap / 2 );
|
|
30012
|
-
}
|
|
30013
|
-
|
|
30014
30174
|
.k-group-indicator + .k-group-indicator {
|
|
30015
30175
|
margin-left: ( $grid-group-indicator-gap / 2 );
|
|
30016
30176
|
}
|
|
@@ -30262,17 +30422,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
30262
30422
|
gap: ( $grid-cell-padding-y / 2 );
|
|
30263
30423
|
flex: 1 1 auto;
|
|
30264
30424
|
|
|
30265
|
-
> .k-widget,
|
|
30266
|
-
> .k-textbox {
|
|
30267
|
-
width: 100%;
|
|
30268
|
-
}
|
|
30269
|
-
|
|
30270
|
-
.k-colorpicker,
|
|
30271
|
-
.k-dropdown-operator {
|
|
30272
|
-
width: min-content;
|
|
30273
|
-
flex: none;
|
|
30274
|
-
}
|
|
30275
|
-
|
|
30276
30425
|
> .k-button {
|
|
30277
30426
|
flex: none;
|
|
30278
30427
|
}
|
|
@@ -32085,7 +32234,7 @@ $listview-item-focus-shadow: null !default;
|
|
|
32085
32234
|
// #region @import "../combobox/_index.scss"; -> packages/material/scss/combobox/_index.scss
|
|
32086
32235
|
// File already imported_once. Skipping output.
|
|
32087
32236
|
// #endregion
|
|
32088
|
-
// #region @import "../
|
|
32237
|
+
// #region @import "../datetimepicker/_index.scss"; -> packages/material/scss/datetimepicker/_index.scss
|
|
32089
32238
|
// File already imported_once. Skipping output.
|
|
32090
32239
|
// #endregion
|
|
32091
32240
|
// #region @import "../dropdownlist/_index.scss"; -> packages/material/scss/dropdownlist/_index.scss
|
|
@@ -33527,9 +33676,6 @@ $pivotgrid-configurator-content-padding-y: 0px !default;
|
|
|
33527
33676
|
$pivotgrid-configurator-fields-margin-x: 0px !default;
|
|
33528
33677
|
$pivotgrid-configurator-fields-margin-y: ( $pivotgrid-spacer / 2 ) !default;
|
|
33529
33678
|
|
|
33530
|
-
$pivotgrid-configurator-actions-padding-x: ( $pivotgrid-spacer / 2 ) !default;
|
|
33531
|
-
$pivotgrid-configurator-actions-padding-y: ( $pivotgrid-spacer * .75 ) !default;
|
|
33532
|
-
|
|
33533
33679
|
$pivotgrid-configurator-vertical-width: 320px !default;
|
|
33534
33680
|
$pivotgrid-configurator-horizontal-height: 420px !default;
|
|
33535
33681
|
|
|
@@ -33847,6 +33993,14 @@ $pivotgrid-remove-text: $pivotgrid-button-bg !default;
|
|
|
33847
33993
|
}
|
|
33848
33994
|
}
|
|
33849
33995
|
|
|
33996
|
+
// Rows, Cols and Filters
|
|
33997
|
+
.k-row-fields,
|
|
33998
|
+
.k-column-fields,
|
|
33999
|
+
.k-filter-fields {
|
|
34000
|
+
margin-top: $pivotgrid-configurator-fields-margin-y;
|
|
34001
|
+
flex-wrap: wrap;
|
|
34002
|
+
}
|
|
34003
|
+
|
|
33850
34004
|
// Values
|
|
33851
34005
|
.k-value-fields {
|
|
33852
34006
|
margin: $pivotgrid-configurator-fields-margin-y $pivotgrid-configurator-fields-margin-x;
|
|
@@ -33873,20 +34027,12 @@ $pivotgrid-remove-text: $pivotgrid-button-bg !default;
|
|
|
33873
34027
|
text-align: center;
|
|
33874
34028
|
}
|
|
33875
34029
|
|
|
33876
|
-
.k-chip-content {
|
|
33877
|
-
padding-inline-end: map-get($spacing, 1);
|
|
33878
|
-
}
|
|
33879
|
-
|
|
33880
34030
|
.k-treeview {
|
|
33881
34031
|
padding: $pivotgrid-treeview-padding-y $pivotgrid-treeview-padding-x;
|
|
33882
34032
|
overflow: auto;
|
|
33883
34033
|
}
|
|
33884
34034
|
}
|
|
33885
34035
|
|
|
33886
|
-
.k-pivotgrid-configurator-actions {
|
|
33887
|
-
padding: $pivotgrid-configurator-actions-padding-y $pivotgrid-configurator-actions-padding-x;
|
|
33888
|
-
}
|
|
33889
|
-
|
|
33890
34036
|
|
|
33891
34037
|
// Calculated field
|
|
33892
34038
|
.k-calculated-field {
|
|
@@ -35002,7 +35148,7 @@ $treelist-footer-row-border-width: 1px !default;
|
|
|
35002
35148
|
// #region @import "../checkbox/_index.scss"; -> packages/material/scss/checkbox/_index.scss
|
|
35003
35149
|
// File already imported_once. Skipping output.
|
|
35004
35150
|
// #endregion
|
|
35005
|
-
// #region @import "../
|
|
35151
|
+
// #region @import "../datetimepicker/_index.scss"; -> packages/material/scss/datetimepicker/_index.scss
|
|
35006
35152
|
// File already imported_once. Skipping output.
|
|
35007
35153
|
// #endregion
|
|
35008
35154
|
// #region @import "../dropdownlist/_index.scss"; -> packages/material/scss/dropdownlist/_index.scss
|
|
@@ -35089,7 +35235,9 @@ $filter-preview-operator-text: $subtle-text !default;
|
|
|
35089
35235
|
}
|
|
35090
35236
|
}
|
|
35091
35237
|
|
|
35092
|
-
|
|
35238
|
+
// The second selector targets the Angular rendering
|
|
35239
|
+
.k-filter-lines .k-filter-item:last-child > .k-filter-toolbar::after,
|
|
35240
|
+
.k-filter-lines .k-filter-item:last-child > * > .k-filter-toolbar::after {
|
|
35093
35241
|
content: "";
|
|
35094
35242
|
position: absolute;
|
|
35095
35243
|
width: $filter-line-size;
|
|
@@ -35098,9 +35246,12 @@ $filter-preview-operator-text: $subtle-text !default;
|
|
|
35098
35246
|
left: -$filter-padding-x;
|
|
35099
35247
|
}
|
|
35100
35248
|
|
|
35249
|
+
// The forth and fifth selectors targets the Angular rendering
|
|
35101
35250
|
.k-filter-group-main::before,
|
|
35102
35251
|
.k-filter-group-main > .k-filter-toolbar::before,
|
|
35103
35252
|
.k-filter-group-main > .k-filter-toolbar::after,
|
|
35253
|
+
.k-filter-group-main > * > .k-filter-toolbar::before,
|
|
35254
|
+
.k-filter-group-main > * > .k-filter-toolbar::after,
|
|
35104
35255
|
.k-filter-lines .k-filter-item:last-child::before {
|
|
35105
35256
|
display: none;
|
|
35106
35257
|
}
|
|
@@ -35130,7 +35281,9 @@ $filter-preview-operator-text: $subtle-text !default;
|
|
|
35130
35281
|
}
|
|
35131
35282
|
}
|
|
35132
35283
|
|
|
35133
|
-
|
|
35284
|
+
// The second selector targets the Angular rendering
|
|
35285
|
+
.k-filter-lines .k-filter-item:last-child > .k-filter-toolbar::after,
|
|
35286
|
+
.k-filter-lines .k-filter-item:last-child > * > .k-filter-toolbar::after {
|
|
35134
35287
|
left: auto;
|
|
35135
35288
|
right: -$filter-padding-x;
|
|
35136
35289
|
}
|
|
@@ -35156,9 +35309,11 @@ $filter-preview-operator-text: $subtle-text !default;
|
|
|
35156
35309
|
color: $filter-preview-operator-text;
|
|
35157
35310
|
}
|
|
35158
35311
|
|
|
35312
|
+
// The last selector targets the Angular rendering
|
|
35159
35313
|
.k-filter-item::before,
|
|
35160
35314
|
.k-filter-toolbar::before,
|
|
35161
|
-
.k-filter-lines .k-filter-item:last-child > .k-filter-toolbar::after
|
|
35315
|
+
.k-filter-lines .k-filter-item:last-child > .k-filter-toolbar::after,
|
|
35316
|
+
.k-filter-lines .k-filter-item:last-child > * > .k-filter-toolbar::after {
|
|
35162
35317
|
background-color: $component-border;
|
|
35163
35318
|
}
|
|
35164
35319
|
}
|
|
@@ -35731,8 +35886,6 @@ $taskboard-column-cards-padding-y: null !default;
|
|
|
35731
35886
|
$taskboard-column-cards-padding-x: null !default;
|
|
35732
35887
|
$taskboard-column-cards-gap: ( $taskboard-spacer / 2 ) !default;
|
|
35733
35888
|
|
|
35734
|
-
$taskboard-column-new-calc-height: calc( #{$kendo-input-calc-height} + #{$taskboard-column-header-padding-y * 2} ) !default;
|
|
35735
|
-
|
|
35736
35889
|
$taskboard-pane-width: $taskboard-column-width !default;
|
|
35737
35890
|
$taskboard-pane-padding-y: null !default;
|
|
35738
35891
|
$taskboard-pane-padding-x: null !default;
|
|
@@ -35871,7 +36024,8 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
35871
36024
|
|
|
35872
36025
|
// Edit/New Columns
|
|
35873
36026
|
.k-taskboard-column-new {
|
|
35874
|
-
|
|
36027
|
+
// TODO: we need better way
|
|
36028
|
+
// max-height: $taskboard-column-new-calc-height;
|
|
35875
36029
|
}
|
|
35876
36030
|
|
|
35877
36031
|
.k-taskboard-column-new,
|
|
@@ -37365,7 +37519,7 @@ $imageeditor-crop-overlay-bg: rgba(black, .3) !default;
|
|
|
37365
37519
|
// #region @import "../validator/_index.scss"; -> packages/material/scss/validator/_index.scss
|
|
37366
37520
|
// File already imported_once. Skipping output.
|
|
37367
37521
|
// #endregion
|
|
37368
|
-
// #region @import "../
|
|
37522
|
+
// #region @import "../datetimepicker/_index.scss"; -> packages/material/scss/datetimepicker/_index.scss
|
|
37369
37523
|
// File already imported_once. Skipping output.
|
|
37370
37524
|
// #endregion
|
|
37371
37525
|
// #region @import "../numerictextbox/_index.scss"; -> packages/material/scss/numerictextbox/_index.scss
|
|
@@ -38641,7 +38795,7 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
38641
38795
|
// #region @import "../button/_index.scss"; -> packages/material/scss/button/_index.scss
|
|
38642
38796
|
// File already imported_once. Skipping output.
|
|
38643
38797
|
// #endregion
|
|
38644
|
-
// #region @import "../
|
|
38798
|
+
// #region @import "../datetimepicker/_index.scss"; -> packages/material/scss/datetimepicker/_index.scss
|
|
38645
38799
|
// File already imported_once. Skipping output.
|
|
38646
38800
|
// #endregion
|
|
38647
38801
|
// #region @import "../dropdownlist/_index.scss"; -> packages/material/scss/dropdownlist/_index.scss
|
|
@@ -42334,7 +42488,7 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
42334
42488
|
|
|
42335
42489
|
kendo-scrollview.k-scrollview-wrap,
|
|
42336
42490
|
kendo-scrollview.k-scrollview,
|
|
42337
|
-
.k-
|
|
42491
|
+
.k-scrollview {
|
|
42338
42492
|
border-width: $scrollview-border-width;
|
|
42339
42493
|
border-style: solid;
|
|
42340
42494
|
box-sizing: border-box;
|
|
@@ -42393,6 +42547,11 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
42393
42547
|
width: calc( 100% / var(--kendo-scrollview-views, 1) );
|
|
42394
42548
|
flex: 0 0 calc( 100% / var(--kendo-scrollview-views, 1) );
|
|
42395
42549
|
}
|
|
42550
|
+
|
|
42551
|
+
[dir="rtl"] &,
|
|
42552
|
+
.k-rtl & {
|
|
42553
|
+
transform: translateX( calc( 100% / var(--kendo-scrollview-views, 1) * ( var(--kendo-scrollview-current, 1) - 1) ) );
|
|
42554
|
+
}
|
|
42396
42555
|
}
|
|
42397
42556
|
|
|
42398
42557
|
|