@progress/kendo-theme-bootstrap 5.0.0-beta.2 → 5.0.0-beta.3
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/README.md +5 -8
- package/dist/all.css +2908 -2817
- package/dist/all.scss +1762 -1529
- package/package.json +3 -3
- package/scss/chat/_variables.scss +0 -2
- package/scss/checkbox/_index.scss +1 -1
- package/scss/checkbox/_variables.scss +2 -8
- package/scss/coloreditor/_variables.scss +3 -3
- package/scss/combobox/_variables.scss +1 -31
- package/scss/fab/_theme.scss +51 -56
- package/scss/fab/_variables.scss +128 -72
- package/scss/fab/index.md +0 -0
- package/scss/grid/_variables.scss +7 -7
- package/scss/imageeditor/_variables.scss +1 -0
- package/scss/index.scss +1 -0
- package/scss/input/_variables.scss +3 -3
- package/scss/list/_index.scss +1 -0
- package/scss/list/_theme.scss +0 -20
- package/scss/listbox/_variables.scss +1 -1
- package/scss/menu/_theme.scss +0 -10
- package/scss/menu/_variables.scss +13 -1
- package/scss/orgchart/_variables.scss +2 -2
- package/scss/pdf-viewer/_variables.scss +2 -5
- package/scss/radio/_index.scss +1 -1
- package/scss/radio/_variables.scss +2 -8
- package/scss/table/_variables.scss +5 -5
- package/scss/toolbar/_variables.scss +2 -0
- package/scss/treeview/_layout.scss +6 -14
- package/scss/treeview/_variables.scss +32 -49
- package/scss/virtual-scroller/_index.scss +10 -0
- package/scss/virtual-scroller/_layout.scss +1 -0
- package/scss/virtual-scroller/_theme.scss +1 -0
- package/scss/virtual-scroller/_variables.scss +1 -0
package/dist/all.scss
CHANGED
|
@@ -8080,10 +8080,17 @@ $message-box-link-text-decoration: underline !default;
|
|
|
8080
8080
|
// #region @import "../common/_index.scss"; -> packages/bootstrap/scss/common/_index.scss
|
|
8081
8081
|
// File already imported_once. Skipping output.
|
|
8082
8082
|
// #endregion
|
|
8083
|
+
// #region @import "../checkbox/_index.scss"; -> packages/bootstrap/scss/checkbox/_index.scss
|
|
8084
|
+
// #region @import "../core/_index.scss"; -> packages/bootstrap/scss/core/_index.scss
|
|
8085
|
+
// File already imported_once. Skipping output.
|
|
8086
|
+
// #endregion
|
|
8083
8087
|
|
|
8084
8088
|
|
|
8085
|
-
//
|
|
8086
|
-
// #region @import "_variables.scss"; -> packages/bootstrap/scss/
|
|
8089
|
+
// Dependencies
|
|
8090
|
+
// #region @import "../typography/_variables.scss"; -> packages/bootstrap/scss/typography/_variables.scss
|
|
8091
|
+
// File already imported_once. Skipping output.
|
|
8092
|
+
// #endregion
|
|
8093
|
+
// #region @import "../list/_variables.scss"; -> packages/bootstrap/scss/list/_variables.scss
|
|
8087
8094
|
// List
|
|
8088
8095
|
|
|
8089
8096
|
/// Font size of the list component, if no size is set.
|
|
@@ -8333,6 +8340,579 @@ $kendo-list-group-item-shadow: null !default;
|
|
|
8333
8340
|
/// @group list
|
|
8334
8341
|
$kendo-list-no-data-text: $subtle-text !default;
|
|
8335
8342
|
|
|
8343
|
+
// #endregion
|
|
8344
|
+
|
|
8345
|
+
// Component
|
|
8346
|
+
// #region @import "_variables.scss"; -> packages/bootstrap/scss/checkbox/_variables.scss
|
|
8347
|
+
// Checkbox
|
|
8348
|
+
|
|
8349
|
+
/// The sizes of checkbox.
|
|
8350
|
+
/// @group checkbox
|
|
8351
|
+
$kendo-checkbox-sizes: (
|
|
8352
|
+
sm: map-get( $spacing, 3 ),
|
|
8353
|
+
md: map-get( $spacing, 4 ),
|
|
8354
|
+
lg: map-get( $spacing, 6 )
|
|
8355
|
+
) !default;
|
|
8356
|
+
|
|
8357
|
+
/// The border width of checkbox.
|
|
8358
|
+
/// @group checkbox
|
|
8359
|
+
$kendo-checkbox-border-width: 1px !default;
|
|
8360
|
+
/// The line height of checkbox.
|
|
8361
|
+
/// @group checkbox
|
|
8362
|
+
$kendo-checkbox-line-height: calc( #{map-get( $kendo-checkbox-sizes, "md" )} + #{$kendo-checkbox-border-width} ) !default;
|
|
8363
|
+
|
|
8364
|
+
/// The background of checkbox.
|
|
8365
|
+
/// @group checkbox
|
|
8366
|
+
$kendo-checkbox-bg: $component-bg !default;
|
|
8367
|
+
/// The background of checkbox.
|
|
8368
|
+
/// @group checkbox
|
|
8369
|
+
$kendo-checkbox-text: null !default;
|
|
8370
|
+
/// The border of checkbox.
|
|
8371
|
+
/// @group checkbox
|
|
8372
|
+
$kendo-checkbox-border: contrast-wcag( $kendo-checkbox-bg, $gray-400, $gray-600 ) !default;
|
|
8373
|
+
|
|
8374
|
+
/// The background of hovered checkbox.
|
|
8375
|
+
/// @group checkbox
|
|
8376
|
+
$kendo-checkbox-hover-bg: null !default;
|
|
8377
|
+
/// The text of hovered checkbox.
|
|
8378
|
+
/// @group checkbox
|
|
8379
|
+
$kendo-checkbox-hover-text: null !default;
|
|
8380
|
+
/// The border of hovered checkbox.
|
|
8381
|
+
/// @group checkbox
|
|
8382
|
+
$kendo-checkbox-hover-border: null !default;
|
|
8383
|
+
|
|
8384
|
+
/// The background of checked checkbox.
|
|
8385
|
+
/// @group checkbox
|
|
8386
|
+
$kendo-checkbox-checked-bg: $primary !default;
|
|
8387
|
+
/// The text of checked checkbox.
|
|
8388
|
+
/// @group checkbox
|
|
8389
|
+
$kendo-checkbox-checked-text: contrast-wcag( $kendo-checkbox-checked-bg ) !default;
|
|
8390
|
+
/// The border of checked checkbox.
|
|
8391
|
+
/// @group checkbox
|
|
8392
|
+
$kendo-checkbox-checked-border: $kendo-checkbox-checked-bg !default;
|
|
8393
|
+
|
|
8394
|
+
/// The background of indeterminate checkbox.
|
|
8395
|
+
/// @group checkbox
|
|
8396
|
+
$kendo-checkbox-indeterminate-bg: $kendo-checkbox-checked-bg !default;
|
|
8397
|
+
/// The text of indeterminate checkbox.
|
|
8398
|
+
/// @group checkbox
|
|
8399
|
+
$kendo-checkbox-indeterminate-text: $kendo-checkbox-checked-text !default;
|
|
8400
|
+
/// The border of indeterminate checkbox.
|
|
8401
|
+
/// @group checkbox
|
|
8402
|
+
$kendo-checkbox-indeterminate-border: $kendo-checkbox-checked-border !default;
|
|
8403
|
+
|
|
8404
|
+
/// The border of focused checkbox.
|
|
8405
|
+
/// @group checkbox
|
|
8406
|
+
$kendo-checkbox-focus-border: try-tint( $primary, 50% ) !default;
|
|
8407
|
+
/// The shadow of focused checkbox.
|
|
8408
|
+
/// @group checkbox
|
|
8409
|
+
$kendo-checkbox-focus-shadow: 0 0 0 .25rem rgba( $primary, .25 ) !default;
|
|
8410
|
+
/// The border of focused and checked checkbox.
|
|
8411
|
+
/// @group checkbox
|
|
8412
|
+
$kendo-checkbox-focus-checked-border: $kendo-checkbox-checked-border !default;
|
|
8413
|
+
/// The shadow of focused and checked checkbox.
|
|
8414
|
+
/// @group checkbox
|
|
8415
|
+
$kendo-checkbox-focus-checked-shadow: $kendo-checkbox-focus-shadow !default;
|
|
8416
|
+
|
|
8417
|
+
/// The background of disabled checkbox.
|
|
8418
|
+
/// @group checkbox
|
|
8419
|
+
$kendo-checkbox-disabled-bg: null !default;
|
|
8420
|
+
/// The text of disabled checkbox.
|
|
8421
|
+
/// @group checkbox
|
|
8422
|
+
$kendo-checkbox-disabled-text: null !default;
|
|
8423
|
+
/// The border of disabled checkbox.
|
|
8424
|
+
/// @group checkbox
|
|
8425
|
+
$kendo-checkbox-disabled-border: null !default;
|
|
8426
|
+
|
|
8427
|
+
/// The background of disabled and checked checkbox.
|
|
8428
|
+
/// @group checkbox
|
|
8429
|
+
$kendo-checkbox-disabled-checked-bg: null !default;
|
|
8430
|
+
/// The text of disabled and checked checkbox.
|
|
8431
|
+
/// @group checkbox
|
|
8432
|
+
$kendo-checkbox-disabled-checked-text: null !default;
|
|
8433
|
+
/// The border of disabled and checked checkbox.
|
|
8434
|
+
/// @group checkbox
|
|
8435
|
+
$kendo-checkbox-disabled-checked-border: null !default;
|
|
8436
|
+
|
|
8437
|
+
/// The background of invalid checkbox.
|
|
8438
|
+
/// @group checkbox
|
|
8439
|
+
$kendo-checkbox-invalid-bg: null !default;
|
|
8440
|
+
/// The text of invalid checkbox.
|
|
8441
|
+
/// @group checkbox
|
|
8442
|
+
$kendo-checkbox-invalid-text: $invalid-text !default;
|
|
8443
|
+
/// The border of invalid checkbox.
|
|
8444
|
+
/// @group checkbox
|
|
8445
|
+
$kendo-checkbox-invalid-border: $invalid-border !default;
|
|
8446
|
+
|
|
8447
|
+
|
|
8448
|
+
// Checkbox indicator
|
|
8449
|
+
|
|
8450
|
+
/// The icon type of checked checkbox.
|
|
8451
|
+
/// @group checkbox
|
|
8452
|
+
$kendo-checkbox-icon-type: image !default;
|
|
8453
|
+
|
|
8454
|
+
/// The glyph font family of checkbox.
|
|
8455
|
+
/// @group checkbox
|
|
8456
|
+
$kendo-checkbox-glyph-font-family: "WebComponentsIcons", monospace !default;
|
|
8457
|
+
/// The glyph of checked checkbox.
|
|
8458
|
+
/// @group checkbox
|
|
8459
|
+
$kendo-checkbox-checked-glyph: "\e118" !default;
|
|
8460
|
+
/// The glyph of indeterminate checkbox.
|
|
8461
|
+
/// @group checkbox
|
|
8462
|
+
$kendo-checkbox-indeterminate-glyph: "\e121" !default;
|
|
8463
|
+
|
|
8464
|
+
/// The image of checked checkbox.
|
|
8465
|
+
/// @group checkbox
|
|
8466
|
+
$kendo-checkbox-checked-image: escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='#{$kendo-checkbox-checked-text}' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/></svg>") ) !default;
|
|
8467
|
+
/// The image of indeterminate checkbox.
|
|
8468
|
+
/// @group checkbox
|
|
8469
|
+
$kendo-checkbox-indeterminate-image: escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='#{$kendo-checkbox-indeterminate-text}' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/></svg>") ) !default;
|
|
8470
|
+
|
|
8471
|
+
|
|
8472
|
+
// Checkbox label
|
|
8473
|
+
|
|
8474
|
+
/// The horizontal margin of the checkbox inside a label.
|
|
8475
|
+
/// @group checkbox
|
|
8476
|
+
$kendo-checkbox-label-margin-x: map-get( $spacing, 1 ) !default;
|
|
8477
|
+
|
|
8478
|
+
|
|
8479
|
+
// Checkbox list
|
|
8480
|
+
|
|
8481
|
+
/// The horizontal margin of list item of checkbox.
|
|
8482
|
+
/// @group checkbox
|
|
8483
|
+
$kendo-checkbox-list-spacing: map-get( $spacing, 4 ) !default;
|
|
8484
|
+
/// The horizontal list item padding of checkbox.
|
|
8485
|
+
/// @group checkbox
|
|
8486
|
+
$kendo-checkbox-list-item-padding-x: 0px !default;
|
|
8487
|
+
/// The vertical list item padding of checkbox.
|
|
8488
|
+
/// @group checkbox
|
|
8489
|
+
$kendo-checkbox-list-item-padding-y: $kendo-list-item-padding-y-md !default;
|
|
8490
|
+
|
|
8491
|
+
|
|
8492
|
+
// Checkbox ripple
|
|
8493
|
+
|
|
8494
|
+
/// The ripple size of checkbox.
|
|
8495
|
+
/// @group checkbox
|
|
8496
|
+
$kendo-checkbox-ripple-size: (
|
|
8497
|
+
sm: (map-get( $kendo-checkbox-sizes, "sm" ) * 3),
|
|
8498
|
+
md: (map-get( $kendo-checkbox-sizes, "md" ) * 3),
|
|
8499
|
+
lg: (map-get( $kendo-checkbox-sizes, "lg" ) * 3)
|
|
8500
|
+
) !default;
|
|
8501
|
+
/// The ripple margin of checkbox.
|
|
8502
|
+
/// @group checkbox
|
|
8503
|
+
$kendo-checkbox-ripple-margin: (
|
|
8504
|
+
sm: calc(-1 * (#{map-get( $kendo-checkbox-sizes, "sm" )} + #{$kendo-checkbox-border-width})),
|
|
8505
|
+
md: calc(-1 * (#{map-get( $kendo-checkbox-sizes, "md" )} + #{$kendo-checkbox-border-width})),
|
|
8506
|
+
lg: calc(-1 * (#{map-get( $kendo-checkbox-sizes, "lg" )} + #{$kendo-checkbox-border-width}))
|
|
8507
|
+
) !default;
|
|
8508
|
+
/// The ripple opacity of checkbox.
|
|
8509
|
+
/// @group checkbox
|
|
8510
|
+
$kendo-checkbox-ripple-opacity: .3 !default;
|
|
8511
|
+
|
|
8512
|
+
// #endregion
|
|
8513
|
+
// #region @import "_layout.scss"; -> packages/bootstrap/scss/checkbox/_layout.scss
|
|
8514
|
+
// #region @import "~@progress/kendo-theme-default/scss/checkbox/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/checkbox/_layout.scss
|
|
8515
|
+
@include exports( "checkbox/layout" ) {
|
|
8516
|
+
|
|
8517
|
+
// Checkbox
|
|
8518
|
+
.k-checkbox {
|
|
8519
|
+
margin: 0;
|
|
8520
|
+
padding: 0;
|
|
8521
|
+
line-height: initial;
|
|
8522
|
+
border-width: $kendo-checkbox-border-width;
|
|
8523
|
+
border-style: solid;
|
|
8524
|
+
outline: 0;
|
|
8525
|
+
background-position: center;
|
|
8526
|
+
background-repeat: no-repeat;
|
|
8527
|
+
background-size: contain;
|
|
8528
|
+
display: inline-block;
|
|
8529
|
+
flex: none;
|
|
8530
|
+
vertical-align: middle;
|
|
8531
|
+
position: relative;
|
|
8532
|
+
cursor: pointer;
|
|
8533
|
+
-webkit-appearance: none;
|
|
8534
|
+
}
|
|
8535
|
+
|
|
8536
|
+
@each $name, $size in $kendo-checkbox-sizes {
|
|
8537
|
+
// Checkbox sizes
|
|
8538
|
+
.k-checkbox-#{$name} {
|
|
8539
|
+
width: $size;
|
|
8540
|
+
height: $size;
|
|
8541
|
+
|
|
8542
|
+
+ .k-checkbox-label {
|
|
8543
|
+
|
|
8544
|
+
.k-ripple {
|
|
8545
|
+
top: ($size / 2);
|
|
8546
|
+
left: ($size / 2);
|
|
8547
|
+
width: ($size * 5 / 2);
|
|
8548
|
+
height: ($size * 5 / 2);
|
|
8549
|
+
}
|
|
8550
|
+
}
|
|
8551
|
+
}
|
|
8552
|
+
|
|
8553
|
+
|
|
8554
|
+
// Checkbox indicator
|
|
8555
|
+
.k-checkbox-#{$name}::before {
|
|
8556
|
+
@if $kendo-checkbox-icon-type == "glyph" {
|
|
8557
|
+
content: $kendo-checkbox-checked-glyph;
|
|
8558
|
+
width: ($size - map-get( $spacing, thin ));
|
|
8559
|
+
height: ($size - map-get( $spacing, thin ));
|
|
8560
|
+
font-size: ($size - map-get( $spacing, thin ));
|
|
8561
|
+
font-family: $kendo-checkbox-glyph-font-family;
|
|
8562
|
+
line-height: 1;
|
|
8563
|
+
transform: scale(0) translate(-50%, -50%);
|
|
8564
|
+
overflow: hidden;
|
|
8565
|
+
position: absolute;
|
|
8566
|
+
top: 50%;
|
|
8567
|
+
left: 50%;
|
|
8568
|
+
}
|
|
8569
|
+
|
|
8570
|
+
@if $kendo-checkbox-icon-type == "marker" {
|
|
8571
|
+
content: "";
|
|
8572
|
+
width: ($size - map-get( $spacing, 1 ));
|
|
8573
|
+
height: ($size - map-get( $spacing, 1 ));
|
|
8574
|
+
background-color: currentColor;
|
|
8575
|
+
transform: scale(0) translate(-50%, -50%);
|
|
8576
|
+
overflow: hidden;
|
|
8577
|
+
position: absolute;
|
|
8578
|
+
top: 50%;
|
|
8579
|
+
left: 50%;
|
|
8580
|
+
}
|
|
8581
|
+
}
|
|
8582
|
+
}
|
|
8583
|
+
|
|
8584
|
+
|
|
8585
|
+
// Checked state
|
|
8586
|
+
.k-checkbox:checked,
|
|
8587
|
+
.k-checkbox.k-checked {
|
|
8588
|
+
@if $kendo-checkbox-icon-type == "image" {
|
|
8589
|
+
background-image: $kendo-checkbox-checked-image;
|
|
8590
|
+
}
|
|
8591
|
+
|
|
8592
|
+
@if $kendo-checkbox-icon-type == "glyph" {
|
|
8593
|
+
&::before {
|
|
8594
|
+
transform: scale(1) translate(-50%, -50%);
|
|
8595
|
+
}
|
|
8596
|
+
}
|
|
8597
|
+
|
|
8598
|
+
@if $kendo-checkbox-icon-type == "marker" {
|
|
8599
|
+
&::before {
|
|
8600
|
+
transform: scale(1) translate(-50%, -50%);
|
|
8601
|
+
}
|
|
8602
|
+
}
|
|
8603
|
+
}
|
|
8604
|
+
|
|
8605
|
+
// Indeterminate state
|
|
8606
|
+
.k-checkbox:indeterminate,
|
|
8607
|
+
.k-checkbox.k-indeterminate {
|
|
8608
|
+
@if $kendo-checkbox-icon-type == "image" {
|
|
8609
|
+
background-image: $kendo-checkbox-indeterminate-image;
|
|
8610
|
+
}
|
|
8611
|
+
|
|
8612
|
+
@if $kendo-checkbox-icon-type == "glyph" {
|
|
8613
|
+
&::before {
|
|
8614
|
+
content: $kendo-checkbox-indeterminate-glyph;
|
|
8615
|
+
transform: scale(1) translate(-50%, -50%);
|
|
8616
|
+
}
|
|
8617
|
+
}
|
|
8618
|
+
|
|
8619
|
+
@if $kendo-checkbox-icon-type == "marker" {
|
|
8620
|
+
&::before {
|
|
8621
|
+
width: $kendo-checkbox-maker-indeterminate-width;
|
|
8622
|
+
height: $kendo-checkbox-marker-indeterminate-height;
|
|
8623
|
+
transform: scale(1) translate(-50%, -50%);
|
|
8624
|
+
}
|
|
8625
|
+
}
|
|
8626
|
+
}
|
|
8627
|
+
|
|
8628
|
+
|
|
8629
|
+
// Disabled state
|
|
8630
|
+
.k-checkbox:disabled,
|
|
8631
|
+
.k-checkbox.k-disabled,
|
|
8632
|
+
.k-checkbox:disabled + .k-checkbox-label,
|
|
8633
|
+
.k-checkbox.k-disabled + .k-checkbox-label {
|
|
8634
|
+
@include disabled( $disabled-styling );
|
|
8635
|
+
}
|
|
8636
|
+
|
|
8637
|
+
|
|
8638
|
+
// Checkbox wrap
|
|
8639
|
+
.k-checkbox-wrap {
|
|
8640
|
+
flex: none;
|
|
8641
|
+
display: inline-flex;
|
|
8642
|
+
flex-flow: row nowrap;
|
|
8643
|
+
gap: 0;
|
|
8644
|
+
align-items: center;
|
|
8645
|
+
|
|
8646
|
+
&::before {
|
|
8647
|
+
content: "\200b";
|
|
8648
|
+
width: 0px;
|
|
8649
|
+
overflow: hidden;
|
|
8650
|
+
flex: none;
|
|
8651
|
+
display: inline-block;
|
|
8652
|
+
vertical-align: top;
|
|
8653
|
+
}
|
|
8654
|
+
}
|
|
8655
|
+
|
|
8656
|
+
|
|
8657
|
+
// Checkbox label
|
|
8658
|
+
.k-checkbox-label {
|
|
8659
|
+
margin: 0;
|
|
8660
|
+
padding: 0;
|
|
8661
|
+
line-height: $kendo-checkbox-line-height;
|
|
8662
|
+
display: inline-flex;
|
|
8663
|
+
align-items: flex-start;
|
|
8664
|
+
vertical-align: middle;
|
|
8665
|
+
position: relative;
|
|
8666
|
+
cursor: pointer;
|
|
8667
|
+
|
|
8668
|
+
.k-label {
|
|
8669
|
+
cursor: pointer;
|
|
8670
|
+
}
|
|
8671
|
+
|
|
8672
|
+
.k-ripple {
|
|
8673
|
+
right: auto;
|
|
8674
|
+
bottom: auto;
|
|
8675
|
+
transform: translate(-50%, -50%);
|
|
8676
|
+
border-radius: 50%;
|
|
8677
|
+
|
|
8678
|
+
// Hide ripple temporarily
|
|
8679
|
+
visibility: hidden !important; // sass-lint:disable-line no-important
|
|
8680
|
+
}
|
|
8681
|
+
|
|
8682
|
+
.k-ripple-blob {
|
|
8683
|
+
// sass-lint:disable-block no-important
|
|
8684
|
+
// use !important until ripple can apply these styles from the script
|
|
8685
|
+
top: 50% !important;
|
|
8686
|
+
left: 50% !important;
|
|
8687
|
+
width: 200% !important;
|
|
8688
|
+
height: 200% !important;
|
|
8689
|
+
}
|
|
8690
|
+
}
|
|
8691
|
+
.k-checkbox + .k-checkbox-label {
|
|
8692
|
+
display: inline;
|
|
8693
|
+
}
|
|
8694
|
+
.k-checkbox + .k-checkbox-label,
|
|
8695
|
+
.k-checkbox-label + .k-checkbox {
|
|
8696
|
+
margin-left: $kendo-checkbox-label-margin-x;
|
|
8697
|
+
}
|
|
8698
|
+
.k-checkbox-label > .k-checkbox {
|
|
8699
|
+
margin-right: $kendo-checkbox-label-margin-x;
|
|
8700
|
+
flex-shrink: 0;
|
|
8701
|
+
}
|
|
8702
|
+
kendo-label.k-checkbox-label > .k-checkbox:last-child {
|
|
8703
|
+
margin-right: 0;
|
|
8704
|
+
}
|
|
8705
|
+
kendo-label.k-checkbox-label > .k-label:first-child {
|
|
8706
|
+
margin-right: $kendo-checkbox-label-margin-x;
|
|
8707
|
+
}
|
|
8708
|
+
kendo-label.k-checkbox-label > .k-label {
|
|
8709
|
+
display: inline;
|
|
8710
|
+
}
|
|
8711
|
+
|
|
8712
|
+
|
|
8713
|
+
// Empty label
|
|
8714
|
+
.k-checkbox-label:empty {
|
|
8715
|
+
display: none !important; // sass-lint:disable-line no-important
|
|
8716
|
+
}
|
|
8717
|
+
|
|
8718
|
+
|
|
8719
|
+
// Label with no text
|
|
8720
|
+
.k-checkbox-label.k-no-text {
|
|
8721
|
+
min-width: 1px;
|
|
8722
|
+
}
|
|
8723
|
+
|
|
8724
|
+
|
|
8725
|
+
// Checkbox list
|
|
8726
|
+
.k-checkbox-list {
|
|
8727
|
+
margin: 0;
|
|
8728
|
+
padding: 0;
|
|
8729
|
+
display: flex;
|
|
8730
|
+
flex-flow: column nowrap;
|
|
8731
|
+
gap: 0;
|
|
8732
|
+
list-style: none;
|
|
8733
|
+
}
|
|
8734
|
+
.k-checkbox-item,
|
|
8735
|
+
.k-checkbox-list-item {
|
|
8736
|
+
padding: $kendo-checkbox-list-item-padding-y $kendo-checkbox-list-item-padding-x;
|
|
8737
|
+
display: flex;
|
|
8738
|
+
flex-flow: row nowrap;
|
|
8739
|
+
align-items: center;
|
|
8740
|
+
align-content: center;
|
|
8741
|
+
gap: map-get( $spacing, 1 );
|
|
8742
|
+
|
|
8743
|
+
.k-checkbox-label {
|
|
8744
|
+
line-height: inherit;
|
|
8745
|
+
}
|
|
8746
|
+
}
|
|
8747
|
+
.k-checkbox-list-horizontal,
|
|
8748
|
+
.k-checkbox-list.k-list-horizontal {
|
|
8749
|
+
display: flex;
|
|
8750
|
+
flex-flow: row wrap;
|
|
8751
|
+
gap: $kendo-checkbox-list-spacing;
|
|
8752
|
+
}
|
|
8753
|
+
|
|
8754
|
+
|
|
8755
|
+
// RTL
|
|
8756
|
+
[dir="rtl"] {
|
|
8757
|
+
.k-checkbox + .k-checkbox-label,
|
|
8758
|
+
.k-checkbox-label + .k-checkbox {
|
|
8759
|
+
margin-left: 0;
|
|
8760
|
+
margin-right: $kendo-checkbox-label-margin-x;
|
|
8761
|
+
}
|
|
8762
|
+
.k-checkbox-label > .k-checkbox {
|
|
8763
|
+
margin-right: 0;
|
|
8764
|
+
margin-left: $kendo-checkbox-label-margin-x;
|
|
8765
|
+
}
|
|
8766
|
+
kendo-label.k-checkbox-label > .k-checkbox:last-child {
|
|
8767
|
+
margin-left: 0;
|
|
8768
|
+
}
|
|
8769
|
+
kendo-label.k-checkbox-label > .k-label:first-child {
|
|
8770
|
+
margin-right: 0;
|
|
8771
|
+
margin-left: $kendo-checkbox-label-margin-x;
|
|
8772
|
+
}
|
|
8773
|
+
}
|
|
8774
|
+
|
|
8775
|
+
.k-ripple-container {
|
|
8776
|
+
@each $name, $size in $kendo-checkbox-sizes {
|
|
8777
|
+
.k-checkbox-#{$name}::after {
|
|
8778
|
+
content: "";
|
|
8779
|
+
display: block;
|
|
8780
|
+
position: absolute;
|
|
8781
|
+
left: 0;
|
|
8782
|
+
top: 0;
|
|
8783
|
+
width: map-get( $kendo-checkbox-ripple-size, $name );
|
|
8784
|
+
height: map-get( $kendo-checkbox-ripple-size, $name );
|
|
8785
|
+
margin-left: map-get( $kendo-checkbox-ripple-margin, $name );
|
|
8786
|
+
margin-top: map-get( $kendo-checkbox-ripple-margin, $name );
|
|
8787
|
+
border-radius: 100%;
|
|
8788
|
+
z-index: 1;
|
|
8789
|
+
transform: scale(0);
|
|
8790
|
+
}
|
|
8791
|
+
|
|
8792
|
+
.k-checkbox:disabled::after,
|
|
8793
|
+
.k-checkbox.k-disabled::after {
|
|
8794
|
+
display: none;
|
|
8795
|
+
}
|
|
8796
|
+
}
|
|
8797
|
+
}
|
|
8798
|
+
|
|
8799
|
+
}
|
|
8800
|
+
|
|
8801
|
+
// #endregion
|
|
8802
|
+
|
|
8803
|
+
// #endregion
|
|
8804
|
+
// #region @import "_theme.scss"; -> packages/bootstrap/scss/checkbox/_theme.scss
|
|
8805
|
+
// #region @import "~@progress/kendo-theme-default/scss/checkbox/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/checkbox/_theme.scss
|
|
8806
|
+
@include exports("checkbox/theme") {
|
|
8807
|
+
|
|
8808
|
+
// Checkbox
|
|
8809
|
+
.k-checkbox {
|
|
8810
|
+
@include fill(
|
|
8811
|
+
$kendo-checkbox-text,
|
|
8812
|
+
$kendo-checkbox-bg,
|
|
8813
|
+
$kendo-checkbox-border
|
|
8814
|
+
);
|
|
8815
|
+
}
|
|
8816
|
+
|
|
8817
|
+
|
|
8818
|
+
// Hover state
|
|
8819
|
+
.k-checkbox:hover,
|
|
8820
|
+
.k-checkbox.k-hover {
|
|
8821
|
+
@include fill(
|
|
8822
|
+
$kendo-checkbox-hover-text,
|
|
8823
|
+
$kendo-checkbox-hover-bg,
|
|
8824
|
+
$kendo-checkbox-hover-border
|
|
8825
|
+
);
|
|
8826
|
+
}
|
|
8827
|
+
|
|
8828
|
+
|
|
8829
|
+
// Focus state
|
|
8830
|
+
.k-checkbox:focus,
|
|
8831
|
+
.k-checkbox.k-focus {
|
|
8832
|
+
@include fill( $border: $kendo-checkbox-focus-border );
|
|
8833
|
+
@include box-shadow( $kendo-checkbox-focus-shadow );
|
|
8834
|
+
}
|
|
8835
|
+
|
|
8836
|
+
|
|
8837
|
+
// Indeterminate
|
|
8838
|
+
.k-checkbox:indeterminate,
|
|
8839
|
+
.k-checkbox.k-indeterminate {
|
|
8840
|
+
@include fill(
|
|
8841
|
+
$kendo-checkbox-indeterminate-text,
|
|
8842
|
+
$kendo-checkbox-indeterminate-bg,
|
|
8843
|
+
$kendo-checkbox-indeterminate-border
|
|
8844
|
+
);
|
|
8845
|
+
}
|
|
8846
|
+
|
|
8847
|
+
|
|
8848
|
+
// Checked
|
|
8849
|
+
.k-checkbox:checked,
|
|
8850
|
+
.k-checkbox.k-checked {
|
|
8851
|
+
@include fill(
|
|
8852
|
+
$kendo-checkbox-checked-text,
|
|
8853
|
+
$kendo-checkbox-checked-bg,
|
|
8854
|
+
$kendo-checkbox-checked-border
|
|
8855
|
+
);
|
|
8856
|
+
}
|
|
8857
|
+
.k-checkbox:checked:focus,
|
|
8858
|
+
.k-checkbox.k-checked.k-focus {
|
|
8859
|
+
@include fill( $border: $kendo-checkbox-focus-checked-border );
|
|
8860
|
+
@include box-shadow( $kendo-checkbox-focus-checked-shadow );
|
|
8861
|
+
}
|
|
8862
|
+
|
|
8863
|
+
|
|
8864
|
+
// Disabled
|
|
8865
|
+
.k-checkbox:disabled,
|
|
8866
|
+
.k-checkbox.k-disabled {
|
|
8867
|
+
@include fill(
|
|
8868
|
+
$kendo-checkbox-disabled-text,
|
|
8869
|
+
$kendo-checkbox-disabled-bg,
|
|
8870
|
+
$kendo-checkbox-disabled-border
|
|
8871
|
+
);
|
|
8872
|
+
}
|
|
8873
|
+
.k-checkbox:checked:disabled,
|
|
8874
|
+
.k-checkbox:indeterminate:disabled,
|
|
8875
|
+
.k-checkbox.k-checked.k-disabled,
|
|
8876
|
+
.k-checkbox.k-indeterminate.k-disabled {
|
|
8877
|
+
@include fill(
|
|
8878
|
+
$kendo-checkbox-disabled-checked-text,
|
|
8879
|
+
$kendo-checkbox-disabled-checked-bg,
|
|
8880
|
+
$kendo-checkbox-disabled-checked-border
|
|
8881
|
+
);
|
|
8882
|
+
}
|
|
8883
|
+
|
|
8884
|
+
|
|
8885
|
+
// Invalid
|
|
8886
|
+
.k-checkbox:invalid,
|
|
8887
|
+
.k-checkbox.k-invalid {
|
|
8888
|
+
@include fill( $border: $kendo-checkbox-invalid-border );
|
|
8889
|
+
}
|
|
8890
|
+
.k-checkbox:invalid + .k-checkbox-label,
|
|
8891
|
+
.k-checkbox.k-invalid + .k-checkbox-label {
|
|
8892
|
+
@include fill( $color: $kendo-checkbox-invalid-text );
|
|
8893
|
+
}
|
|
8894
|
+
|
|
8895
|
+
|
|
8896
|
+
// Ripple
|
|
8897
|
+
.k-ripple-container {
|
|
8898
|
+
.k-checkbox::after {
|
|
8899
|
+
background: $kendo-checkbox-checked-bg;
|
|
8900
|
+
opacity: $kendo-checkbox-ripple-opacity;
|
|
8901
|
+
}
|
|
8902
|
+
}
|
|
8903
|
+
|
|
8904
|
+
}
|
|
8905
|
+
|
|
8906
|
+
// #endregion
|
|
8907
|
+
|
|
8908
|
+
// #endregion
|
|
8909
|
+
|
|
8910
|
+
// #endregion
|
|
8911
|
+
|
|
8912
|
+
|
|
8913
|
+
// Component
|
|
8914
|
+
// #region @import "_variables.scss"; -> packages/bootstrap/scss/list/_variables.scss
|
|
8915
|
+
// File already imported_once. Skipping output.
|
|
8336
8916
|
// #endregion
|
|
8337
8917
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/list/_layout.scss
|
|
8338
8918
|
// #region @import "~@progress/kendo-theme-default/scss/list/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/list/_layout.scss
|
|
@@ -8370,6 +8950,9 @@ $kendo-list-no-data-text: $subtle-text !default;
|
|
|
8370
8950
|
line-height: $kendo-list-header-line-height;
|
|
8371
8951
|
font-weight: $kendo-list-header-font-weight;
|
|
8372
8952
|
white-space: nowrap;
|
|
8953
|
+
display: flex;
|
|
8954
|
+
flex-flow: row nowrap;
|
|
8955
|
+
align-items: center;
|
|
8373
8956
|
flex: none;
|
|
8374
8957
|
overflow: hidden;
|
|
8375
8958
|
text-overflow: ellipsis;
|
|
@@ -8405,7 +8988,7 @@ $kendo-list-no-data-text: $subtle-text !default;
|
|
|
8405
8988
|
font-size: $kendo-list-item-font-size;
|
|
8406
8989
|
line-height: $kendo-list-item-line-height;
|
|
8407
8990
|
outline: none;
|
|
8408
|
-
cursor:
|
|
8991
|
+
cursor: pointer;
|
|
8409
8992
|
display: flex;
|
|
8410
8993
|
flex-flow: row nowrap;
|
|
8411
8994
|
align-items: center;
|
|
@@ -8416,6 +8999,10 @@ $kendo-list-no-data-text: $subtle-text !default;
|
|
|
8416
8999
|
transition-duration: 200ms;
|
|
8417
9000
|
transition-timing-function: ease;
|
|
8418
9001
|
|
|
9002
|
+
.k-checkbox-wrap {
|
|
9003
|
+
align-self: flex-start;
|
|
9004
|
+
}
|
|
9005
|
+
|
|
8419
9006
|
&.k-first::before {
|
|
8420
9007
|
content: "";
|
|
8421
9008
|
border-width: 1px 0 0;
|
|
@@ -8481,7 +9068,8 @@ $kendo-list-no-data-text: $subtle-text !default;
|
|
|
8481
9068
|
position: absolute;
|
|
8482
9069
|
width: 100%;
|
|
8483
9070
|
}
|
|
8484
|
-
.k-virtual-list .k-list-item-text
|
|
9071
|
+
.k-virtual-list .k-list-item-text,
|
|
9072
|
+
.k-virtual-list .k-list-header-text {
|
|
8485
9073
|
white-space: nowrap;
|
|
8486
9074
|
overflow: hidden;
|
|
8487
9075
|
text-overflow: ellipsis;
|
|
@@ -8655,26 +9243,6 @@ $kendo-list-no-data-text: $subtle-text !default;
|
|
|
8655
9243
|
|
|
8656
9244
|
// #endregion
|
|
8657
9245
|
|
|
8658
|
-
@include exports( "list/theme/bootstrap" ) {
|
|
8659
|
-
|
|
8660
|
-
.k-list {}
|
|
8661
|
-
|
|
8662
|
-
.k-list-item:focus,
|
|
8663
|
-
.k-list-item.k-focus,
|
|
8664
|
-
.k-list-optionlabel:focus,
|
|
8665
|
-
.k-list-optionlabel.k-focus {
|
|
8666
|
-
&:hover,
|
|
8667
|
-
&.k-hover {
|
|
8668
|
-
box-shadow: inset 0 0 0 3px rgba($kendo-list-item-hover-text, .15);
|
|
8669
|
-
}
|
|
8670
|
-
|
|
8671
|
-
&.k-selected {
|
|
8672
|
-
box-shadow: inset 0 0 0 3px rgba($kendo-list-item-selected-text, .15);
|
|
8673
|
-
}
|
|
8674
|
-
}
|
|
8675
|
-
|
|
8676
|
-
}
|
|
8677
|
-
|
|
8678
9246
|
// #endregion
|
|
8679
9247
|
|
|
8680
9248
|
// #endregion
|
|
@@ -10077,7 +10645,7 @@ $kendo-button-group-focus-shadow: null !default;
|
|
|
10077
10645
|
.k-button {
|
|
10078
10646
|
|
|
10079
10647
|
&::after {
|
|
10080
|
-
@include border-radius(
|
|
10648
|
+
@include border-radius( inherit );
|
|
10081
10649
|
content: "";
|
|
10082
10650
|
opacity: 0;
|
|
10083
10651
|
display: none;
|
|
@@ -10093,43 +10661,6 @@ $kendo-button-group-focus-shadow: null !default;
|
|
|
10093
10661
|
}
|
|
10094
10662
|
}
|
|
10095
10663
|
|
|
10096
|
-
|
|
10097
|
-
|
|
10098
|
-
|
|
10099
|
-
@include exports( "button/ie-compat" ) {
|
|
10100
|
-
|
|
10101
|
-
.k-ie {
|
|
10102
|
-
|
|
10103
|
-
.k-button,
|
|
10104
|
-
.k-button-group {
|
|
10105
|
-
display: inline-block;
|
|
10106
|
-
overflow: visible; // IE9
|
|
10107
|
-
}
|
|
10108
|
-
|
|
10109
|
-
.k-button-icontext {
|
|
10110
|
-
|
|
10111
|
-
.k-icon,
|
|
10112
|
-
.k-image,
|
|
10113
|
-
.k-sprite {
|
|
10114
|
-
margin: 0 $icon-spacing 0 0;
|
|
10115
|
-
}
|
|
10116
|
-
|
|
10117
|
-
&.k-rtl,
|
|
10118
|
-
.k-rtl &,
|
|
10119
|
-
&[dir="rtl"],
|
|
10120
|
-
[dir="rtl"] & {
|
|
10121
|
-
.k-icon,
|
|
10122
|
-
.k-image,
|
|
10123
|
-
.k-sprite {
|
|
10124
|
-
margin: 0 0 0 $icon-spacing;
|
|
10125
|
-
}
|
|
10126
|
-
}
|
|
10127
|
-
}
|
|
10128
|
-
|
|
10129
|
-
}
|
|
10130
|
-
|
|
10131
|
-
}
|
|
10132
|
-
|
|
10133
10664
|
// #endregion
|
|
10134
10665
|
|
|
10135
10666
|
@include exports("button/layout/bootstrap") {
|
|
@@ -10543,17 +11074,17 @@ $kendo-input-line-height: $input-line-height !default;
|
|
|
10543
11074
|
|
|
10544
11075
|
$kendo-input-padding-x-sm: $input-padding-x-sm !default;
|
|
10545
11076
|
$kendo-input-padding-y-sm: $input-padding-y-sm !default;
|
|
10546
|
-
$kendo-input-font-size-sm: $
|
|
11077
|
+
$kendo-input-font-size-sm: $font-size-md !default;
|
|
10547
11078
|
$kendo-input-line-height-sm: $line-height-md !default;
|
|
10548
11079
|
|
|
10549
11080
|
$kendo-input-padding-x-md: $input-padding-x !default;
|
|
10550
11081
|
$kendo-input-padding-y-md: $input-padding-y !default;
|
|
10551
|
-
$kendo-input-font-size-md: $
|
|
11082
|
+
$kendo-input-font-size-md: $font-size-md !default;
|
|
10552
11083
|
$kendo-input-line-height-md: $line-height-md !default;
|
|
10553
11084
|
|
|
10554
11085
|
$kendo-input-padding-x-lg: $input-padding-x-lg !default;
|
|
10555
11086
|
$kendo-input-padding-y-lg: $input-padding-y-lg !default;
|
|
10556
|
-
$kendo-input-font-size-lg: $
|
|
11087
|
+
$kendo-input-font-size-lg: $font-size-md !default;
|
|
10557
11088
|
$kendo-input-line-height-lg: $line-height-md !default;
|
|
10558
11089
|
|
|
10559
11090
|
$kendo-input-sizes: (
|
|
@@ -10726,6 +11257,14 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
10726
11257
|
overflow: hidden;
|
|
10727
11258
|
text-overflow: ellipsis;
|
|
10728
11259
|
}
|
|
11260
|
+
.k-input-value-text::before {
|
|
11261
|
+
content: "\200b";
|
|
11262
|
+
width: 0px;
|
|
11263
|
+
overflow: hidden;
|
|
11264
|
+
flex: none;
|
|
11265
|
+
display: inline-block;
|
|
11266
|
+
vertical-align: top;
|
|
11267
|
+
}
|
|
10729
11268
|
|
|
10730
11269
|
|
|
10731
11270
|
// Input multiple values
|
|
@@ -10734,6 +11273,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
10734
11273
|
padding: $kendo-input-values-margin-y $kendo-input-values-margin-x;
|
|
10735
11274
|
cursor: text;
|
|
10736
11275
|
}
|
|
11276
|
+
.k-input-values > .k-searchbar,
|
|
10737
11277
|
.k-input-values > .k-input-inner {
|
|
10738
11278
|
margin: (-$kendo-input-values-margin-y) (-$kendo-input-values-margin-x);
|
|
10739
11279
|
}
|
|
@@ -10808,6 +11348,10 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
10808
11348
|
color: $kendo-input-clear-value-hover-text;
|
|
10809
11349
|
opacity: $kendo-input-clear-value-hover-opacity;
|
|
10810
11350
|
}
|
|
11351
|
+
.k-clear-value:focus-visible {
|
|
11352
|
+
outline: 1px dotted;
|
|
11353
|
+
outline-offset: -1px;
|
|
11354
|
+
}
|
|
10811
11355
|
|
|
10812
11356
|
|
|
10813
11357
|
// Input button
|
|
@@ -10823,6 +11367,10 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
10823
11367
|
min-width: auto !important; // sass-lint:disable-line no-important
|
|
10824
11368
|
min-height: auto !important; // sass-lint:disable-line no-important
|
|
10825
11369
|
}
|
|
11370
|
+
|
|
11371
|
+
&:focus {
|
|
11372
|
+
box-shadow: none;
|
|
11373
|
+
}
|
|
10826
11374
|
}
|
|
10827
11375
|
.k-picker .k-input-button {
|
|
10828
11376
|
color: inherit;
|
|
@@ -11283,42 +11831,12 @@ $floating-label-focus-text: null !default;
|
|
|
11283
11831
|
|
|
11284
11832
|
// Component
|
|
11285
11833
|
// #region @import "_variables.scss"; -> packages/bootstrap/scss/combobox/_variables.scss
|
|
11286
|
-
//
|
|
11287
|
-
$combobox-select-padding-x: $kendo-button-padding-y !default;
|
|
11288
|
-
$combobox-select-padding-y: $kendo-button-padding-y !default;
|
|
11289
|
-
|
|
11290
|
-
$combobox-bg: $kendo-input-bg !default;
|
|
11291
|
-
$combobox-text: $kendo-input-text !default;
|
|
11292
|
-
$combobox-border: $kendo-input-border !default;
|
|
11293
|
-
|
|
11294
|
-
$combobox-hovered-bg: $kendo-input-hover-bg !default;
|
|
11295
|
-
$combobox-hovered-text: $kendo-input-hover-text !default;
|
|
11296
|
-
$combobox-hovered-border: $kendo-input-hover-border !default;
|
|
11297
|
-
|
|
11298
|
-
$combobox-focused-bg: $kendo-input-focus-bg !default;
|
|
11299
|
-
$combobox-focused-text: $kendo-input-focus-text !default;
|
|
11300
|
-
$combobox-focused-border: $kendo-input-focus-border !default;
|
|
11301
|
-
$combobox-focused-shadow: $kendo-input-focus-shadow !default;
|
|
11302
|
-
|
|
11303
|
-
$combobox-select-bg: $kendo-button-bg !default;
|
|
11304
|
-
$combobox-select-text: $kendo-button-text !default;
|
|
11305
|
-
$combobox-select-border: $kendo-button-border !default;
|
|
11306
|
-
$combobox-select-gradient: $kendo-button-gradient !default;
|
|
11307
|
-
|
|
11308
|
-
$combobox-select-hovered-bg: $kendo-button-hover-bg !default;
|
|
11309
|
-
$combobox-select-hovered-text: $kendo-button-hover-text !default;
|
|
11310
|
-
$combobox-select-hovered-border: $kendo-button-hover-border !default;
|
|
11311
|
-
$combobox-select-hovered-gradient: $kendo-button-hover-gradient !default;
|
|
11312
|
-
|
|
11313
|
-
$combobox-select-pressed-bg: $kendo-button-active-bg !default;
|
|
11314
|
-
$combobox-select-pressed-text: $kendo-button-active-text !default;
|
|
11315
|
-
$combobox-select-pressed-border: $kendo-button-active-border !default;
|
|
11316
|
-
$combobox-select-pressed-gradient: $kendo-button-active-gradient !default;
|
|
11834
|
+
// Combobox
|
|
11317
11835
|
|
|
11318
11836
|
// #endregion
|
|
11319
11837
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/combobox/_layout.scss
|
|
11320
11838
|
// #region @import "~@progress/kendo-theme-default/scss/combobox/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/combobox/_layout.scss
|
|
11321
|
-
@include exports("combobox/layout") {
|
|
11839
|
+
@include exports( "combobox/layout" ) {
|
|
11322
11840
|
|
|
11323
11841
|
// Combobox
|
|
11324
11842
|
.k-combobox {}
|
|
@@ -11330,7 +11848,7 @@ $combobox-select-pressed-gradient: $kendo-button-active-gradient !default;
|
|
|
11330
11848
|
// #endregion
|
|
11331
11849
|
// #region @import "_theme.scss"; -> packages/bootstrap/scss/combobox/_theme.scss
|
|
11332
11850
|
// #region @import "~@progress/kendo-theme-default/scss/combobox/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/combobox/_theme.scss
|
|
11333
|
-
@include exports("combobox/theme") {
|
|
11851
|
+
@include exports( "combobox/theme" ) {
|
|
11334
11852
|
|
|
11335
11853
|
// Combobox
|
|
11336
11854
|
.k-combobox {}
|
|
@@ -11372,6 +11890,8 @@ $toolbar-shadow: null !default;
|
|
|
11372
11890
|
|
|
11373
11891
|
$toolbar-separator-border: inherit !default;
|
|
11374
11892
|
|
|
11893
|
+
$toolbar-input-width: 10em !default;
|
|
11894
|
+
|
|
11375
11895
|
// #endregion
|
|
11376
11896
|
// #region @import "../menu/_variables.scss"; -> packages/bootstrap/scss/menu/_variables.scss
|
|
11377
11897
|
// Menu
|
|
@@ -11407,7 +11927,7 @@ $menu-item-expanded-gradient: null !default;
|
|
|
11407
11927
|
|
|
11408
11928
|
$menu-item-focus-shadow: inset 0 0 0 3px rgba( $menu-text, .15 ) !default;
|
|
11409
11929
|
|
|
11410
|
-
$menu-separator-spacing:
|
|
11930
|
+
$menu-separator-spacing: map-get( $spacing, 1 ) !default;
|
|
11411
11931
|
|
|
11412
11932
|
$menu-scroll-button-bg: $menu-bg !default;
|
|
11413
11933
|
$menu-scroll-button-text: rgba( $menu-text, .5 ) !default;
|
|
@@ -11487,6 +12007,18 @@ $kendo-menu-popup-item-padding-end-sm: calc( #{$kendo-menu-popup-item-padding-x-
|
|
|
11487
12007
|
$kendo-menu-popup-item-padding-end-md: calc( #{$kendo-menu-popup-item-padding-x-md * 2} + #{$icon-size} ) !default;
|
|
11488
12008
|
$kendo-menu-popup-item-padding-end-lg: calc( #{$kendo-menu-popup-item-padding-x-lg * 2} + #{$icon-size} ) !default;
|
|
11489
12009
|
|
|
12010
|
+
/// The start margin of the menu item expand icon.
|
|
12011
|
+
/// @group menu-popup-item
|
|
12012
|
+
$kendo-menu-popup-item-icon-margin-start-sm: $kendo-menu-popup-item-padding-x-sm !default;
|
|
12013
|
+
$kendo-menu-popup-item-icon-margin-start: $kendo-menu-popup-item-padding-x-md !default;
|
|
12014
|
+
$kendo-menu-popup-item-icon-margin-start-lg: $kendo-menu-popup-item-padding-x-lg !default;
|
|
12015
|
+
|
|
12016
|
+
/// The end margin of the menu item expand icon.
|
|
12017
|
+
/// @group menu-popup-item
|
|
12018
|
+
$kendo-menu-popup-item-icon-margin-end-sm: calc( -1 * (#{$kendo-menu-popup-item-padding-end-sm} - #{$kendo-menu-popup-item-padding-x-sm / 2}) ) !default;
|
|
12019
|
+
$kendo-menu-popup-item-icon-margin-end: calc( -1 * (#{$kendo-menu-popup-item-padding-end-md} - #{$kendo-menu-popup-item-padding-x-md / 2}) ) !default;
|
|
12020
|
+
$kendo-menu-popup-item-icon-margin-end-lg: calc( -1 * (#{$kendo-menu-popup-item-padding-end-lg} - #{$kendo-menu-popup-item-padding-x-lg / 2}) ) !default;
|
|
12021
|
+
|
|
11490
12022
|
/// The spacing between the menu items in popup.
|
|
11491
12023
|
/// @group menu-popup-item
|
|
11492
12024
|
$kendo-menu-popup-item-spacing: 0px !default;
|
|
@@ -11670,21 +12202,21 @@ $grid-sticky-selected-alt-bg: shade($grid-sticky-selected-bg, .4) !default;
|
|
|
11670
12202
|
$grid-sticky-hovered-bg: try-shade( $grid-bg ) !default;
|
|
11671
12203
|
$grid-sticky-selected-hovered-bg: shade($grid-sticky-selected-bg, .7) !default;
|
|
11672
12204
|
|
|
11673
|
-
$grid-
|
|
12205
|
+
$grid-column-menu-width: 250px !default;
|
|
11674
12206
|
|
|
11675
12207
|
$grid-filter-menu-check-all-border-bottom-width: 1px !default;
|
|
11676
12208
|
|
|
11677
12209
|
$grid-filter-menu-item-spacing-x: map-get( $spacing, 6 ) !default;
|
|
11678
12210
|
$grid-filter-menu-item-spacing-y: map-get( $spacing, 2 ) !default;
|
|
11679
12211
|
|
|
11680
|
-
$grid-column-menu-popup-padding-x:
|
|
11681
|
-
$grid-column-menu-popup-padding-y:
|
|
12212
|
+
$grid-column-menu-popup-padding-x: null !default;
|
|
12213
|
+
$grid-column-menu-popup-padding-y: null !default;
|
|
11682
12214
|
|
|
11683
|
-
$grid-column-menu-item-padding-x: $padding-x-
|
|
11684
|
-
$grid-column-menu-item-padding-y: $padding-y-
|
|
12215
|
+
$grid-column-menu-item-padding-x: $kendo-menu-popup-item-padding-x-md !default;
|
|
12216
|
+
$grid-column-menu-item-padding-y: $kendo-menu-popup-item-padding-y-md !default;
|
|
11685
12217
|
|
|
11686
|
-
$grid-column-menu-list-item-padding-x: $padding-x-
|
|
11687
|
-
$grid-column-menu-list-item-padding-y: $padding-y-
|
|
12218
|
+
$grid-column-menu-list-item-padding-x: $kendo-list-item-padding-x-md !default;
|
|
12219
|
+
$grid-column-menu-list-item-padding-y: $kendo-list-item-padding-y-md !default;
|
|
11688
12220
|
|
|
11689
12221
|
$grid-column-menu-items-wrap-padding-x: 0 !default;
|
|
11690
12222
|
$grid-column-menu-items-wrap-padding-y: map-get( $spacing, 2 ) !default;
|
|
@@ -11745,7 +12277,7 @@ $kendo-table-sizes: (
|
|
|
11745
12277
|
sm: (
|
|
11746
12278
|
font-size: $font-size,
|
|
11747
12279
|
line-height: $line-height,
|
|
11748
|
-
cell-padding-x: map-get( $spacing,
|
|
12280
|
+
cell-padding-x: map-get( $spacing, 2 ),
|
|
11749
12281
|
cell-padding-y: map-get( $spacing, 1 )
|
|
11750
12282
|
),
|
|
11751
12283
|
md: (
|
|
@@ -11757,7 +12289,7 @@ $kendo-table-sizes: (
|
|
|
11757
12289
|
lg: (
|
|
11758
12290
|
font-size: $font-size,
|
|
11759
12291
|
line-height: $line-height,
|
|
11760
|
-
cell-padding-x: map-get( $spacing,
|
|
12292
|
+
cell-padding-x: map-get( $spacing, 2 ),
|
|
11761
12293
|
cell-padding-y: map-get( $spacing, 3 )
|
|
11762
12294
|
)
|
|
11763
12295
|
) !default;
|
|
@@ -11798,13 +12330,13 @@ $kendo-table-footer-border: $grid-footer-border !default;
|
|
|
11798
12330
|
|
|
11799
12331
|
/// Background color of group rows in table.
|
|
11800
12332
|
/// @group table
|
|
11801
|
-
$kendo-table-group-row-bg: $
|
|
12333
|
+
$kendo-table-group-row-bg: $kendo-table-header-bg !default;
|
|
11802
12334
|
/// Text color of group rows in table.
|
|
11803
12335
|
/// @group table
|
|
11804
|
-
$kendo-table-group-row-text: $
|
|
12336
|
+
$kendo-table-group-row-text: $kendo-table-header-text !default;
|
|
11805
12337
|
/// Border color of group rows in table.
|
|
11806
12338
|
/// @group table
|
|
11807
|
-
$kendo-table-group-row-border:
|
|
12339
|
+
$kendo-table-group-row-border: $kendo-table-header-border !default;
|
|
11808
12340
|
|
|
11809
12341
|
|
|
11810
12342
|
/// Background color of alternating rows in table.
|
|
@@ -11856,7 +12388,7 @@ $kendo-table-selected-border: $grid-selected-border !default;
|
|
|
11856
12388
|
// #endregion
|
|
11857
12389
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/table/_layout.scss
|
|
11858
12390
|
// #region @import "~@progress/kendo-theme-default/scss/table/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/table/_layout.scss
|
|
11859
|
-
@include exports("table/layout") {
|
|
12391
|
+
@include exports( "table/layout" ) {
|
|
11860
12392
|
|
|
11861
12393
|
// Table
|
|
11862
12394
|
.k-table {
|
|
@@ -11888,12 +12420,11 @@ $kendo-table-selected-border: $grid-selected-border !default;
|
|
|
11888
12420
|
// Table native parts
|
|
11889
12421
|
.k-table-thead,
|
|
11890
12422
|
.k-table-tbody,
|
|
11891
|
-
.k-table-tfoot
|
|
11892
|
-
text-align: inherit;
|
|
11893
|
-
}
|
|
12423
|
+
.k-table-tfoot,
|
|
11894
12424
|
.k-table-row,
|
|
11895
12425
|
.k-table-alt-row {
|
|
11896
12426
|
border-color: inherit;
|
|
12427
|
+
text-align: inherit;
|
|
11897
12428
|
}
|
|
11898
12429
|
.k-table-th,
|
|
11899
12430
|
.k-table-td {
|
|
@@ -11914,6 +12445,9 @@ $kendo-table-selected-border: $grid-selected-border !default;
|
|
|
11914
12445
|
border-left-width: 0;
|
|
11915
12446
|
}
|
|
11916
12447
|
}
|
|
12448
|
+
.k-table-th {
|
|
12449
|
+
border-bottom-width: 1px;
|
|
12450
|
+
}
|
|
11917
12451
|
|
|
11918
12452
|
|
|
11919
12453
|
// Table header
|
|
@@ -11932,8 +12466,25 @@ $kendo-table-selected-border: $grid-selected-border !default;
|
|
|
11932
12466
|
width: 100%;
|
|
11933
12467
|
border-width: 0 $kendo-table-cell-vertical-border-width 0 0;
|
|
11934
12468
|
border-style: solid;
|
|
12469
|
+
border-color: inherit;
|
|
11935
12470
|
overflow: hidden;
|
|
11936
12471
|
}
|
|
12472
|
+
.k-table-header,
|
|
12473
|
+
.k-table-header-wrap {
|
|
12474
|
+
> .k-table {
|
|
12475
|
+
margin-bottom: -1px;
|
|
12476
|
+
}
|
|
12477
|
+
}
|
|
12478
|
+
.k-table-group-sticky-header {
|
|
12479
|
+
flex: none;
|
|
12480
|
+
|
|
12481
|
+
.k-table-th {
|
|
12482
|
+
display: flex;
|
|
12483
|
+
flex-flow: row nowrap;
|
|
12484
|
+
align-items: center;
|
|
12485
|
+
align-content: center;
|
|
12486
|
+
}
|
|
12487
|
+
}
|
|
11937
12488
|
|
|
11938
12489
|
|
|
11939
12490
|
// Table list
|
|
@@ -12011,7 +12562,8 @@ $kendo-table-selected-border: $grid-selected-border !default;
|
|
|
12011
12562
|
|
|
12012
12563
|
|
|
12013
12564
|
// Virtualization
|
|
12014
|
-
.k-virtual-table .k-table-row
|
|
12565
|
+
.k-virtual-table .k-table-row,
|
|
12566
|
+
.k-virtual-table .k-table-group-row {
|
|
12015
12567
|
position: absolute;
|
|
12016
12568
|
width: 100%;
|
|
12017
12569
|
}
|
|
@@ -12044,6 +12596,7 @@ $kendo-table-selected-border: $grid-selected-border !default;
|
|
|
12044
12596
|
width: 100%;
|
|
12045
12597
|
border-width: 0 $kendo-table-cell-vertical-border-width 0 0;
|
|
12046
12598
|
border-style: solid;
|
|
12599
|
+
border-color: inherit;
|
|
12047
12600
|
overflow: hidden;
|
|
12048
12601
|
}
|
|
12049
12602
|
|
|
@@ -12116,7 +12669,7 @@ $kendo-table-selected-border: $grid-selected-border !default;
|
|
|
12116
12669
|
// #endregion
|
|
12117
12670
|
// #region @import "_theme.scss"; -> packages/bootstrap/scss/table/_theme.scss
|
|
12118
12671
|
// #region @import "~@progress/kendo-theme-default/scss/table/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/table/_theme.scss
|
|
12119
|
-
@include exports("table/theme") {
|
|
12672
|
+
@include exports( "table/theme" ) {
|
|
12120
12673
|
|
|
12121
12674
|
// Table
|
|
12122
12675
|
.k-table,
|
|
@@ -12129,7 +12682,8 @@ $kendo-table-selected-border: $grid-selected-border !default;
|
|
|
12129
12682
|
|
|
12130
12683
|
// Table header
|
|
12131
12684
|
.k-table-thead,
|
|
12132
|
-
.k-table-header
|
|
12685
|
+
.k-table-header,
|
|
12686
|
+
.k-table-group-sticky-header {
|
|
12133
12687
|
border-color: $kendo-table-header-border;
|
|
12134
12688
|
color: $kendo-table-header-text;
|
|
12135
12689
|
background-color: $kendo-table-header-bg;
|
|
@@ -12203,6 +12757,72 @@ $kendo-table-selected-border: $grid-selected-border !default;
|
|
|
12203
12757
|
// #endregion
|
|
12204
12758
|
|
|
12205
12759
|
|
|
12760
|
+
// #endregion
|
|
12761
|
+
// #region @import "virtual-scroller/_index.scss"; -> packages/bootstrap/scss/virtual-scroller/_index.scss
|
|
12762
|
+
// #region @import "../core/_index.scss"; -> packages/bootstrap/scss/core/_index.scss
|
|
12763
|
+
// File already imported_once. Skipping output.
|
|
12764
|
+
// #endregion
|
|
12765
|
+
|
|
12766
|
+
|
|
12767
|
+
// Dependencies
|
|
12768
|
+
|
|
12769
|
+
|
|
12770
|
+
// Component
|
|
12771
|
+
// #region @import "_variables.scss"; -> packages/bootstrap/scss/virtual-scroller/_variables.scss
|
|
12772
|
+
// Virtual-scroller
|
|
12773
|
+
|
|
12774
|
+
// #endregion
|
|
12775
|
+
// #region @import "_layout.scss"; -> packages/bootstrap/scss/virtual-scroller/_layout.scss
|
|
12776
|
+
// #region @import "~@progress/kendo-theme-default/scss/virtual-scroller/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/virtual-scroller/_layout.scss
|
|
12777
|
+
@include exports( "virtual-scroller/layout" ) {
|
|
12778
|
+
|
|
12779
|
+
// Virtual scroller
|
|
12780
|
+
.k-virtual-scroller {
|
|
12781
|
+
width: 100%;
|
|
12782
|
+
height: 100%;
|
|
12783
|
+
flex: 1 1 auto;
|
|
12784
|
+
overflow: auto;
|
|
12785
|
+
position: relative;
|
|
12786
|
+
}
|
|
12787
|
+
|
|
12788
|
+
|
|
12789
|
+
// Virtual scroller wrap
|
|
12790
|
+
.k-virtual-scroller-wrap {
|
|
12791
|
+
position: relative;
|
|
12792
|
+
z-index: 1;
|
|
12793
|
+
}
|
|
12794
|
+
|
|
12795
|
+
|
|
12796
|
+
// Virtual scroller content
|
|
12797
|
+
.k-virtual-scroller-content {
|
|
12798
|
+
position: absolute;
|
|
12799
|
+
width: 100%;
|
|
12800
|
+
top: 0;
|
|
12801
|
+
inset-inline-start: 0;
|
|
12802
|
+
}
|
|
12803
|
+
|
|
12804
|
+
|
|
12805
|
+
// Virtual scroller size
|
|
12806
|
+
.k-virtual-scroller-size {
|
|
12807
|
+
position: relative;
|
|
12808
|
+
z-index: 0;
|
|
12809
|
+
}
|
|
12810
|
+
|
|
12811
|
+
}
|
|
12812
|
+
|
|
12813
|
+
// #endregion
|
|
12814
|
+
|
|
12815
|
+
// #endregion
|
|
12816
|
+
// #region @import "_theme.scss"; -> packages/bootstrap/scss/virtual-scroller/_theme.scss
|
|
12817
|
+
// #region @import "~@progress/kendo-theme-default/scss/virtual-scroller/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/virtual-scroller/_theme.scss
|
|
12818
|
+
@include exports( "virtual-scroller/theme" ) {
|
|
12819
|
+
|
|
12820
|
+
}
|
|
12821
|
+
|
|
12822
|
+
// #endregion
|
|
12823
|
+
|
|
12824
|
+
// #endregion
|
|
12825
|
+
|
|
12206
12826
|
// #endregion
|
|
12207
12827
|
|
|
12208
12828
|
|
|
@@ -12844,31 +13464,16 @@ $color-preview-transparent-color-image: url("data:image/png;base64,iVBORw0KGgoAA
|
|
|
12844
13464
|
height: 100%;
|
|
12845
13465
|
border-width: $color-preview-border-width;
|
|
12846
13466
|
border-radius: $color-preview-border-radius;
|
|
13467
|
+
box-sizing: border-box;
|
|
12847
13468
|
border-style: solid;
|
|
12848
13469
|
display: inline-flex;
|
|
12849
13470
|
flex-direction: row;
|
|
12850
13471
|
flex-wrap: nowrap;
|
|
12851
13472
|
position: relative;
|
|
12852
13473
|
overflow: hidden;
|
|
12853
|
-
|
|
12854
|
-
> .k-color-preview-mask {
|
|
12855
|
-
width: 100%;
|
|
12856
|
-
height: 100%;
|
|
12857
|
-
position: absolute;
|
|
12858
|
-
top: 0;
|
|
12859
|
-
left: 0;
|
|
12860
|
-
}
|
|
12861
|
-
|
|
12862
|
-
&::before {
|
|
12863
|
-
content: "";
|
|
12864
|
-
width: 100%;
|
|
12865
|
-
height: 100%;
|
|
12866
|
-
display: block;
|
|
12867
|
-
position: relative;
|
|
12868
|
-
z-index: -1;
|
|
12869
|
-
}
|
|
12870
13474
|
}
|
|
12871
13475
|
|
|
13476
|
+
|
|
12872
13477
|
// Current Color
|
|
12873
13478
|
.k-coloreditor-current-color {
|
|
12874
13479
|
cursor: pointer;
|
|
@@ -12888,23 +13493,37 @@ $color-preview-transparent-color-image: url("data:image/png;base64,iVBORw0KGgoAA
|
|
|
12888
13493
|
.k-color-preview-mask {
|
|
12889
13494
|
width: calc( #{$icon-size} - 2px );
|
|
12890
13495
|
height: 2px;
|
|
12891
|
-
position: static;
|
|
12892
|
-
}
|
|
12893
|
-
|
|
12894
|
-
&::before {
|
|
12895
|
-
display: none;
|
|
12896
13496
|
}
|
|
12897
13497
|
}
|
|
12898
13498
|
|
|
12899
13499
|
|
|
12900
|
-
//
|
|
12901
|
-
.k-
|
|
13500
|
+
// Color Preview Mask
|
|
13501
|
+
.k-color-preview-mask {
|
|
13502
|
+
width: 100%;
|
|
13503
|
+
height: 100%;
|
|
13504
|
+
position: relative;
|
|
13505
|
+
}
|
|
13506
|
+
.k-color-preview-mask::before {
|
|
12902
13507
|
content: "";
|
|
12903
13508
|
width: 100%;
|
|
12904
13509
|
height: 100%;
|
|
12905
13510
|
position: absolute;
|
|
12906
13511
|
top: 0;
|
|
12907
13512
|
left: 0;
|
|
13513
|
+
z-index: -1;
|
|
13514
|
+
background: $color-preview-transparent-color-image;
|
|
13515
|
+
background-size: contain;
|
|
13516
|
+
background-position: 0 0;
|
|
13517
|
+
}
|
|
13518
|
+
|
|
13519
|
+
|
|
13520
|
+
// No Color
|
|
13521
|
+
.k-no-color .k-color-preview-mask::before {
|
|
13522
|
+
content: "";
|
|
13523
|
+
background-color: $color-preview-no-color-bg;
|
|
13524
|
+
background-image: $color-preview-no-color-image;
|
|
13525
|
+
background-size: 100% 100%;
|
|
13526
|
+
background-position: 0 0;
|
|
12908
13527
|
}
|
|
12909
13528
|
|
|
12910
13529
|
}
|
|
@@ -12924,26 +13543,12 @@ $color-preview-transparent-color-image: url("data:image/png;base64,iVBORw0KGgoAA
|
|
|
12924
13543
|
$color-preview-border
|
|
12925
13544
|
);
|
|
12926
13545
|
|
|
12927
|
-
&::before {
|
|
12928
|
-
background: $color-preview-transparent-color-image;
|
|
12929
|
-
background-size: contain;
|
|
12930
|
-
background-position: 0;
|
|
12931
|
-
}
|
|
12932
|
-
|
|
12933
13546
|
&:hover,
|
|
12934
13547
|
&.k-hover {
|
|
12935
13548
|
@include fill( $border: $color-preview-hover-border );
|
|
12936
13549
|
}
|
|
12937
13550
|
}
|
|
12938
13551
|
|
|
12939
|
-
// No Color
|
|
12940
|
-
.k-no-color::before {
|
|
12941
|
-
background-color: $color-preview-no-color-bg;
|
|
12942
|
-
background-image: $color-preview-no-color-image;
|
|
12943
|
-
background-size: 100% 100%;
|
|
12944
|
-
background-position: 0 0;
|
|
12945
|
-
}
|
|
12946
|
-
|
|
12947
13552
|
}
|
|
12948
13553
|
|
|
12949
13554
|
// #endregion
|
|
@@ -13809,13 +14414,20 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13809
14414
|
.k-split-button {}
|
|
13810
14415
|
|
|
13811
14416
|
|
|
14417
|
+
// Input
|
|
14418
|
+
.k-input,
|
|
14419
|
+
.k-picker:not(.k-colorpicker) {
|
|
14420
|
+
width: $toolbar-input-width;
|
|
14421
|
+
}
|
|
14422
|
+
|
|
13812
14423
|
// Overflow anchor
|
|
13813
14424
|
.k-overflow-anchor {
|
|
13814
14425
|
@include border-radius( 0 );
|
|
13815
14426
|
margin: 0;
|
|
13816
14427
|
padding: $toolbar-padding-y;
|
|
13817
|
-
width:
|
|
14428
|
+
width: auto;
|
|
13818
14429
|
height: 100%;
|
|
14430
|
+
aspect-ratio: 1;
|
|
13819
14431
|
border-width: 0;
|
|
13820
14432
|
border-color: inherit;
|
|
13821
14433
|
box-sizing: border-box;
|
|
@@ -13847,6 +14459,7 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13847
14459
|
flex: 1 0 0%;
|
|
13848
14460
|
}
|
|
13849
14461
|
|
|
14462
|
+
|
|
13850
14463
|
// Template
|
|
13851
14464
|
.k-toolbar-template {
|
|
13852
14465
|
align-self: center;
|
|
@@ -13867,6 +14480,7 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13867
14480
|
|
|
13868
14481
|
// Angular specific
|
|
13869
14482
|
kendo-toolbar-renderer {
|
|
14483
|
+
display: inline-block;
|
|
13870
14484
|
border-color: inherit;
|
|
13871
14485
|
}
|
|
13872
14486
|
|
|
@@ -13874,6 +14488,14 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13874
14488
|
// Overflow container
|
|
13875
14489
|
.k-overflow-container {
|
|
13876
14490
|
|
|
14491
|
+
> .k-item {
|
|
14492
|
+
border-color: inherit;
|
|
14493
|
+
}
|
|
14494
|
+
|
|
14495
|
+
.k-separator {
|
|
14496
|
+
margin: map-get( $spacing, 1 ) 0;
|
|
14497
|
+
}
|
|
14498
|
+
|
|
13877
14499
|
// Group
|
|
13878
14500
|
.k-overflow-tool-group {
|
|
13879
14501
|
display: block;
|
|
@@ -13881,13 +14503,23 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13881
14503
|
|
|
13882
14504
|
// Button
|
|
13883
14505
|
.k-overflow-button {
|
|
14506
|
+
@include border-radius( 0 );
|
|
14507
|
+
padding: $kendo-list-item-padding-y-md $kendo-list-item-padding-x-md;
|
|
13884
14508
|
width: 100%;
|
|
14509
|
+
border-width: 0;
|
|
14510
|
+
color: inherit;
|
|
14511
|
+
background-color: transparent;
|
|
14512
|
+
background-image: none;
|
|
14513
|
+
line-height: inherit;
|
|
14514
|
+
display: flex;
|
|
14515
|
+
justify-content: flex-start;
|
|
13885
14516
|
}
|
|
13886
14517
|
|
|
13887
14518
|
// Button group
|
|
13888
14519
|
.k-button-group {
|
|
14520
|
+
@include box-shadow( none );
|
|
13889
14521
|
display: flex;
|
|
13890
|
-
flex-
|
|
14522
|
+
flex-flow: column nowrap;
|
|
13891
14523
|
|
|
13892
14524
|
.k-button {
|
|
13893
14525
|
margin: if( $kendo-button-border-width == 0, null, 0);
|
|
@@ -13981,13 +14613,6 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13981
14613
|
@include box-shadow( $toolbar-shadow );
|
|
13982
14614
|
|
|
13983
14615
|
|
|
13984
|
-
// Overflow anchor
|
|
13985
|
-
.k-overflow-anchor {
|
|
13986
|
-
color: inherit;
|
|
13987
|
-
background: transparent;
|
|
13988
|
-
}
|
|
13989
|
-
|
|
13990
|
-
|
|
13991
14616
|
// Separator
|
|
13992
14617
|
.k-separator {
|
|
13993
14618
|
border-color: $toolbar-separator-border;
|
|
@@ -13999,6 +14624,41 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13999
14624
|
|
|
14000
14625
|
}
|
|
14001
14626
|
|
|
14627
|
+
|
|
14628
|
+
// Overflow container
|
|
14629
|
+
.k-overflow-container {
|
|
14630
|
+
|
|
14631
|
+
.k-button {
|
|
14632
|
+
|
|
14633
|
+
// Hover state
|
|
14634
|
+
&:hover,
|
|
14635
|
+
&.k-state-hover {
|
|
14636
|
+
color: $kendo-list-item-hover-text;
|
|
14637
|
+
background: $kendo-list-item-hover-bg;
|
|
14638
|
+
}
|
|
14639
|
+
|
|
14640
|
+
// Active state
|
|
14641
|
+
&:active,
|
|
14642
|
+
&.k-state-active {
|
|
14643
|
+
color: $kendo-list-item-selected-text;
|
|
14644
|
+
background: $kendo-list-item-selected-bg;
|
|
14645
|
+
}
|
|
14646
|
+
|
|
14647
|
+
// Button focus state
|
|
14648
|
+
.k-button:focus,
|
|
14649
|
+
.k-button.k-state-focused {
|
|
14650
|
+
box-shadow: $kendo-list-item-focus-shadow;
|
|
14651
|
+
}
|
|
14652
|
+
|
|
14653
|
+
// Disabled state
|
|
14654
|
+
&:disabled,
|
|
14655
|
+
&.k-state-disabled {
|
|
14656
|
+
color: inherit;
|
|
14657
|
+
}
|
|
14658
|
+
}
|
|
14659
|
+
|
|
14660
|
+
}
|
|
14661
|
+
|
|
14002
14662
|
}
|
|
14003
14663
|
|
|
14004
14664
|
|
|
@@ -14353,7 +15013,8 @@ $fieldset-legend-border: null !default;
|
|
|
14353
15013
|
border: 0;
|
|
14354
15014
|
|
|
14355
15015
|
> * {
|
|
14356
|
-
&:first-child
|
|
15016
|
+
&:not(.k-hidden):first-child,
|
|
15017
|
+
&.k-hidden + :not(.k-hidden) {
|
|
14357
15018
|
margin-top: 0;
|
|
14358
15019
|
}
|
|
14359
15020
|
}
|
|
@@ -14382,7 +15043,8 @@ $fieldset-legend-border: null !default;
|
|
|
14382
15043
|
|
|
14383
15044
|
> *,
|
|
14384
15045
|
.k-daterangepicker .k-textbox-container {
|
|
14385
|
-
&:first-child
|
|
15046
|
+
&:not(.k-hidden):first-child,
|
|
15047
|
+
&.k-hidden + :not(.k-hidden) {
|
|
14386
15048
|
margin-top: 0;
|
|
14387
15049
|
}
|
|
14388
15050
|
}
|
|
@@ -14946,753 +15608,184 @@ $fieldset-legend-border: null !default;
|
|
|
14946
15608
|
$tooltip-success-text,
|
|
14947
15609
|
$tooltip-success-bg,
|
|
14948
15610
|
$tooltip-success-border
|
|
14949
|
-
);
|
|
14950
|
-
|
|
14951
|
-
.k-callout {
|
|
14952
|
-
color: $tooltip-success-bg;
|
|
14953
|
-
}
|
|
14954
|
-
}
|
|
14955
|
-
.k-tooltip-warning {
|
|
14956
|
-
@include fill(
|
|
14957
|
-
$tooltip-warning-text,
|
|
14958
|
-
$tooltip-warning-bg,
|
|
14959
|
-
$tooltip-warning-border
|
|
14960
|
-
);
|
|
14961
|
-
|
|
14962
|
-
.k-callout {
|
|
14963
|
-
color: $tooltip-warning-bg;
|
|
14964
|
-
}
|
|
14965
|
-
}
|
|
14966
|
-
.k-tooltip-error {
|
|
14967
|
-
@include fill(
|
|
14968
|
-
$tooltip-error-text,
|
|
14969
|
-
$tooltip-error-bg,
|
|
14970
|
-
$tooltip-error-border
|
|
14971
|
-
);
|
|
14972
|
-
|
|
14973
|
-
.k-callout {
|
|
14974
|
-
color: $tooltip-error-bg;
|
|
14975
|
-
}
|
|
14976
|
-
}
|
|
14977
|
-
}
|
|
14978
|
-
|
|
14979
|
-
// #endregion
|
|
14980
|
-
|
|
14981
|
-
// #endregion
|
|
14982
|
-
|
|
14983
|
-
// #endregion
|
|
14984
|
-
// #region @import "../icons/_index.scss"; -> packages/bootstrap/scss/icons/_index.scss
|
|
14985
|
-
// File already imported_once. Skipping output.
|
|
14986
|
-
// #endregion
|
|
14987
|
-
|
|
14988
|
-
|
|
14989
|
-
// Component
|
|
14990
|
-
// #region @import "_variables.scss"; -> packages/bootstrap/scss/validator/_variables.scss
|
|
14991
|
-
|
|
14992
|
-
// #endregion
|
|
14993
|
-
// #region @import "_layout.scss"; -> packages/bootstrap/scss/validator/_layout.scss
|
|
14994
|
-
// #region @import "~@progress/kendo-theme-default/scss/validator/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/validator/_layout.scss
|
|
14995
|
-
@include exports("validator/layout") {
|
|
14996
|
-
|
|
14997
|
-
.k-validator-tooltip {
|
|
14998
|
-
margin-top: calc( #{$tooltip-callout-size} + #{$tooltip-border-width} );
|
|
14999
|
-
width: auto;
|
|
15000
|
-
white-space: normal;
|
|
15001
|
-
display: flex;
|
|
15002
|
-
align-items: center;
|
|
15003
|
-
// NOTE: This works around popup / tooltip stackin issue
|
|
15004
|
-
z-index: 9999;
|
|
15005
|
-
|
|
15006
|
-
// .k-callout-n { inset-inline-start: 16px; }
|
|
15007
|
-
}
|
|
15008
|
-
.k-grid .k-validator-tooltip {
|
|
15009
|
-
max-width: 300px;
|
|
15010
|
-
}
|
|
15011
|
-
|
|
15012
|
-
}
|
|
15013
|
-
|
|
15014
|
-
// #endregion
|
|
15015
|
-
|
|
15016
|
-
// #endregion
|
|
15017
|
-
// #region @import "_theme.scss"; -> packages/bootstrap/scss/validator/_theme.scss
|
|
15018
|
-
// #region @import "~@progress/kendo-theme-default/scss/validator/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/validator/_theme.scss
|
|
15019
|
-
@include exports( "validator/theme" ) {}
|
|
15020
|
-
|
|
15021
|
-
// #endregion
|
|
15022
|
-
|
|
15023
|
-
// #endregion
|
|
15024
|
-
|
|
15025
|
-
// #endregion
|
|
15026
|
-
// #region @import "floating-label/_index.scss"; -> packages/bootstrap/scss/floating-label/_index.scss
|
|
15027
|
-
// File already imported_once. Skipping output.
|
|
15028
|
-
// #endregion
|
|
15029
|
-
|
|
15030
|
-
|
|
15031
|
-
// Native forms
|
|
15032
|
-
// #region @import "button/_index.scss"; -> packages/bootstrap/scss/button/_index.scss
|
|
15033
|
-
// File already imported_once. Skipping output.
|
|
15034
|
-
// #endregion
|
|
15035
|
-
// #region @import "input/_index.scss"; -> packages/bootstrap/scss/input/_index.scss
|
|
15036
|
-
// File already imported_once. Skipping output.
|
|
15037
|
-
// #endregion
|
|
15038
|
-
// #region @import "textbox/_index.scss"; -> packages/bootstrap/scss/textbox/_index.scss
|
|
15039
|
-
// #region @import "../core/_index.scss"; -> packages/bootstrap/scss/core/_index.scss
|
|
15040
|
-
// File already imported_once. Skipping output.
|
|
15041
|
-
// #endregion
|
|
15042
|
-
|
|
15043
|
-
|
|
15044
|
-
// Dependencies
|
|
15045
|
-
// #region @import "../common/_index.scss"; -> packages/bootstrap/scss/common/_index.scss
|
|
15046
|
-
// File already imported_once. Skipping output.
|
|
15047
|
-
// #endregion
|
|
15048
|
-
// #region @import "../input/_index.scss"; -> packages/bootstrap/scss/input/_index.scss
|
|
15049
|
-
// File already imported_once. Skipping output.
|
|
15050
|
-
// #endregion
|
|
15051
|
-
// #region @import "../floating-label/_index.scss"; -> packages/bootstrap/scss/floating-label/_index.scss
|
|
15052
|
-
// File already imported_once. Skipping output.
|
|
15053
|
-
// #endregion
|
|
15054
|
-
|
|
15055
|
-
|
|
15056
|
-
// Component
|
|
15057
|
-
// #region @import "_variables.scss"; -> packages/bootstrap/scss/textbox/_variables.scss
|
|
15058
|
-
// Textbox
|
|
15059
|
-
|
|
15060
|
-
// #endregion
|
|
15061
|
-
// #region @import "_layout.scss"; -> packages/bootstrap/scss/textbox/_layout.scss
|
|
15062
|
-
// #region @import "~@progress/kendo-theme-default/scss/textbox/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/textbox/_layout.scss
|
|
15063
|
-
@include exports( "textbox/layout" ) {
|
|
15064
|
-
|
|
15065
|
-
// Textbox
|
|
15066
|
-
.k-textbox {}
|
|
15067
|
-
|
|
15068
|
-
}
|
|
15069
|
-
|
|
15070
|
-
// #endregion
|
|
15071
|
-
|
|
15072
|
-
// #endregion
|
|
15073
|
-
// #region @import "_theme.scss"; -> packages/bootstrap/scss/textbox/_theme.scss
|
|
15074
|
-
// #region @import "~@progress/kendo-theme-default/scss/textbox/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/textbox/_theme.scss
|
|
15075
|
-
@include exports("textbox/theme") {
|
|
15076
|
-
|
|
15077
|
-
// Textbox
|
|
15078
|
-
.k-textbox {}
|
|
15079
|
-
}
|
|
15080
|
-
|
|
15081
|
-
// #endregion
|
|
15082
|
-
|
|
15083
|
-
// #endregion
|
|
15084
|
-
|
|
15085
|
-
// #endregion
|
|
15086
|
-
// #region @import "textarea/_index.scss"; -> packages/bootstrap/scss/textarea/_index.scss
|
|
15087
|
-
// #region @import "../core/_index.scss"; -> packages/bootstrap/scss/core/_index.scss
|
|
15088
|
-
// File already imported_once. Skipping output.
|
|
15089
|
-
// #endregion
|
|
15090
|
-
|
|
15091
|
-
|
|
15092
|
-
// Dependencies
|
|
15093
|
-
// #region @import "../common/_index.scss"; -> packages/bootstrap/scss/common/_index.scss
|
|
15094
|
-
// File already imported_once. Skipping output.
|
|
15095
|
-
// #endregion
|
|
15096
|
-
// #region @import "../input/_index.scss"; -> packages/bootstrap/scss/input/_index.scss
|
|
15097
|
-
// File already imported_once. Skipping output.
|
|
15098
|
-
// #endregion
|
|
15099
|
-
// #region @import "../floating-label/_index.scss"; -> packages/bootstrap/scss/floating-label/_index.scss
|
|
15100
|
-
// File already imported_once. Skipping output.
|
|
15101
|
-
// #endregion
|
|
15102
|
-
|
|
15103
|
-
|
|
15104
|
-
// Component
|
|
15105
|
-
// #region @import "_variables.scss"; -> packages/bootstrap/scss/textarea/_variables.scss
|
|
15106
|
-
// Textarea
|
|
15107
|
-
|
|
15108
|
-
// #endregion
|
|
15109
|
-
// #region @import "_layout.scss"; -> packages/bootstrap/scss/textarea/_layout.scss
|
|
15110
|
-
// #region @import "~@progress/kendo-theme-default/scss/textarea/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/textarea/_layout.scss
|
|
15111
|
-
@include exports( "textarea/layout" ) {
|
|
15112
|
-
|
|
15113
|
-
// Textarea
|
|
15114
|
-
.k-textarea {}
|
|
15115
|
-
|
|
15116
|
-
}
|
|
15117
|
-
|
|
15118
|
-
// #endregion
|
|
15119
|
-
|
|
15120
|
-
// #endregion
|
|
15121
|
-
// #region @import "_theme.scss"; -> packages/bootstrap/scss/textarea/_theme.scss
|
|
15122
|
-
// #region @import "~@progress/kendo-theme-default/scss/textarea/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/textarea/_theme.scss
|
|
15123
|
-
@include exports("textarea/theme") {
|
|
15124
|
-
|
|
15125
|
-
// Textarea
|
|
15126
|
-
.k-textarea {}
|
|
15127
|
-
|
|
15128
|
-
}
|
|
15129
|
-
|
|
15130
|
-
// #endregion
|
|
15131
|
-
|
|
15132
|
-
// #endregion
|
|
15133
|
-
|
|
15134
|
-
// #endregion
|
|
15135
|
-
// #region @import "checkbox/_index.scss"; -> packages/bootstrap/scss/checkbox/_index.scss
|
|
15136
|
-
// #region @import "../core/_index.scss"; -> packages/bootstrap/scss/core/_index.scss
|
|
15137
|
-
// File already imported_once. Skipping output.
|
|
15138
|
-
// #endregion
|
|
15139
|
-
|
|
15140
|
-
|
|
15141
|
-
// Dependencies
|
|
15142
|
-
// #region @import "../common/_index.scss"; -> packages/bootstrap/scss/common/_index.scss
|
|
15143
|
-
// File already imported_once. Skipping output.
|
|
15144
|
-
// #endregion
|
|
15145
|
-
// #region @import "../list/_variables.scss"; -> packages/bootstrap/scss/list/_variables.scss
|
|
15146
|
-
// File already imported_once. Skipping output.
|
|
15147
|
-
// #endregion
|
|
15148
|
-
|
|
15149
|
-
// Component
|
|
15150
|
-
// #region @import "_variables.scss"; -> packages/bootstrap/scss/checkbox/_variables.scss
|
|
15151
|
-
// Checkbox
|
|
15152
|
-
|
|
15153
|
-
/// The sizes of checkbox.
|
|
15154
|
-
/// @group checkbox
|
|
15155
|
-
$kendo-checkbox-sizes: (
|
|
15156
|
-
sm: map-get( $spacing, 3 ),
|
|
15157
|
-
md: map-get( $spacing, 4 ),
|
|
15158
|
-
lg: map-get( $spacing, 6 )
|
|
15159
|
-
) !default;
|
|
15160
|
-
|
|
15161
|
-
/// The border width of checkbox.
|
|
15162
|
-
/// @group checkbox
|
|
15163
|
-
$kendo-checkbox-border-width: 1px !default;
|
|
15164
|
-
/// The line height of checkbox.
|
|
15165
|
-
/// @group checkbox
|
|
15166
|
-
$kendo-checkbox-line-height: calc( #{map-get( $kendo-checkbox-sizes, "md" )} + #{$kendo-checkbox-border-width} ) !default;
|
|
15167
|
-
|
|
15168
|
-
/// The background of checkbox.
|
|
15169
|
-
/// @group checkbox
|
|
15170
|
-
$kendo-checkbox-bg: $component-bg !default;
|
|
15171
|
-
/// The background of checkbox.
|
|
15172
|
-
/// @group checkbox
|
|
15173
|
-
$kendo-checkbox-text: null !default;
|
|
15174
|
-
/// The border of checkbox.
|
|
15175
|
-
/// @group checkbox
|
|
15176
|
-
$kendo-checkbox-border: contrast-wcag( $kendo-checkbox-bg, $gray-400, $gray-600 ) !default;
|
|
15177
|
-
|
|
15178
|
-
/// The background of hovered checkbox.
|
|
15179
|
-
/// @group checkbox
|
|
15180
|
-
$kendo-checkbox-hover-bg: null !default;
|
|
15181
|
-
/// The text of hovered checkbox.
|
|
15182
|
-
/// @group checkbox
|
|
15183
|
-
$kendo-checkbox-hover-text: null !default;
|
|
15184
|
-
/// The border of hovered checkbox.
|
|
15185
|
-
/// @group checkbox
|
|
15186
|
-
$kendo-checkbox-hover-border: null !default;
|
|
15187
|
-
|
|
15188
|
-
/// The background of checked checkbox.
|
|
15189
|
-
/// @group checkbox
|
|
15190
|
-
$kendo-checkbox-checked-bg: $primary !default;
|
|
15191
|
-
/// The text of checked checkbox.
|
|
15192
|
-
/// @group checkbox
|
|
15193
|
-
$kendo-checkbox-checked-text: contrast-wcag( $kendo-checkbox-checked-bg ) !default;
|
|
15194
|
-
/// The border of checked checkbox.
|
|
15195
|
-
/// @group checkbox
|
|
15196
|
-
$kendo-checkbox-checked-border: $kendo-checkbox-checked-bg !default;
|
|
15197
|
-
|
|
15198
|
-
/// The background of indeterminate checkbox.
|
|
15199
|
-
/// @group checkbox
|
|
15200
|
-
$kendo-checkbox-indeterminate-bg: $kendo-checkbox-checked-bg !default;
|
|
15201
|
-
/// The text of indeterminate checkbox.
|
|
15202
|
-
/// @group checkbox
|
|
15203
|
-
$kendo-checkbox-indeterminate-text: $kendo-checkbox-checked-text !default;
|
|
15204
|
-
/// The border of indeterminate checkbox.
|
|
15205
|
-
/// @group checkbox
|
|
15206
|
-
$kendo-checkbox-indeterminate-border: $kendo-checkbox-checked-border !default;
|
|
15207
|
-
|
|
15208
|
-
/// The border of focused checkbox.
|
|
15209
|
-
/// @group checkbox
|
|
15210
|
-
$kendo-checkbox-focus-border: try-tint( $primary, 50% ) !default;
|
|
15211
|
-
/// The shadow of focused checkbox.
|
|
15212
|
-
/// @group checkbox
|
|
15213
|
-
$kendo-checkbox-focus-shadow: 0 0 0 .25rem rgba( $primary, .25 ) !default;
|
|
15214
|
-
/// The border of focused and checked checkbox.
|
|
15215
|
-
/// @group checkbox
|
|
15216
|
-
$kendo-checkbox-focus-checked-border: $kendo-checkbox-checked-border !default;
|
|
15217
|
-
/// The shadow of focused and checked checkbox.
|
|
15218
|
-
/// @group checkbox
|
|
15219
|
-
$kendo-checkbox-focus-checked-shadow: $kendo-checkbox-focus-shadow !default;
|
|
15220
|
-
|
|
15221
|
-
/// The background of disabled checkbox.
|
|
15222
|
-
/// @group checkbox
|
|
15223
|
-
$kendo-checkbox-disabled-bg: null !default;
|
|
15224
|
-
/// The text of disabled checkbox.
|
|
15225
|
-
/// @group checkbox
|
|
15226
|
-
$kendo-checkbox-disabled-text: null !default;
|
|
15227
|
-
/// The border of disabled checkbox.
|
|
15228
|
-
/// @group checkbox
|
|
15229
|
-
$kendo-checkbox-disabled-border: null !default;
|
|
15230
|
-
|
|
15231
|
-
/// The background of disabled and checked checkbox.
|
|
15232
|
-
/// @group checkbox
|
|
15233
|
-
$kendo-checkbox-disabled-checked-bg: null !default;
|
|
15234
|
-
/// The text of disabled and checked checkbox.
|
|
15235
|
-
/// @group checkbox
|
|
15236
|
-
$kendo-checkbox-disabled-checked-text: null !default;
|
|
15237
|
-
/// The border of disabled and checked checkbox.
|
|
15238
|
-
/// @group checkbox
|
|
15239
|
-
$kendo-checkbox-disabled-checked-border: null !default;
|
|
15240
|
-
|
|
15241
|
-
/// The background of invalid checkbox.
|
|
15242
|
-
/// @group checkbox
|
|
15243
|
-
$kendo-checkbox-invalid-bg: null !default;
|
|
15244
|
-
/// The text of invalid checkbox.
|
|
15245
|
-
/// @group checkbox
|
|
15246
|
-
$kendo-checkbox-invalid-text: $invalid-text !default;
|
|
15247
|
-
/// The border of invalid checkbox.
|
|
15248
|
-
/// @group checkbox
|
|
15249
|
-
$kendo-checkbox-invalid-border: $invalid-border !default;
|
|
15250
|
-
|
|
15251
|
-
|
|
15252
|
-
// Checkbox indicator
|
|
15253
|
-
|
|
15254
|
-
/// The icon type of checked checkbox.
|
|
15255
|
-
/// @group checkbox
|
|
15256
|
-
$kendo-checkbox-icon-type: image !default;
|
|
15257
|
-
|
|
15258
|
-
/// The glyph font family of checkbox.
|
|
15259
|
-
/// @group checkbox
|
|
15260
|
-
$kendo-checkbox-glyph-font-family: "WebComponentsIcons", monospace !default;
|
|
15261
|
-
/// The glyph of checked checkbox.
|
|
15262
|
-
/// @group checkbox
|
|
15263
|
-
$kendo-checkbox-checked-glyph: "\e118" !default;
|
|
15264
|
-
/// The glyph of indeterminate checkbox.
|
|
15265
|
-
/// @group checkbox
|
|
15266
|
-
$kendo-checkbox-indeterminate-glyph: "\e121" !default;
|
|
15267
|
-
|
|
15268
|
-
/// The image of checked checkbox.
|
|
15269
|
-
/// @group checkbox
|
|
15270
|
-
$kendo-checkbox-checked-image: escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='#{$kendo-checkbox-checked-text}' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/></svg>") ) !default;
|
|
15271
|
-
/// The image of indeterminate checkbox.
|
|
15272
|
-
/// @group checkbox
|
|
15273
|
-
$kendo-checkbox-indeterminate-image: escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='#{$kendo-checkbox-indeterminate-text}' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/></svg>") ) !default;
|
|
15274
|
-
|
|
15275
|
-
|
|
15276
|
-
// Checkbox label
|
|
15277
|
-
|
|
15278
|
-
/// The horizontal margin of the checkbox inside a label.
|
|
15279
|
-
/// @group checkbox
|
|
15280
|
-
$kendo-checkbox-label-margin-x: map-get( $spacing, 1 ) !default;
|
|
15281
|
-
|
|
15282
|
-
|
|
15283
|
-
// Checkbox list
|
|
15284
|
-
|
|
15285
|
-
/// The list margin checkbox.
|
|
15286
|
-
/// @group checkbox
|
|
15287
|
-
$kendo-checkbox-list-margin: 0px !default;
|
|
15288
|
-
/// The list padding checkbox.
|
|
15289
|
-
/// @group checkbox
|
|
15290
|
-
$kendo-checkbox-list-padding: 0px !default;
|
|
15291
|
-
/// The horizontal list item padding of checkbox.
|
|
15292
|
-
/// @group checkbox
|
|
15293
|
-
$kendo-checkbox-list-item-padding-x: 0px !default;
|
|
15294
|
-
/// The vertical list item padding of checkbox.
|
|
15295
|
-
/// @group checkbox
|
|
15296
|
-
$kendo-checkbox-list-item-padding-y: $kendo-list-item-padding-y-md !default;
|
|
15297
|
-
/// The horizontal margin of list item of checkbox.
|
|
15298
|
-
/// @group checkbox
|
|
15299
|
-
$kendo-checkbox-list-horizontal-item-margin-x: 32px !default;
|
|
15300
|
-
|
|
15301
|
-
|
|
15302
|
-
// Checkbox ripple
|
|
15303
|
-
|
|
15304
|
-
/// The ripple size of checkbox.
|
|
15305
|
-
/// @group checkbox
|
|
15306
|
-
$kendo-checkbox-ripple-size: (
|
|
15307
|
-
sm: (map-get( $kendo-checkbox-sizes, "sm" ) * 3),
|
|
15308
|
-
md: (map-get( $kendo-checkbox-sizes, "md" ) * 3),
|
|
15309
|
-
lg: (map-get( $kendo-checkbox-sizes, "lg" ) * 3)
|
|
15310
|
-
) !default;
|
|
15311
|
-
/// The ripple margin of checkbox.
|
|
15312
|
-
/// @group checkbox
|
|
15313
|
-
$kendo-checkbox-ripple-margin: (
|
|
15314
|
-
sm: calc(-1 * (#{map-get( $kendo-checkbox-sizes, "sm" )} + #{$kendo-checkbox-border-width})),
|
|
15315
|
-
md: calc(-1 * (#{map-get( $kendo-checkbox-sizes, "md" )} + #{$kendo-checkbox-border-width})),
|
|
15316
|
-
lg: calc(-1 * (#{map-get( $kendo-checkbox-sizes, "lg" )} + #{$kendo-checkbox-border-width}))
|
|
15317
|
-
) !default;
|
|
15318
|
-
/// The ripple opacity of checkbox.
|
|
15319
|
-
/// @group checkbox
|
|
15320
|
-
$kendo-checkbox-ripple-opacity: .3 !default;
|
|
15321
|
-
|
|
15322
|
-
// #endregion
|
|
15323
|
-
// #region @import "_layout.scss"; -> packages/bootstrap/scss/checkbox/_layout.scss
|
|
15324
|
-
// #region @import "~@progress/kendo-theme-default/scss/checkbox/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/checkbox/_layout.scss
|
|
15325
|
-
@include exports( "checkbox/layout" ) {
|
|
15326
|
-
|
|
15327
|
-
// Checkbox
|
|
15328
|
-
.k-checkbox {
|
|
15329
|
-
margin: 0;
|
|
15330
|
-
padding: 0;
|
|
15331
|
-
line-height: initial;
|
|
15332
|
-
border-width: $kendo-checkbox-border-width;
|
|
15333
|
-
border-style: solid;
|
|
15334
|
-
outline: 0;
|
|
15335
|
-
background-position: center;
|
|
15336
|
-
background-repeat: no-repeat;
|
|
15337
|
-
background-size: contain;
|
|
15338
|
-
display: inline-block;
|
|
15339
|
-
vertical-align: middle;
|
|
15340
|
-
position: relative;
|
|
15341
|
-
cursor: pointer;
|
|
15342
|
-
-webkit-appearance: none;
|
|
15343
|
-
}
|
|
15344
|
-
|
|
15345
|
-
@each $name, $size in $kendo-checkbox-sizes {
|
|
15346
|
-
// Checkbox sizes
|
|
15347
|
-
.k-checkbox-#{$name} {
|
|
15348
|
-
width: $size;
|
|
15349
|
-
height: $size;
|
|
15350
|
-
|
|
15351
|
-
+ .k-checkbox-label {
|
|
15352
|
-
|
|
15353
|
-
.k-ripple {
|
|
15354
|
-
top: ($size / 2);
|
|
15355
|
-
left: ($size / 2);
|
|
15356
|
-
width: ($size * 5 / 2);
|
|
15357
|
-
height: ($size * 5 / 2);
|
|
15358
|
-
}
|
|
15359
|
-
}
|
|
15360
|
-
}
|
|
15361
|
-
|
|
15362
|
-
|
|
15363
|
-
// Checkbox indicator
|
|
15364
|
-
.k-checkbox-#{$name}::before {
|
|
15365
|
-
@if $kendo-checkbox-icon-type == "glyph" {
|
|
15366
|
-
content: $kendo-checkbox-checked-glyph;
|
|
15367
|
-
width: ($size - map-get( $spacing, thin ));
|
|
15368
|
-
height: ($size - map-get( $spacing, thin ));
|
|
15369
|
-
font-size: ($size - map-get( $spacing, thin ));
|
|
15370
|
-
font-family: $kendo-checkbox-glyph-font-family;
|
|
15371
|
-
line-height: 1;
|
|
15372
|
-
transform: scale(0) translate(-50%, -50%);
|
|
15373
|
-
overflow: hidden;
|
|
15374
|
-
position: absolute;
|
|
15375
|
-
top: 50%;
|
|
15376
|
-
left: 50%;
|
|
15377
|
-
}
|
|
15378
|
-
|
|
15379
|
-
@if $kendo-checkbox-icon-type == "marker" {
|
|
15380
|
-
content: "";
|
|
15381
|
-
width: ($size - map-get( $spacing, 1 ));
|
|
15382
|
-
height: ($size - map-get( $spacing, 1 ));
|
|
15383
|
-
background-color: currentColor;
|
|
15384
|
-
transform: scale(0) translate(-50%, -50%);
|
|
15385
|
-
overflow: hidden;
|
|
15386
|
-
position: absolute;
|
|
15387
|
-
top: 50%;
|
|
15388
|
-
left: 50%;
|
|
15389
|
-
}
|
|
15390
|
-
}
|
|
15391
|
-
}
|
|
15392
|
-
|
|
15393
|
-
|
|
15394
|
-
// Checked state
|
|
15395
|
-
.k-checkbox:checked,
|
|
15396
|
-
.k-checkbox.k-checked {
|
|
15397
|
-
@if $kendo-checkbox-icon-type == "image" {
|
|
15398
|
-
background-image: $kendo-checkbox-checked-image;
|
|
15399
|
-
}
|
|
15400
|
-
|
|
15401
|
-
@if $kendo-checkbox-icon-type == "glyph" {
|
|
15402
|
-
&::before {
|
|
15403
|
-
transform: scale(1) translate(-50%, -50%);
|
|
15404
|
-
}
|
|
15405
|
-
}
|
|
15406
|
-
|
|
15407
|
-
@if $kendo-checkbox-icon-type == "marker" {
|
|
15408
|
-
&::before {
|
|
15409
|
-
transform: scale(1) translate(-50%, -50%);
|
|
15410
|
-
}
|
|
15411
|
-
}
|
|
15412
|
-
}
|
|
15611
|
+
);
|
|
15413
15612
|
|
|
15414
|
-
|
|
15415
|
-
|
|
15416
|
-
.k-checkbox.k-indeterminate {
|
|
15417
|
-
@if $kendo-checkbox-icon-type == "image" {
|
|
15418
|
-
background-image: $kendo-checkbox-indeterminate-image;
|
|
15613
|
+
.k-callout {
|
|
15614
|
+
color: $tooltip-success-bg;
|
|
15419
15615
|
}
|
|
15616
|
+
}
|
|
15617
|
+
.k-tooltip-warning {
|
|
15618
|
+
@include fill(
|
|
15619
|
+
$tooltip-warning-text,
|
|
15620
|
+
$tooltip-warning-bg,
|
|
15621
|
+
$tooltip-warning-border
|
|
15622
|
+
);
|
|
15420
15623
|
|
|
15421
|
-
|
|
15422
|
-
|
|
15423
|
-
content: $kendo-checkbox-indeterminate-glyph;
|
|
15424
|
-
transform: scale(1) translate(-50%, -50%);
|
|
15425
|
-
}
|
|
15624
|
+
.k-callout {
|
|
15625
|
+
color: $tooltip-warning-bg;
|
|
15426
15626
|
}
|
|
15627
|
+
}
|
|
15628
|
+
.k-tooltip-error {
|
|
15629
|
+
@include fill(
|
|
15630
|
+
$tooltip-error-text,
|
|
15631
|
+
$tooltip-error-bg,
|
|
15632
|
+
$tooltip-error-border
|
|
15633
|
+
);
|
|
15427
15634
|
|
|
15428
|
-
|
|
15429
|
-
|
|
15430
|
-
width: $kendo-checkbox-maker-indeterminate-width;
|
|
15431
|
-
height: $kendo-checkbox-marker-indeterminate-height;
|
|
15432
|
-
transform: scale(1) translate(-50%, -50%);
|
|
15433
|
-
}
|
|
15635
|
+
.k-callout {
|
|
15636
|
+
color: $tooltip-error-bg;
|
|
15434
15637
|
}
|
|
15435
15638
|
}
|
|
15639
|
+
}
|
|
15436
15640
|
|
|
15641
|
+
// #endregion
|
|
15437
15642
|
|
|
15438
|
-
|
|
15439
|
-
.k-checkbox:disabled,
|
|
15440
|
-
.k-checkbox.k-disabled,
|
|
15441
|
-
.k-checkbox:disabled + .k-checkbox-label,
|
|
15442
|
-
.k-checkbox.k-disabled + .k-checkbox-label {
|
|
15443
|
-
@include disabled( $disabled-styling );
|
|
15444
|
-
}
|
|
15643
|
+
// #endregion
|
|
15445
15644
|
|
|
15446
|
-
|
|
15447
|
-
|
|
15448
|
-
|
|
15449
|
-
|
|
15450
|
-
line-height: $kendo-checkbox-line-height;
|
|
15451
|
-
display: inline-flex;
|
|
15452
|
-
align-items: flex-start;
|
|
15453
|
-
vertical-align: middle;
|
|
15454
|
-
position: relative;
|
|
15455
|
-
cursor: pointer;
|
|
15645
|
+
// #endregion
|
|
15646
|
+
// #region @import "../icons/_index.scss"; -> packages/bootstrap/scss/icons/_index.scss
|
|
15647
|
+
// File already imported_once. Skipping output.
|
|
15648
|
+
// #endregion
|
|
15456
15649
|
|
|
15457
|
-
.k-label {
|
|
15458
|
-
cursor: pointer;
|
|
15459
|
-
}
|
|
15460
15650
|
|
|
15461
|
-
|
|
15462
|
-
|
|
15463
|
-
bottom: auto;
|
|
15464
|
-
transform: translate(-50%, -50%);
|
|
15465
|
-
border-radius: 50%;
|
|
15651
|
+
// Component
|
|
15652
|
+
// #region @import "_variables.scss"; -> packages/bootstrap/scss/validator/_variables.scss
|
|
15466
15653
|
|
|
15467
|
-
|
|
15468
|
-
|
|
15469
|
-
|
|
15654
|
+
// #endregion
|
|
15655
|
+
// #region @import "_layout.scss"; -> packages/bootstrap/scss/validator/_layout.scss
|
|
15656
|
+
// #region @import "~@progress/kendo-theme-default/scss/validator/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/validator/_layout.scss
|
|
15657
|
+
@include exports("validator/layout") {
|
|
15470
15658
|
|
|
15471
|
-
|
|
15472
|
-
|
|
15473
|
-
|
|
15474
|
-
|
|
15475
|
-
|
|
15476
|
-
|
|
15477
|
-
|
|
15478
|
-
|
|
15479
|
-
|
|
15480
|
-
|
|
15481
|
-
display: inline;
|
|
15482
|
-
}
|
|
15483
|
-
.k-checkbox + .k-checkbox-label,
|
|
15484
|
-
.k-checkbox-label + .k-checkbox {
|
|
15485
|
-
margin-left: $kendo-checkbox-label-margin-x;
|
|
15486
|
-
}
|
|
15487
|
-
.k-checkbox-label > .k-checkbox {
|
|
15488
|
-
margin-right: $kendo-checkbox-label-margin-x;
|
|
15489
|
-
flex-shrink: 0;
|
|
15490
|
-
}
|
|
15491
|
-
kendo-label.k-checkbox-label > .k-checkbox:last-child {
|
|
15492
|
-
margin-right: 0;
|
|
15493
|
-
}
|
|
15494
|
-
kendo-label.k-checkbox-label > .k-label:first-child {
|
|
15495
|
-
margin-right: $kendo-checkbox-label-margin-x;
|
|
15659
|
+
.k-validator-tooltip {
|
|
15660
|
+
margin-top: calc( #{$tooltip-callout-size} + #{$tooltip-border-width} );
|
|
15661
|
+
width: auto;
|
|
15662
|
+
white-space: normal;
|
|
15663
|
+
display: flex;
|
|
15664
|
+
align-items: center;
|
|
15665
|
+
// NOTE: This works around popup / tooltip stackin issue
|
|
15666
|
+
z-index: 9999;
|
|
15667
|
+
|
|
15668
|
+
// .k-callout-n { inset-inline-start: 16px; }
|
|
15496
15669
|
}
|
|
15497
|
-
|
|
15498
|
-
|
|
15670
|
+
.k-grid .k-validator-tooltip {
|
|
15671
|
+
max-width: 300px;
|
|
15499
15672
|
}
|
|
15500
15673
|
|
|
15674
|
+
}
|
|
15501
15675
|
|
|
15502
|
-
|
|
15503
|
-
.k-checkbox-label:empty {
|
|
15504
|
-
display: none;
|
|
15505
|
-
}
|
|
15506
|
-
|
|
15676
|
+
// #endregion
|
|
15507
15677
|
|
|
15508
|
-
|
|
15509
|
-
|
|
15510
|
-
|
|
15511
|
-
|
|
15678
|
+
// #endregion
|
|
15679
|
+
// #region @import "_theme.scss"; -> packages/bootstrap/scss/validator/_theme.scss
|
|
15680
|
+
// #region @import "~@progress/kendo-theme-default/scss/validator/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/validator/_theme.scss
|
|
15681
|
+
@include exports( "validator/theme" ) {}
|
|
15512
15682
|
|
|
15683
|
+
// #endregion
|
|
15513
15684
|
|
|
15514
|
-
|
|
15515
|
-
.k-checkbox-list {
|
|
15516
|
-
margin: $kendo-checkbox-list-margin;
|
|
15517
|
-
padding: $kendo-checkbox-list-padding;
|
|
15518
|
-
list-style: none;
|
|
15685
|
+
// #endregion
|
|
15519
15686
|
|
|
15520
|
-
|
|
15521
|
-
|
|
15522
|
-
|
|
15523
|
-
|
|
15687
|
+
// #endregion
|
|
15688
|
+
// #region @import "floating-label/_index.scss"; -> packages/bootstrap/scss/floating-label/_index.scss
|
|
15689
|
+
// File already imported_once. Skipping output.
|
|
15690
|
+
// #endregion
|
|
15524
15691
|
|
|
15525
|
-
.k-list-horizontal {
|
|
15526
|
-
.k-checkbox-item {
|
|
15527
|
-
display: inline-block;
|
|
15528
|
-
margin: 0 $kendo-checkbox-list-horizontal-item-margin-x 0 0;
|
|
15529
15692
|
|
|
15530
|
-
|
|
15531
|
-
|
|
15532
|
-
|
|
15533
|
-
|
|
15534
|
-
|
|
15693
|
+
// Native forms
|
|
15694
|
+
// #region @import "button/_index.scss"; -> packages/bootstrap/scss/button/_index.scss
|
|
15695
|
+
// File already imported_once. Skipping output.
|
|
15696
|
+
// #endregion
|
|
15697
|
+
// #region @import "input/_index.scss"; -> packages/bootstrap/scss/input/_index.scss
|
|
15698
|
+
// File already imported_once. Skipping output.
|
|
15699
|
+
// #endregion
|
|
15700
|
+
// #region @import "textbox/_index.scss"; -> packages/bootstrap/scss/textbox/_index.scss
|
|
15701
|
+
// #region @import "../core/_index.scss"; -> packages/bootstrap/scss/core/_index.scss
|
|
15702
|
+
// File already imported_once. Skipping output.
|
|
15703
|
+
// #endregion
|
|
15535
15704
|
|
|
15536
15705
|
|
|
15537
|
-
|
|
15538
|
-
|
|
15539
|
-
|
|
15540
|
-
|
|
15541
|
-
|
|
15542
|
-
|
|
15543
|
-
|
|
15544
|
-
|
|
15545
|
-
|
|
15546
|
-
|
|
15547
|
-
}
|
|
15548
|
-
kendo-label.k-checkbox-label > .k-checkbox:last-child {
|
|
15549
|
-
margin-left: 0;
|
|
15550
|
-
}
|
|
15551
|
-
kendo-label.k-checkbox-label > .k-label:first-child {
|
|
15552
|
-
margin-right: 0;
|
|
15553
|
-
margin-left: $kendo-checkbox-label-margin-x;
|
|
15554
|
-
}
|
|
15706
|
+
// Dependencies
|
|
15707
|
+
// #region @import "../common/_index.scss"; -> packages/bootstrap/scss/common/_index.scss
|
|
15708
|
+
// File already imported_once. Skipping output.
|
|
15709
|
+
// #endregion
|
|
15710
|
+
// #region @import "../input/_index.scss"; -> packages/bootstrap/scss/input/_index.scss
|
|
15711
|
+
// File already imported_once. Skipping output.
|
|
15712
|
+
// #endregion
|
|
15713
|
+
// #region @import "../floating-label/_index.scss"; -> packages/bootstrap/scss/floating-label/_index.scss
|
|
15714
|
+
// File already imported_once. Skipping output.
|
|
15715
|
+
// #endregion
|
|
15555
15716
|
|
|
15556
|
-
.k-list-horizontal {
|
|
15557
|
-
.k-checkbox-item {
|
|
15558
|
-
margin-right: 0;
|
|
15559
|
-
margin-left: $kendo-checkbox-list-horizontal-item-margin-x;
|
|
15560
15717
|
|
|
15561
|
-
|
|
15562
|
-
|
|
15563
|
-
|
|
15564
|
-
}
|
|
15565
|
-
}
|
|
15566
|
-
}
|
|
15718
|
+
// Component
|
|
15719
|
+
// #region @import "_variables.scss"; -> packages/bootstrap/scss/textbox/_variables.scss
|
|
15720
|
+
// Textbox
|
|
15567
15721
|
|
|
15568
|
-
|
|
15569
|
-
|
|
15570
|
-
|
|
15571
|
-
|
|
15572
|
-
display: block;
|
|
15573
|
-
position: absolute;
|
|
15574
|
-
left: 0;
|
|
15575
|
-
top: 0;
|
|
15576
|
-
width: map-get( $kendo-checkbox-ripple-size, $name );
|
|
15577
|
-
height: map-get( $kendo-checkbox-ripple-size, $name );
|
|
15578
|
-
margin-left: map-get( $kendo-checkbox-ripple-margin, $name );
|
|
15579
|
-
margin-top: map-get( $kendo-checkbox-ripple-margin, $name );
|
|
15580
|
-
border-radius: 100%;
|
|
15581
|
-
z-index: 1;
|
|
15582
|
-
transform: scale(0);
|
|
15583
|
-
}
|
|
15722
|
+
// #endregion
|
|
15723
|
+
// #region @import "_layout.scss"; -> packages/bootstrap/scss/textbox/_layout.scss
|
|
15724
|
+
// #region @import "~@progress/kendo-theme-default/scss/textbox/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/textbox/_layout.scss
|
|
15725
|
+
@include exports( "textbox/layout" ) {
|
|
15584
15726
|
|
|
15585
|
-
|
|
15586
|
-
|
|
15587
|
-
display: none;
|
|
15588
|
-
}
|
|
15589
|
-
}
|
|
15590
|
-
}
|
|
15727
|
+
// Textbox
|
|
15728
|
+
.k-textbox {}
|
|
15591
15729
|
|
|
15592
15730
|
}
|
|
15593
15731
|
|
|
15594
15732
|
// #endregion
|
|
15595
15733
|
|
|
15596
15734
|
// #endregion
|
|
15597
|
-
// #region @import "_theme.scss"; -> packages/bootstrap/scss/
|
|
15598
|
-
// #region @import "~@progress/kendo-theme-default/scss/
|
|
15599
|
-
@include exports("
|
|
15600
|
-
|
|
15601
|
-
// Checkbox
|
|
15602
|
-
.k-checkbox {
|
|
15603
|
-
@include fill(
|
|
15604
|
-
$kendo-checkbox-text,
|
|
15605
|
-
$kendo-checkbox-bg,
|
|
15606
|
-
$kendo-checkbox-border
|
|
15607
|
-
);
|
|
15608
|
-
}
|
|
15735
|
+
// #region @import "_theme.scss"; -> packages/bootstrap/scss/textbox/_theme.scss
|
|
15736
|
+
// #region @import "~@progress/kendo-theme-default/scss/textbox/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/textbox/_theme.scss
|
|
15737
|
+
@include exports("textbox/theme") {
|
|
15609
15738
|
|
|
15739
|
+
// Textbox
|
|
15740
|
+
.k-textbox {}
|
|
15741
|
+
}
|
|
15610
15742
|
|
|
15611
|
-
|
|
15612
|
-
.k-checkbox:hover,
|
|
15613
|
-
.k-checkbox.k-hover {
|
|
15614
|
-
@include fill(
|
|
15615
|
-
$kendo-checkbox-hover-text,
|
|
15616
|
-
$kendo-checkbox-hover-bg,
|
|
15617
|
-
$kendo-checkbox-hover-border
|
|
15618
|
-
);
|
|
15619
|
-
}
|
|
15743
|
+
// #endregion
|
|
15620
15744
|
|
|
15745
|
+
// #endregion
|
|
15621
15746
|
|
|
15622
|
-
|
|
15623
|
-
|
|
15624
|
-
|
|
15625
|
-
|
|
15626
|
-
|
|
15627
|
-
}
|
|
15747
|
+
// #endregion
|
|
15748
|
+
// #region @import "textarea/_index.scss"; -> packages/bootstrap/scss/textarea/_index.scss
|
|
15749
|
+
// #region @import "../core/_index.scss"; -> packages/bootstrap/scss/core/_index.scss
|
|
15750
|
+
// File already imported_once. Skipping output.
|
|
15751
|
+
// #endregion
|
|
15628
15752
|
|
|
15629
15753
|
|
|
15630
|
-
|
|
15631
|
-
|
|
15632
|
-
|
|
15633
|
-
|
|
15634
|
-
|
|
15635
|
-
|
|
15636
|
-
|
|
15637
|
-
|
|
15638
|
-
|
|
15754
|
+
// Dependencies
|
|
15755
|
+
// #region @import "../common/_index.scss"; -> packages/bootstrap/scss/common/_index.scss
|
|
15756
|
+
// File already imported_once. Skipping output.
|
|
15757
|
+
// #endregion
|
|
15758
|
+
// #region @import "../input/_index.scss"; -> packages/bootstrap/scss/input/_index.scss
|
|
15759
|
+
// File already imported_once. Skipping output.
|
|
15760
|
+
// #endregion
|
|
15761
|
+
// #region @import "../floating-label/_index.scss"; -> packages/bootstrap/scss/floating-label/_index.scss
|
|
15762
|
+
// File already imported_once. Skipping output.
|
|
15763
|
+
// #endregion
|
|
15639
15764
|
|
|
15640
15765
|
|
|
15641
|
-
|
|
15642
|
-
|
|
15643
|
-
|
|
15644
|
-
@include fill(
|
|
15645
|
-
$kendo-checkbox-checked-text,
|
|
15646
|
-
$kendo-checkbox-checked-bg,
|
|
15647
|
-
$kendo-checkbox-checked-border
|
|
15648
|
-
);
|
|
15649
|
-
}
|
|
15650
|
-
.k-checkbox:checked:focus,
|
|
15651
|
-
.k-checkbox.k-checked.k-focus {
|
|
15652
|
-
@include fill( $border: $kendo-checkbox-focus-checked-border );
|
|
15653
|
-
@include box-shadow( $kendo-checkbox-focus-checked-shadow );
|
|
15654
|
-
}
|
|
15766
|
+
// Component
|
|
15767
|
+
// #region @import "_variables.scss"; -> packages/bootstrap/scss/textarea/_variables.scss
|
|
15768
|
+
// Textarea
|
|
15655
15769
|
|
|
15770
|
+
// #endregion
|
|
15771
|
+
// #region @import "_layout.scss"; -> packages/bootstrap/scss/textarea/_layout.scss
|
|
15772
|
+
// #region @import "~@progress/kendo-theme-default/scss/textarea/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/textarea/_layout.scss
|
|
15773
|
+
@include exports( "textarea/layout" ) {
|
|
15656
15774
|
|
|
15657
|
-
//
|
|
15658
|
-
.k-
|
|
15659
|
-
.k-checkbox.k-disabled {
|
|
15660
|
-
@include fill(
|
|
15661
|
-
$kendo-checkbox-disabled-text,
|
|
15662
|
-
$kendo-checkbox-disabled-bg,
|
|
15663
|
-
$kendo-checkbox-disabled-border
|
|
15664
|
-
);
|
|
15665
|
-
}
|
|
15666
|
-
.k-checkbox:checked:disabled,
|
|
15667
|
-
.k-checkbox:indeterminate:disabled,
|
|
15668
|
-
.k-checkbox.k-checked.k-disabled,
|
|
15669
|
-
.k-checkbox.k-indeterminate.k-disabled {
|
|
15670
|
-
@include fill(
|
|
15671
|
-
$kendo-checkbox-disabled-checked-text,
|
|
15672
|
-
$kendo-checkbox-disabled-checked-bg,
|
|
15673
|
-
$kendo-checkbox-disabled-checked-border
|
|
15674
|
-
);
|
|
15675
|
-
}
|
|
15775
|
+
// Textarea
|
|
15776
|
+
.k-textarea {}
|
|
15676
15777
|
|
|
15778
|
+
}
|
|
15677
15779
|
|
|
15678
|
-
|
|
15679
|
-
.k-checkbox:invalid,
|
|
15680
|
-
.k-checkbox.k-invalid {
|
|
15681
|
-
@include fill( $border: $kendo-checkbox-invalid-border );
|
|
15682
|
-
}
|
|
15683
|
-
.k-checkbox:invalid + .k-checkbox-label,
|
|
15684
|
-
.k-checkbox.k-invalid + .k-checkbox-label {
|
|
15685
|
-
@include fill( $color: $kendo-checkbox-invalid-text );
|
|
15686
|
-
}
|
|
15780
|
+
// #endregion
|
|
15687
15781
|
|
|
15782
|
+
// #endregion
|
|
15783
|
+
// #region @import "_theme.scss"; -> packages/bootstrap/scss/textarea/_theme.scss
|
|
15784
|
+
// #region @import "~@progress/kendo-theme-default/scss/textarea/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/textarea/_theme.scss
|
|
15785
|
+
@include exports("textarea/theme") {
|
|
15688
15786
|
|
|
15689
|
-
//
|
|
15690
|
-
.k-
|
|
15691
|
-
.k-checkbox::after {
|
|
15692
|
-
background: $kendo-checkbox-checked-bg;
|
|
15693
|
-
opacity: $kendo-checkbox-ripple-opacity;
|
|
15694
|
-
}
|
|
15695
|
-
}
|
|
15787
|
+
// Textarea
|
|
15788
|
+
.k-textarea {}
|
|
15696
15789
|
|
|
15697
15790
|
}
|
|
15698
15791
|
|
|
@@ -15700,6 +15793,9 @@ $kendo-checkbox-ripple-opacity: .3 !default;
|
|
|
15700
15793
|
|
|
15701
15794
|
// #endregion
|
|
15702
15795
|
|
|
15796
|
+
// #endregion
|
|
15797
|
+
// #region @import "checkbox/_index.scss"; -> packages/bootstrap/scss/checkbox/_index.scss
|
|
15798
|
+
// File already imported_once. Skipping output.
|
|
15703
15799
|
// #endregion
|
|
15704
15800
|
// #region @import "listbox/_index.scss"; -> packages/bootstrap/scss/listbox/_index.scss
|
|
15705
15801
|
// #region @import "../core/_index.scss"; -> packages/bootstrap/scss/core/_index.scss
|
|
@@ -15733,7 +15829,7 @@ $kendo-checkbox-ripple-opacity: .3 !default;
|
|
|
15733
15829
|
// Listbox
|
|
15734
15830
|
$listbox-margin: 5px !default;
|
|
15735
15831
|
$listbox-button-margin: $padding-x !default;
|
|
15736
|
-
$listbox-width:
|
|
15832
|
+
$listbox-width: 10em !default;
|
|
15737
15833
|
$listbox-default-height: 200px !default;
|
|
15738
15834
|
|
|
15739
15835
|
$listbox-border-width: 1px !default;
|
|
@@ -16238,7 +16334,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
16238
16334
|
|
|
16239
16335
|
|
|
16240
16336
|
// Dependencies
|
|
16241
|
-
// #region @import "../
|
|
16337
|
+
// #region @import "../typography/_variables.scss"; -> packages/bootstrap/scss/typography/_variables.scss
|
|
16242
16338
|
// File already imported_once. Skipping output.
|
|
16243
16339
|
// #endregion
|
|
16244
16340
|
// #region @import "../list/_variables.scss"; -> packages/bootstrap/scss/list/_variables.scss
|
|
@@ -16385,21 +16481,15 @@ $kendo-radio-label-margin-x: map-get( $spacing, 1 ) !default;
|
|
|
16385
16481
|
|
|
16386
16482
|
// Radio list
|
|
16387
16483
|
|
|
16388
|
-
/// The list margin of radio button.
|
|
16389
|
-
/// @group radio
|
|
16390
|
-
$kendo-radio-list-margin: 0px !default;
|
|
16391
|
-
/// The list padding of radio button.
|
|
16484
|
+
/// The horizontal list item margin of radio button.
|
|
16392
16485
|
/// @group radio
|
|
16393
|
-
$kendo-radio-list-
|
|
16486
|
+
$kendo-radio-list-spacing: map-get( $spacing, 4 ) !default;
|
|
16394
16487
|
/// The horizontal list item padding of radio button.
|
|
16395
16488
|
/// @group radio
|
|
16396
16489
|
$kendo-radio-list-item-padding-x: 0px !default;
|
|
16397
16490
|
/// The vertical list item padding of radio button.
|
|
16398
16491
|
/// @group radio
|
|
16399
16492
|
$kendo-radio-list-item-padding-y: $kendo-list-item-padding-y-md !default;
|
|
16400
|
-
/// The horizontal list item margin of radio button.
|
|
16401
|
-
/// @group radio
|
|
16402
|
-
$kendo-radio-list-horizontal-item-margin-x: 32px !default;
|
|
16403
16493
|
|
|
16404
16494
|
|
|
16405
16495
|
// Radio ripple
|
|
@@ -16441,6 +16531,7 @@ $kendo-radio-ripple-opacity: .3 !default;
|
|
|
16441
16531
|
background-repeat: no-repeat;
|
|
16442
16532
|
background-size: contain;
|
|
16443
16533
|
display: inline-block;
|
|
16534
|
+
flex: none;
|
|
16444
16535
|
vertical-align: middle;
|
|
16445
16536
|
position: relative;
|
|
16446
16537
|
cursor: pointer;
|
|
@@ -16524,6 +16615,25 @@ $kendo-radio-ripple-opacity: .3 !default;
|
|
|
16524
16615
|
@include disabled( $disabled-styling );
|
|
16525
16616
|
}
|
|
16526
16617
|
|
|
16618
|
+
|
|
16619
|
+
// Radio wrap
|
|
16620
|
+
.k-radio-wrap {
|
|
16621
|
+
flex: none;
|
|
16622
|
+
display: inline-flex;
|
|
16623
|
+
flex-flow: row nowrap;
|
|
16624
|
+
gap: 0;
|
|
16625
|
+
align-items: center;
|
|
16626
|
+
|
|
16627
|
+
&::before {
|
|
16628
|
+
content: "\200b";
|
|
16629
|
+
width: 0px;
|
|
16630
|
+
overflow: hidden;
|
|
16631
|
+
flex: none;
|
|
16632
|
+
display: inline-block;
|
|
16633
|
+
vertical-align: top;
|
|
16634
|
+
}
|
|
16635
|
+
}
|
|
16636
|
+
|
|
16527
16637
|
.k-radio + .k-radio-label {
|
|
16528
16638
|
display: inline;
|
|
16529
16639
|
}
|
|
@@ -16545,7 +16655,7 @@ $kendo-radio-ripple-opacity: .3 !default;
|
|
|
16545
16655
|
|
|
16546
16656
|
// Hide empty label
|
|
16547
16657
|
&:empty {
|
|
16548
|
-
display: none;
|
|
16658
|
+
display: none !important; // sass-lint:disable-line no-important
|
|
16549
16659
|
}
|
|
16550
16660
|
|
|
16551
16661
|
.k-ripple {
|
|
@@ -16583,25 +16693,32 @@ $kendo-radio-ripple-opacity: .3 !default;
|
|
|
16583
16693
|
|
|
16584
16694
|
// Radio list
|
|
16585
16695
|
.k-radio-list {
|
|
16586
|
-
margin:
|
|
16587
|
-
padding:
|
|
16696
|
+
margin: 0;
|
|
16697
|
+
padding: 0;
|
|
16698
|
+
display: flex;
|
|
16699
|
+
flex-flow: column nowrap;
|
|
16700
|
+
gap: 0;
|
|
16588
16701
|
list-style: none;
|
|
16589
|
-
|
|
16590
|
-
.k-radio-item {
|
|
16591
|
-
padding: $kendo-radio-list-item-padding-y $kendo-radio-list-item-padding-x;
|
|
16592
|
-
}
|
|
16593
16702
|
}
|
|
16703
|
+
.k-radio-item,
|
|
16704
|
+
.k-radio-list-item {
|
|
16705
|
+
padding: $kendo-radio-list-item-padding-y $kendo-radio-list-item-padding-x;
|
|
16706
|
+
display: flex;
|
|
16707
|
+
flex-flow: row nowrap;
|
|
16708
|
+
align-items: center;
|
|
16709
|
+
align-content: center;
|
|
16710
|
+
gap: map-get( $spacing, 1 );
|
|
16594
16711
|
|
|
16595
|
-
|
|
16596
|
-
|
|
16597
|
-
display: inline-block;
|
|
16598
|
-
margin: 0 $kendo-radio-list-horizontal-item-margin-x 0 0;
|
|
16599
|
-
|
|
16600
|
-
&:last-child {
|
|
16601
|
-
margin-right: 0;
|
|
16602
|
-
}
|
|
16712
|
+
.k-radio-label {
|
|
16713
|
+
line-height: inherit;
|
|
16603
16714
|
}
|
|
16604
16715
|
}
|
|
16716
|
+
.k-radio-list-horizontal,
|
|
16717
|
+
.k-radio-list.k-list-horizontal {
|
|
16718
|
+
display: flex;
|
|
16719
|
+
flex-flow: row wrap;
|
|
16720
|
+
gap: $kendo-radio-list-spacing;
|
|
16721
|
+
}
|
|
16605
16722
|
|
|
16606
16723
|
// RTL
|
|
16607
16724
|
.k-rtl,
|
|
@@ -16623,17 +16740,6 @@ $kendo-radio-ripple-opacity: .3 !default;
|
|
|
16623
16740
|
margin-right: 0;
|
|
16624
16741
|
margin-left: $kendo-radio-label-margin-x;
|
|
16625
16742
|
}
|
|
16626
|
-
|
|
16627
|
-
.k-list-horizontal {
|
|
16628
|
-
.k-radio-item {
|
|
16629
|
-
margin-right: 0;
|
|
16630
|
-
margin-left: $kendo-radio-list-horizontal-item-margin-x;
|
|
16631
|
-
|
|
16632
|
-
&:last-child {
|
|
16633
|
-
margin-left: 0;
|
|
16634
|
-
}
|
|
16635
|
-
}
|
|
16636
|
-
}
|
|
16637
16743
|
}
|
|
16638
16744
|
|
|
16639
16745
|
.k-ripple-container {
|
|
@@ -19059,10 +19165,20 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
19059
19165
|
// #endregion
|
|
19060
19166
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/numerictextbox/_layout.scss
|
|
19061
19167
|
// #region @import "~@progress/kendo-theme-default/scss/numerictextbox/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/numerictextbox/_layout.scss
|
|
19062
|
-
@include exports("numerictextbox/layout") {
|
|
19168
|
+
@include exports( "numerictextbox/layout" ) {
|
|
19063
19169
|
|
|
19064
19170
|
// Numeric textbox
|
|
19065
|
-
.k-
|
|
19171
|
+
.k-numeric-textbox {
|
|
19172
|
+
|
|
19173
|
+
.k-input-inner {
|
|
19174
|
+
text-overflow: clip;
|
|
19175
|
+
}
|
|
19176
|
+
|
|
19177
|
+
}
|
|
19178
|
+
|
|
19179
|
+
|
|
19180
|
+
// Alias
|
|
19181
|
+
.k-numerictextbox { @extend .k-numeric-textbox; }
|
|
19066
19182
|
|
|
19067
19183
|
}
|
|
19068
19184
|
|
|
@@ -19074,7 +19190,7 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
19074
19190
|
@include exports( "numerictextbox/theme" ) {
|
|
19075
19191
|
|
|
19076
19192
|
// Numeric textbox
|
|
19077
|
-
.k-
|
|
19193
|
+
.k-numeric-textbox {}
|
|
19078
19194
|
|
|
19079
19195
|
}
|
|
19080
19196
|
|
|
@@ -19475,9 +19591,9 @@ $coloreditor-header-padding-y: $coloreditor-spacer !default;
|
|
|
19475
19591
|
$coloreditor-header-padding-x: $coloreditor-header-padding-y !default;
|
|
19476
19592
|
$coloreditor-header-actions-gap: ( $coloreditor-spacer / 2 ) !default;
|
|
19477
19593
|
|
|
19478
|
-
$coloreditor-preview-gap:
|
|
19479
|
-
$coloreditor-color-preview-width:
|
|
19480
|
-
$coloreditor-color-preview-height:
|
|
19594
|
+
$coloreditor-preview-gap: map-get( $spacing, 1 ) !default;
|
|
19595
|
+
$coloreditor-color-preview-width: 32px !default;
|
|
19596
|
+
$coloreditor-color-preview-height: 12px !default;
|
|
19481
19597
|
|
|
19482
19598
|
$coloreditor-views-padding-y: $coloreditor-spacer !default;
|
|
19483
19599
|
$coloreditor-views-padding-x: $coloreditor-views-padding-y !default;
|
|
@@ -19515,8 +19631,12 @@ $coloreditor-views-gap: $coloreditor-spacer !default;
|
|
|
19515
19631
|
}
|
|
19516
19632
|
|
|
19517
19633
|
.k-coloreditor-preview {
|
|
19518
|
-
|
|
19634
|
+
display: flex;
|
|
19635
|
+
flex-flow: column nowrap;
|
|
19636
|
+
align-items: stretch;
|
|
19637
|
+
justify-content: center;
|
|
19519
19638
|
gap: $coloreditor-preview-gap;
|
|
19639
|
+
position: relative;
|
|
19520
19640
|
z-index: 1;
|
|
19521
19641
|
}
|
|
19522
19642
|
.k-coloreditor-preview .k-color-preview {
|
|
@@ -19833,8 +19953,45 @@ $datetime-width: calc( #{$calendar-cell-size * 8} + #{$infinite-calendar-view-pa
|
|
|
19833
19953
|
// #region @import "~@progress/kendo-theme-default/scss/datetimepicker/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/datetimepicker/_layout.scss
|
|
19834
19954
|
@include exports( "datetimepicker/layout" ) {
|
|
19835
19955
|
|
|
19836
|
-
// Datetime
|
|
19837
|
-
.k-
|
|
19956
|
+
// Datetime selector
|
|
19957
|
+
.k-datetime-selector {
|
|
19958
|
+
display: flex;
|
|
19959
|
+
transition: transform .2s;
|
|
19960
|
+
}
|
|
19961
|
+
|
|
19962
|
+
// Wrap
|
|
19963
|
+
.k-datetime-wrap {
|
|
19964
|
+
width: $datetime-width;
|
|
19965
|
+
overflow: hidden;
|
|
19966
|
+
}
|
|
19967
|
+
|
|
19968
|
+
// Inner wrap
|
|
19969
|
+
.k-datetime-calendar-wrap,
|
|
19970
|
+
.k-datetime-time-wrap {
|
|
19971
|
+
text-align: center;
|
|
19972
|
+
flex: 0 0 $datetime-width;
|
|
19973
|
+
}
|
|
19974
|
+
|
|
19975
|
+
// Tabs
|
|
19976
|
+
.k-date-tab .k-datetime-selector {
|
|
19977
|
+
transform: translateX(0);
|
|
19978
|
+
}
|
|
19979
|
+
.k-time-tab .k-datetime-selector {
|
|
19980
|
+
transform: translateX(-100%);
|
|
19981
|
+
}
|
|
19982
|
+
|
|
19983
|
+
}
|
|
19984
|
+
|
|
19985
|
+
@include exports( "datetimepicker/layout/rtl" ) {
|
|
19986
|
+
|
|
19987
|
+
.k-datetimepicker {
|
|
19988
|
+
&[dir="rtl"],
|
|
19989
|
+
.k-rtl & {
|
|
19990
|
+
.k-time-tab .k-datetime-selector {
|
|
19991
|
+
transform: translateX(100%);
|
|
19992
|
+
}
|
|
19993
|
+
}
|
|
19994
|
+
}
|
|
19838
19995
|
|
|
19839
19996
|
}
|
|
19840
19997
|
|
|
@@ -19886,7 +20043,22 @@ $datetime-width: calc( #{$calendar-cell-size * 8} + #{$infinite-calendar-view-pa
|
|
|
19886
20043
|
// #endregion
|
|
19887
20044
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/daterangepicker/_layout.scss
|
|
19888
20045
|
// #region @import "~@progress/kendo-theme-default/scss/daterangepicker/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/daterangepicker/_layout.scss
|
|
19889
|
-
@include exports("daterangepicker/layout") {
|
|
20046
|
+
@include exports( "daterangepicker/layout" ) {
|
|
20047
|
+
|
|
20048
|
+
// Daterange picker
|
|
20049
|
+
.k-daterange-picker {
|
|
20050
|
+
width: $kendo-input-default-width;
|
|
20051
|
+
display: flex;
|
|
20052
|
+
flex-flow: row nowrap;
|
|
20053
|
+
align-items: flex-start;
|
|
20054
|
+
gap: map-get( $spacing, 2 );
|
|
20055
|
+
}
|
|
20056
|
+
|
|
20057
|
+
|
|
20058
|
+
// Alias
|
|
20059
|
+
.k-daterangepicker {
|
|
20060
|
+
@extend .k-daterange-picker;
|
|
20061
|
+
}
|
|
19890
20062
|
|
|
19891
20063
|
}
|
|
19892
20064
|
|
|
@@ -20400,7 +20572,10 @@ $dropdownlist-focused-shadow: $kendo-button-focus-shadow !default;
|
|
|
20400
20572
|
// #endregion
|
|
20401
20573
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/multiselect/_layout.scss
|
|
20402
20574
|
// #region @import "~@progress/kendo-theme-default/scss/multiselect/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/multiselect/_layout.scss
|
|
20403
|
-
@include exports("multiselect/layout") {
|
|
20575
|
+
@include exports( "multiselect/layout" ) {
|
|
20576
|
+
|
|
20577
|
+
// Multiselect
|
|
20578
|
+
.k-multiselect {}
|
|
20404
20579
|
|
|
20405
20580
|
}
|
|
20406
20581
|
|
|
@@ -20409,7 +20584,10 @@ $dropdownlist-focused-shadow: $kendo-button-focus-shadow !default;
|
|
|
20409
20584
|
// #endregion
|
|
20410
20585
|
// #region @import "_theme.scss"; -> packages/bootstrap/scss/multiselect/_theme.scss
|
|
20411
20586
|
// #region @import "~@progress/kendo-theme-default/scss/multiselect/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/multiselect/_theme.scss
|
|
20412
|
-
@include exports("multiselect/theme") {
|
|
20587
|
+
@include exports( "multiselect/theme" ) {
|
|
20588
|
+
|
|
20589
|
+
// Multiselect
|
|
20590
|
+
.k-multiselect {}
|
|
20413
20591
|
|
|
20414
20592
|
}
|
|
20415
20593
|
|
|
@@ -20440,35 +20618,6 @@ $dropdownlist-focused-shadow: $kendo-button-focus-shadow !default;
|
|
|
20440
20618
|
// #region @import "_variables.scss"; -> packages/bootstrap/scss/treeview/_variables.scss
|
|
20441
20619
|
// Treeview
|
|
20442
20620
|
|
|
20443
|
-
/// The sizes of the treeview.
|
|
20444
|
-
/// @group treeview
|
|
20445
|
-
$kendo-treeview-sizes: (
|
|
20446
|
-
sm: (
|
|
20447
|
-
font-size: map-get( $spacing, 3),
|
|
20448
|
-
line-height: $line-height,
|
|
20449
|
-
item-padding-x: map-get( $spacing, thin ),
|
|
20450
|
-
item-padding-y: map-get( $spacing, 1 )
|
|
20451
|
-
),
|
|
20452
|
-
md: (
|
|
20453
|
-
font-size: $font-size,
|
|
20454
|
-
line-height: $line-height,
|
|
20455
|
-
item-padding-x: map-get( $spacing, 1 ),
|
|
20456
|
-
item-padding-y: map-get( $spacing, 2 )
|
|
20457
|
-
),
|
|
20458
|
-
lg: (
|
|
20459
|
-
font-size: map-get( $spacing, 4),
|
|
20460
|
-
line-height: $line-height,
|
|
20461
|
-
item-padding-x: map-get( $spacing, 2 ),
|
|
20462
|
-
item-padding-y: map-get( $spacing, 3 )
|
|
20463
|
-
)
|
|
20464
|
-
) !default;
|
|
20465
|
-
|
|
20466
|
-
/// The horizontal padding of the treeview.
|
|
20467
|
-
/// @group treeview
|
|
20468
|
-
$kendo-treeview-padding-x: 2px !default;
|
|
20469
|
-
/// The vertical padding of the treeview.
|
|
20470
|
-
/// @group treeview
|
|
20471
|
-
$kendo-treeview-padding-y: $kendo-treeview-padding-x !default;
|
|
20472
20621
|
/// The font family of the treeview.
|
|
20473
20622
|
/// @group treeview
|
|
20474
20623
|
$kendo-treeview-font-family: $font-family !default;
|
|
@@ -20496,6 +20645,31 @@ $kendo-treeview-item-border-width: 1px !default;
|
|
|
20496
20645
|
/// @group treeview
|
|
20497
20646
|
$kendo-treeview-item-border-radius: map-get( $spacing, 1 ) !default;
|
|
20498
20647
|
|
|
20648
|
+
|
|
20649
|
+
/// The sizes of the treeview.
|
|
20650
|
+
/// @group treeview
|
|
20651
|
+
$kendo-treeview-sizes: (
|
|
20652
|
+
sm: (
|
|
20653
|
+
font-size: map-get( $spacing, 3),
|
|
20654
|
+
line-height: $line-height,
|
|
20655
|
+
item-padding-x: map-get( $spacing, thin ),
|
|
20656
|
+
item-padding-y: map-get( $spacing, 1 )
|
|
20657
|
+
),
|
|
20658
|
+
md: (
|
|
20659
|
+
font-size: $font-size,
|
|
20660
|
+
line-height: $line-height,
|
|
20661
|
+
item-padding-x: map-get( $spacing, 1 ),
|
|
20662
|
+
item-padding-y: map-get( $spacing, 2 )
|
|
20663
|
+
),
|
|
20664
|
+
lg: (
|
|
20665
|
+
font-size: map-get( $spacing, 4),
|
|
20666
|
+
line-height: $line-height,
|
|
20667
|
+
item-padding-x: map-get( $spacing, 2 ),
|
|
20668
|
+
item-padding-y: map-get( $spacing, 3 )
|
|
20669
|
+
)
|
|
20670
|
+
) !default;
|
|
20671
|
+
|
|
20672
|
+
|
|
20499
20673
|
/// The background of the treeview.
|
|
20500
20674
|
/// @group treeview
|
|
20501
20675
|
$kendo-treeview-bg: null !default;
|
|
@@ -20508,16 +20682,16 @@ $kendo-treeview-border: null !default;
|
|
|
20508
20682
|
|
|
20509
20683
|
/// The background of a hovered treeview item.
|
|
20510
20684
|
/// @group treeview
|
|
20511
|
-
$kendo-treeview-item-
|
|
20685
|
+
$kendo-treeview-item-hover-bg: $hovered-bg !default;
|
|
20512
20686
|
/// The text color of a hovered treeview item.
|
|
20513
20687
|
/// @group treeview
|
|
20514
|
-
$kendo-treeview-item-
|
|
20688
|
+
$kendo-treeview-item-hover-text: $hovered-text !default;
|
|
20515
20689
|
/// The border of a hovered treeview item.
|
|
20516
20690
|
/// @group treeview
|
|
20517
|
-
$kendo-treeview-item-
|
|
20691
|
+
$kendo-treeview-item-hover-border: $kendo-treeview-item-hover-bg !default;
|
|
20518
20692
|
/// The gradient of a hovered treeview item.
|
|
20519
20693
|
/// @group treeview
|
|
20520
|
-
$kendo-treeview-item-
|
|
20694
|
+
$kendo-treeview-item-hover-gradient: null !default;
|
|
20521
20695
|
|
|
20522
20696
|
/// The background of a selected treeview item.
|
|
20523
20697
|
/// @group treeview
|
|
@@ -20534,20 +20708,7 @@ $kendo-treeview-item-selected-gradient: null !default;
|
|
|
20534
20708
|
|
|
20535
20709
|
/// The shadow of a focused treeview item.
|
|
20536
20710
|
/// @group treeview
|
|
20537
|
-
$kendo-treeview-item-
|
|
20538
|
-
/// The shadow of a selected and focused treeview item.
|
|
20539
|
-
/// @group treeview
|
|
20540
|
-
$kendo-treeview-item-selected-focused-shadow: 0 0 0 2px rgba( $kendo-treeview-item-selected-border, .5 ) !default;
|
|
20541
|
-
|
|
20542
|
-
/// The horizontal padding of the load more checkboxes.
|
|
20543
|
-
/// @group treeview
|
|
20544
|
-
$kendo-treeview-loadmore-checkboxes-padding-x: calc( #{$icon-spacing} + #{map-get( $kendo-checkbox-sizes, "md" )} + #{$kendo-treeview-indent} ) !default;
|
|
20545
|
-
/// The icon indent of the load more checkboxes.
|
|
20546
|
-
/// @group treeview
|
|
20547
|
-
$kendo-treeview-loadmore-checkboxes-icon-indent: calc( -1 * (#{$icon-spacing} + #{$kendo-treeview-indent}) ) !default;
|
|
20548
|
-
/// The horizontal margin of the load more checkboxes.
|
|
20549
|
-
/// @group treeview
|
|
20550
|
-
$kendo-treeview-loadmore-checkboxes-icon-margin-x: $icon-spacing !default;
|
|
20711
|
+
$kendo-treeview-item-focus-shadow: inset 0 0 0 2px rgba( $kendo-treeview-text, .15 ) !default;
|
|
20551
20712
|
|
|
20552
20713
|
/// The background of load more.
|
|
20553
20714
|
/// @group treeview
|
|
@@ -20574,22 +20735,22 @@ $kendo-treeview-loadmore-hover-border: null !default;
|
|
|
20574
20735
|
$kendo-treeview-loadmore-focus-bg: transparent !default;
|
|
20575
20736
|
/// The text color of a focused load more.
|
|
20576
20737
|
/// @group treeview
|
|
20577
|
-
$kendo-treeview-loadmore-focus-text: $link-text !default;
|
|
20738
|
+
$kendo-treeview-loadmore-focus-text: $link-hover-text !default;
|
|
20578
20739
|
/// The border of a focused load more.
|
|
20579
20740
|
/// @group treeview
|
|
20580
20741
|
$kendo-treeview-loadmore-focus-border: null !default;
|
|
20581
20742
|
/// The shadow of a focused load more.
|
|
20582
20743
|
/// @group treeview
|
|
20583
|
-
$kendo-treeview-loadmore-focus-shadow:
|
|
20744
|
+
$kendo-treeview-loadmore-focus-shadow: $kendo-treeview-item-focus-shadow !default;
|
|
20584
20745
|
|
|
20585
20746
|
// #endregion
|
|
20586
20747
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/treeview/_layout.scss
|
|
20587
20748
|
// #region @import "~@progress/kendo-theme-default/scss/treeview/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/treeview/_layout.scss
|
|
20588
20749
|
@include exports("treeview/layout") {
|
|
20589
20750
|
|
|
20590
|
-
//
|
|
20751
|
+
// Treeview
|
|
20591
20752
|
.k-treeview {
|
|
20592
|
-
padding:
|
|
20753
|
+
padding: 0;
|
|
20593
20754
|
border-width: 0;
|
|
20594
20755
|
background: none;
|
|
20595
20756
|
box-sizing: border-box;
|
|
@@ -20601,161 +20762,156 @@ $kendo-treeview-loadmore-focus-shadow: none !default;
|
|
|
20601
20762
|
white-space: nowrap;
|
|
20602
20763
|
-webkit-touch-callout: none;
|
|
20603
20764
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
20765
|
+
}
|
|
20604
20766
|
|
|
20605
|
-
> .k-treeview-group {
|
|
20606
|
-
outline: 0;
|
|
20607
|
-
-webkit-touch-callout: none;
|
|
20608
|
-
-webkit-tap-highlight-color: $rgba-transparent;
|
|
20609
|
-
}
|
|
20610
20767
|
|
|
20611
|
-
|
|
20612
|
-
|
|
20613
|
-
|
|
20614
|
-
|
|
20615
|
-
|
|
20616
|
-
|
|
20617
|
-
|
|
20618
|
-
|
|
20768
|
+
// Treeview group
|
|
20769
|
+
.k-treeview-group,
|
|
20770
|
+
.k-treeview .k-group {
|
|
20771
|
+
margin: 0;
|
|
20772
|
+
padding: 0;
|
|
20773
|
+
list-style: none;
|
|
20774
|
+
position: relative;
|
|
20775
|
+
outline: 0;
|
|
20776
|
+
-webkit-touch-callout: none;
|
|
20777
|
+
-webkit-tap-highlight-color: $rgba-transparent;
|
|
20619
20778
|
|
|
20620
|
-
|
|
20621
|
-
|
|
20622
|
-
}
|
|
20779
|
+
&.ng-animating {
|
|
20780
|
+
overflow: hidden;
|
|
20623
20781
|
}
|
|
20782
|
+
}
|
|
20624
20783
|
|
|
20625
|
-
// Wrappers
|
|
20626
|
-
.k-treeview-top,
|
|
20627
|
-
.k-treeview-mid,
|
|
20628
|
-
.k-treeview-bot {
|
|
20629
|
-
display: flex;
|
|
20630
|
-
flex-direction: row;
|
|
20631
|
-
align-items: center;
|
|
20632
|
-
align-content: center;
|
|
20633
|
-
}
|
|
20634
20784
|
|
|
20635
|
-
|
|
20636
|
-
|
|
20637
|
-
|
|
20638
|
-
|
|
20639
|
-
|
|
20640
|
-
|
|
20641
|
-
|
|
20642
|
-
|
|
20785
|
+
// Treeview wrappers
|
|
20786
|
+
.k-treeview-top,
|
|
20787
|
+
.k-treeview-mid,
|
|
20788
|
+
.k-treeview-bot {
|
|
20789
|
+
display: flex;
|
|
20790
|
+
flex-direction: row;
|
|
20791
|
+
align-items: center;
|
|
20792
|
+
align-content: center;
|
|
20793
|
+
}
|
|
20643
20794
|
|
|
20644
|
-
// Link
|
|
20645
|
-
.k-treeview-leaf {
|
|
20646
|
-
@include border-radius( $kendo-treeview-item-border-radius );
|
|
20647
|
-
margin: 0;
|
|
20648
|
-
border: $kendo-treeview-item-border-width solid transparent;
|
|
20649
|
-
text-decoration: none;
|
|
20650
|
-
display: inline-flex;
|
|
20651
|
-
align-items: center;
|
|
20652
|
-
align-content: center;
|
|
20653
|
-
vertical-align: middle;
|
|
20654
|
-
position: relative;
|
|
20655
|
-
}
|
|
20656
|
-
.k-treeview-leaf.k-state-focused {
|
|
20657
|
-
z-index: 1;
|
|
20658
|
-
}
|
|
20659
20795
|
|
|
20660
|
-
|
|
20661
|
-
|
|
20662
|
-
|
|
20796
|
+
// Treeview item
|
|
20797
|
+
.k-treeview-item {
|
|
20798
|
+
outline-style: none;
|
|
20799
|
+
margin: 0;
|
|
20800
|
+
padding: 0 0 0 $kendo-treeview-indent;
|
|
20801
|
+
border-width: 0;
|
|
20802
|
+
display: block;
|
|
20803
|
+
}
|
|
20663
20804
|
|
|
20664
|
-
&:hover,
|
|
20665
|
-
&.k-state-hover,
|
|
20666
|
-
&:focus,
|
|
20667
|
-
&.k-state-focused {
|
|
20668
|
-
text-decoration: underline;
|
|
20669
|
-
}
|
|
20670
|
-
}
|
|
20671
|
-
.k-treeview-load-more-checkboxes-container {
|
|
20672
|
-
padding-left: $kendo-treeview-loadmore-checkboxes-padding-x;
|
|
20673
20805
|
|
|
20674
|
-
|
|
20675
|
-
|
|
20676
|
-
|
|
20677
|
-
|
|
20806
|
+
// Treeview toggle
|
|
20807
|
+
.k-treeview-toggle {
|
|
20808
|
+
flex: none;
|
|
20809
|
+
display: inline-flex;
|
|
20810
|
+
flex-flow: row nowrap;
|
|
20811
|
+
align-items: center;
|
|
20812
|
+
cursor: pointer;
|
|
20813
|
+
|
|
20814
|
+
+ .k-checkbox-wrap,
|
|
20815
|
+
+ .k-checkbox-wrapper {
|
|
20816
|
+
margin-left: $icon-spacing;
|
|
20678
20817
|
}
|
|
20818
|
+
}
|
|
20679
20819
|
|
|
20680
|
-
// Expand / collapse
|
|
20681
|
-
.k-i-expand,
|
|
20682
|
-
.k-i-collapse {
|
|
20683
|
-
margin-left: -$kendo-treeview-indent;
|
|
20684
|
-
cursor: pointer;
|
|
20685
20820
|
|
|
20686
|
-
|
|
20687
|
-
|
|
20688
|
-
|
|
20689
|
-
|
|
20821
|
+
// Loading icon
|
|
20822
|
+
.k-treeview-loading {
|
|
20823
|
+
margin-right: $icon-spacing;
|
|
20824
|
+
}
|
|
20690
20825
|
|
|
20691
|
-
|
|
20692
|
-
|
|
20826
|
+
|
|
20827
|
+
// Checkbox
|
|
20828
|
+
.k-treeview .k-checkbox-wrap,
|
|
20829
|
+
.k-treeview .k-checkbox-wrapper {
|
|
20830
|
+
margin-right: $icon-spacing;
|
|
20831
|
+
}
|
|
20832
|
+
|
|
20833
|
+
|
|
20834
|
+
// Treeview leaf
|
|
20835
|
+
.k-treeview-leaf {
|
|
20836
|
+
@include border-radius( $kendo-treeview-item-border-radius );
|
|
20837
|
+
border: $kendo-treeview-item-border-width solid transparent;
|
|
20838
|
+
text-decoration: none;
|
|
20839
|
+
display: inline-flex;
|
|
20840
|
+
align-items: center;
|
|
20841
|
+
align-content: center;
|
|
20842
|
+
vertical-align: middle;
|
|
20843
|
+
position: relative;
|
|
20844
|
+
|
|
20845
|
+
.k-icon,
|
|
20846
|
+
.k-image,
|
|
20847
|
+
.k-sprite {
|
|
20693
20848
|
margin-right: $icon-spacing;
|
|
20694
20849
|
}
|
|
20695
20850
|
|
|
20696
|
-
|
|
20697
|
-
|
|
20698
|
-
|
|
20699
|
-
position: absolute;
|
|
20700
|
-
transform: translate(-50%, -50%);
|
|
20701
|
-
z-index: 1000;
|
|
20851
|
+
&.k-state-focus,
|
|
20852
|
+
&.k-state-focused {
|
|
20853
|
+
z-index: 1;
|
|
20702
20854
|
}
|
|
20855
|
+
}
|
|
20703
20856
|
|
|
20704
|
-
|
|
20705
|
-
|
|
20706
|
-
|
|
20707
|
-
|
|
20708
|
-
|
|
20857
|
+
|
|
20858
|
+
// Treeview load more button
|
|
20859
|
+
.k-treeview .k-treeview-load-more-button {
|
|
20860
|
+
cursor: pointer;
|
|
20861
|
+
|
|
20862
|
+
&:hover,
|
|
20863
|
+
&.k-state-hover,
|
|
20864
|
+
&:focus,
|
|
20865
|
+
&.k-state-focus,
|
|
20866
|
+
&.k-state-focused {
|
|
20867
|
+
text-decoration: underline;
|
|
20709
20868
|
}
|
|
20710
20869
|
}
|
|
20711
20870
|
|
|
20712
|
-
.k-treeview-toggle {}
|
|
20713
|
-
|
|
20714
|
-
.k-treeview-leaf-text {}
|
|
20715
20871
|
|
|
20716
20872
|
// RTL
|
|
20717
20873
|
.k-rtl .k-treeview,
|
|
20718
20874
|
.k-treeview[dir="rtl"] {
|
|
20719
20875
|
|
|
20720
|
-
//
|
|
20876
|
+
// Treeview item
|
|
20721
20877
|
.k-treeview-item {
|
|
20722
20878
|
padding-left: 0;
|
|
20723
20879
|
padding-right: $kendo-treeview-indent;
|
|
20724
20880
|
}
|
|
20725
20881
|
|
|
20726
|
-
|
|
20727
|
-
|
|
20728
|
-
padding-right: $kendo-treeview-loadmore-checkboxes-padding-x;
|
|
20729
|
-
|
|
20730
|
-
.k-i-loading {
|
|
20731
|
-
margin-left: $kendo-treeview-loadmore-checkboxes-icon-margin-x;
|
|
20732
|
-
margin-right: $kendo-treeview-loadmore-checkboxes-icon-indent;
|
|
20733
|
-
}
|
|
20734
|
-
}
|
|
20735
|
-
|
|
20736
|
-
// Expand / collapse
|
|
20737
|
-
.k-i-expand,
|
|
20738
|
-
.k-i-collapse {
|
|
20882
|
+
// Treeview toggle
|
|
20883
|
+
.k-treeview-toggle {
|
|
20739
20884
|
margin-left: 0;
|
|
20740
20885
|
margin-right: -$kendo-treeview-indent;
|
|
20741
20886
|
|
|
20887
|
+
+ .k-checkbox-wrap,
|
|
20742
20888
|
+ .k-checkbox-wrapper {
|
|
20743
20889
|
margin-right: $icon-spacing;
|
|
20744
20890
|
}
|
|
20745
20891
|
}
|
|
20746
20892
|
|
|
20747
|
-
//
|
|
20748
|
-
.k-
|
|
20893
|
+
// Loading
|
|
20894
|
+
.k-treeview-loading {
|
|
20749
20895
|
margin-right: 0;
|
|
20750
20896
|
margin-left: $icon-spacing;
|
|
20751
20897
|
}
|
|
20752
20898
|
|
|
20753
|
-
//
|
|
20754
|
-
.k-
|
|
20755
|
-
.k-
|
|
20756
|
-
.k-treeview-leaf .k-sprite {
|
|
20757
|
-
margin-left: $icon-spacing;
|
|
20899
|
+
// Checkbox
|
|
20900
|
+
.k-checkbox-wrap,
|
|
20901
|
+
.k-checkbox-wrapper {
|
|
20758
20902
|
margin-right: 0;
|
|
20903
|
+
margin-left: $icon-spacing;
|
|
20904
|
+
}
|
|
20905
|
+
|
|
20906
|
+
// Treeview leaf
|
|
20907
|
+
.k-treeview-leaf,
|
|
20908
|
+
.k-in {
|
|
20909
|
+
.k-icon,
|
|
20910
|
+
.k-image,
|
|
20911
|
+
.k-sprite {
|
|
20912
|
+
margin-right: 0;
|
|
20913
|
+
margin-left: $icon-spacing;
|
|
20914
|
+
}
|
|
20759
20915
|
}
|
|
20760
20916
|
}
|
|
20761
20917
|
|
|
@@ -20778,25 +20934,17 @@ $kendo-treeview-loadmore-focus-shadow: none !default;
|
|
|
20778
20934
|
|
|
20779
20935
|
// #endregion
|
|
20780
20936
|
|
|
20781
|
-
|
|
20782
20937
|
@include exports( "treeview/layout/bootstrap" ) {
|
|
20783
20938
|
|
|
20784
|
-
//
|
|
20785
|
-
.k-treeview {
|
|
20786
|
-
|
|
20787
|
-
.k-treeview-top,
|
|
20788
|
-
.k-treeview-mid,
|
|
20789
|
-
.k-treeview-bot {
|
|
20790
|
-
padding-top: 2px;
|
|
20791
|
-
padding-bottom: 2px;
|
|
20792
|
-
}
|
|
20939
|
+
// Treeview
|
|
20940
|
+
.k-treeview {}
|
|
20793
20941
|
|
|
20794
20942
|
|
|
20795
|
-
|
|
20796
|
-
|
|
20797
|
-
|
|
20798
|
-
}
|
|
20943
|
+
// Treeview leaf
|
|
20944
|
+
.k-treeview-leaf {
|
|
20945
|
+
transition: $transition;
|
|
20799
20946
|
}
|
|
20947
|
+
|
|
20800
20948
|
}
|
|
20801
20949
|
|
|
20802
20950
|
// #endregion
|
|
@@ -20804,30 +20952,42 @@ $kendo-treeview-loadmore-focus-shadow: none !default;
|
|
|
20804
20952
|
// #region @import "~@progress/kendo-theme-default/scss/treeview/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/treeview/_theme.scss
|
|
20805
20953
|
@include exports("treeview/theme") {
|
|
20806
20954
|
|
|
20807
|
-
//
|
|
20955
|
+
// Treeview
|
|
20808
20956
|
.k-treeview {
|
|
20809
20957
|
@include fill(
|
|
20810
20958
|
$kendo-treeview-text,
|
|
20811
20959
|
$kendo-treeview-bg,
|
|
20812
20960
|
$kendo-treeview-border
|
|
20813
20961
|
);
|
|
20962
|
+
}
|
|
20814
20963
|
|
|
20815
20964
|
|
|
20816
|
-
|
|
20817
|
-
|
|
20965
|
+
// Treeview item
|
|
20966
|
+
.k-treeview-item {}
|
|
20818
20967
|
|
|
20819
20968
|
|
|
20820
|
-
|
|
20821
|
-
|
|
20822
|
-
|
|
20969
|
+
// Treeview leaf
|
|
20970
|
+
.k-treeview-leaf {
|
|
20971
|
+
|
|
20972
|
+
// Hover state
|
|
20973
|
+
&:hover,
|
|
20974
|
+
&.k-hover {
|
|
20823
20975
|
@include fill(
|
|
20824
|
-
$kendo-treeview-item-
|
|
20825
|
-
$kendo-treeview-item-
|
|
20826
|
-
$kendo-treeview-item-
|
|
20827
|
-
$kendo-treeview-item-
|
|
20976
|
+
$kendo-treeview-item-hover-text,
|
|
20977
|
+
$kendo-treeview-item-hover-bg,
|
|
20978
|
+
$kendo-treeview-item-hover-border,
|
|
20979
|
+
$kendo-treeview-item-hover-gradient
|
|
20828
20980
|
);
|
|
20829
20981
|
}
|
|
20830
|
-
|
|
20982
|
+
|
|
20983
|
+
// Focus state
|
|
20984
|
+
&:focus,
|
|
20985
|
+
&.k-focus {
|
|
20986
|
+
@include box-shadow( $kendo-treeview-item-focus-shadow );
|
|
20987
|
+
}
|
|
20988
|
+
|
|
20989
|
+
// Selected state
|
|
20990
|
+
&.k-selected {
|
|
20831
20991
|
@include fill(
|
|
20832
20992
|
$kendo-treeview-item-selected-text,
|
|
20833
20993
|
$kendo-treeview-item-selected-bg,
|
|
@@ -20835,24 +20995,20 @@ $kendo-treeview-loadmore-focus-shadow: none !default;
|
|
|
20835
20995
|
$kendo-treeview-item-selected-gradient
|
|
20836
20996
|
);
|
|
20837
20997
|
}
|
|
20838
|
-
|
|
20839
|
-
@include box-shadow( $kendo-treeview-item-focused-shadow );
|
|
20840
|
-
}
|
|
20841
|
-
.k-treeview-leaf.k-selected.k-focus {
|
|
20842
|
-
@include box-shadow( $kendo-treeview-item-selected-focused-shadow );
|
|
20843
|
-
}
|
|
20998
|
+
}
|
|
20844
20999
|
|
|
20845
|
-
// LoadMore button
|
|
20846
|
-
.k-treeview-load-more-button {
|
|
20847
|
-
@include fill(
|
|
20848
|
-
$kendo-treeview-loadmore-text,
|
|
20849
|
-
$kendo-treeview-loadmore-bg,
|
|
20850
|
-
$kendo-treeview-loadmore-border
|
|
20851
|
-
);
|
|
20852
|
-
}
|
|
20853
21000
|
|
|
20854
|
-
|
|
20855
|
-
|
|
21001
|
+
// Treeview load more button
|
|
21002
|
+
.k-treeview .k-treeview-load-more-button {
|
|
21003
|
+
@include fill(
|
|
21004
|
+
$kendo-treeview-loadmore-text,
|
|
21005
|
+
$kendo-treeview-loadmore-bg,
|
|
21006
|
+
$kendo-treeview-loadmore-border
|
|
21007
|
+
);
|
|
21008
|
+
|
|
21009
|
+
// Hover state
|
|
21010
|
+
&:hover,
|
|
21011
|
+
&.k-hover {
|
|
20856
21012
|
@include fill(
|
|
20857
21013
|
$kendo-treeview-loadmore-hover-text,
|
|
20858
21014
|
$kendo-treeview-loadmore-hover-bg,
|
|
@@ -20860,8 +21016,9 @@ $kendo-treeview-loadmore-focus-shadow: none !default;
|
|
|
20860
21016
|
);
|
|
20861
21017
|
}
|
|
20862
21018
|
|
|
20863
|
-
|
|
20864
|
-
|
|
21019
|
+
// Focus state
|
|
21020
|
+
&:focus,
|
|
21021
|
+
&.k-focus {
|
|
20865
21022
|
@include fill(
|
|
20866
21023
|
$kendo-treeview-loadmore-focus-text,
|
|
20867
21024
|
$kendo-treeview-loadmore-focus-bg,
|
|
@@ -20942,7 +21099,7 @@ $dropdowntree-filter-spacer: 0px !default;
|
|
|
20942
21099
|
// #endregion
|
|
20943
21100
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/maskedtextbox/_layout.scss
|
|
20944
21101
|
// #region @import "~@progress/kendo-theme-default/scss/maskedtextbox/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/maskedtextbox/_layout.scss
|
|
20945
|
-
@include exports("maskedtextbox/layout") {
|
|
21102
|
+
@include exports( "maskedtextbox/layout" ) {
|
|
20946
21103
|
|
|
20947
21104
|
// Masked textbox
|
|
20948
21105
|
.k-maskedtextbox {}
|
|
@@ -20954,7 +21111,7 @@ $dropdowntree-filter-spacer: 0px !default;
|
|
|
20954
21111
|
// #endregion
|
|
20955
21112
|
// #region @import "_theme.scss"; -> packages/bootstrap/scss/maskedtextbox/_theme.scss
|
|
20956
21113
|
// #region @import "~@progress/kendo-theme-default/scss/maskedtextbox/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/maskedtextbox/_theme.scss
|
|
20957
|
-
@include exports("maskedtextbox/theme") {
|
|
21114
|
+
@include exports( "maskedtextbox/theme" ) {
|
|
20958
21115
|
|
|
20959
21116
|
// Masked textbox
|
|
20960
21117
|
.k-maskedtextbox {}
|
|
@@ -22593,7 +22750,6 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
|
|
|
22593
22750
|
|
|
22594
22751
|
> * {
|
|
22595
22752
|
flex-shrink: 0;
|
|
22596
|
-
|
|
22597
22753
|
}
|
|
22598
22754
|
|
|
22599
22755
|
// Appbar section
|
|
@@ -22603,15 +22759,16 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
|
|
|
22603
22759
|
align-items: center;
|
|
22604
22760
|
}
|
|
22605
22761
|
|
|
22762
|
+
|
|
22606
22763
|
// Appbar Spacer
|
|
22607
22764
|
.k-appbar-spacer {
|
|
22608
22765
|
flex: 1 0 auto;
|
|
22609
22766
|
}
|
|
22610
|
-
|
|
22611
22767
|
.k-appbar-spacer-sized {
|
|
22612
22768
|
flex-grow: 0;
|
|
22613
22769
|
}
|
|
22614
22770
|
|
|
22771
|
+
|
|
22615
22772
|
// Separator
|
|
22616
22773
|
.k-appbar-separator {
|
|
22617
22774
|
margin: 0;
|
|
@@ -22621,12 +22778,24 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
|
|
|
22621
22778
|
border-width: 0 0 0 1px;
|
|
22622
22779
|
display: inline-block;
|
|
22623
22780
|
}
|
|
22781
|
+
|
|
22782
|
+
|
|
22783
|
+
// Input
|
|
22784
|
+
.k-input,
|
|
22785
|
+
.k-picker:not(.k-colorpicker) {
|
|
22786
|
+
width: 10em;
|
|
22787
|
+
}
|
|
22788
|
+
|
|
22624
22789
|
}
|
|
22625
22790
|
|
|
22791
|
+
|
|
22792
|
+
// Static appbar
|
|
22626
22793
|
.k-appbar-static {
|
|
22627
22794
|
position: static;
|
|
22628
22795
|
}
|
|
22629
22796
|
|
|
22797
|
+
|
|
22798
|
+
// Sticky appbar
|
|
22630
22799
|
.k-appbar-sticky {
|
|
22631
22800
|
width: 100%;
|
|
22632
22801
|
position: sticky;
|
|
@@ -22634,17 +22803,20 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
|
|
|
22634
22803
|
z-index: $appbar-zindex;
|
|
22635
22804
|
}
|
|
22636
22805
|
|
|
22806
|
+
|
|
22807
|
+
// Fixed appbar
|
|
22637
22808
|
.k-appbar-fixed {
|
|
22638
22809
|
width: 100%;
|
|
22639
22810
|
position: fixed;
|
|
22640
22811
|
z-index: 1;
|
|
22641
22812
|
}
|
|
22642
22813
|
|
|
22814
|
+
|
|
22815
|
+
// Appbar position
|
|
22643
22816
|
.k-appbar-top {
|
|
22644
22817
|
top: 0;
|
|
22645
22818
|
bottom: auto;
|
|
22646
22819
|
}
|
|
22647
|
-
|
|
22648
22820
|
.k-appbar-bottom {
|
|
22649
22821
|
top: auto;
|
|
22650
22822
|
bottom: 0;
|
|
@@ -22653,6 +22825,7 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
|
|
|
22653
22825
|
bottom: 0;
|
|
22654
22826
|
}
|
|
22655
22827
|
}
|
|
22828
|
+
|
|
22656
22829
|
}
|
|
22657
22830
|
|
|
22658
22831
|
// #endregion
|
|
@@ -22720,79 +22893,135 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
|
|
|
22720
22893
|
// Component
|
|
22721
22894
|
// #region @import "_variables.scss"; -> packages/bootstrap/scss/fab/_variables.scss
|
|
22722
22895
|
// Floating Action Button
|
|
22723
|
-
$fab-padding-x: $padding-x !default;
|
|
22724
|
-
$fab-padding-y: $fab-padding-x !default;
|
|
22725
|
-
$fab-border-width: 1px !default;
|
|
22726
|
-
$fab-border-radius: $border-radius / 2 !default;
|
|
22727
|
-
$fab-font-family: $font-family !default;
|
|
22728
|
-
$fab-font-size: $font-size !default;
|
|
22729
|
-
$fab-line-height: $line-height !default;
|
|
22730
|
-
|
|
22731
|
-
$fab-padding-x-sm: ( $fab-padding-x / 2 ) !default;
|
|
22732
|
-
$fab-padding-y-sm: ( $fab-padding-y / 2 ) !default;
|
|
22733
|
-
|
|
22734
|
-
$fab-padding-x-md: $fab-padding-x !default;
|
|
22735
|
-
$fab-padding-y-md: $fab-padding-y !default;
|
|
22736
|
-
|
|
22737
|
-
$fab-padding-x-lg: ( $fab-padding-x * 1.5 ) !default;
|
|
22738
|
-
$fab-padding-y-lg: ( $fab-padding-y * 1.5 ) !default;
|
|
22739
|
-
|
|
22740
|
-
$fab-icon-width: 24px !default;
|
|
22741
|
-
$fab-icon-height: $fab-icon-width !default;
|
|
22742
|
-
$fab-icon-spacing: map-get( $spacing, 1 ) / 2 !default;
|
|
22743
|
-
|
|
22744
|
-
$fab-items-padding-x: 0px !default;
|
|
22745
|
-
$fab-items-padding-y: map-get( $spacing, 4 ) !default;
|
|
22746
|
-
|
|
22747
|
-
$fab-item-text-padding-x: map-get( $spacing, 1 ) !default;
|
|
22748
|
-
$fab-item-text-padding-y: $fab-item-text-padding-x !default;
|
|
22749
|
-
$fab-item-text-border-width: 1px !default;
|
|
22750
|
-
$fab-item-text-border-radius: 4px !default;
|
|
22751
|
-
$fab-item-text-font-size: $font-size-xs !default;
|
|
22752
|
-
$fab-item-text-line-height: 14px !default;
|
|
22753
|
-
|
|
22754
|
-
$fab-item-icon-padding-x: map-get( $spacing, 2 ) !default;
|
|
22755
|
-
$fab-item-icon-padding-y: $fab-item-icon-padding-x !default;
|
|
22756
|
-
$fab-item-icon-border-width: 0 !default;
|
|
22757
|
-
$fab-item-icon-border-radius: 50% !default;
|
|
22758
|
-
$fab-item-icon-width: 24px !default;
|
|
22759
|
-
$fab-item-icon-height: $fab-item-icon-width !default;
|
|
22760
|
-
|
|
22761
|
-
$fab-sizes: (
|
|
22762
|
-
sm: map-get( $spacing, 4 ),
|
|
22763
|
-
md: map-get( $spacing, 8 ),
|
|
22764
|
-
lg: map-get( $spacing, 16 )
|
|
22765
|
-
) !default;
|
|
22766
|
-
|
|
22767
|
-
$fab-theme-colors: $theme-colors !default;
|
|
22768
|
-
|
|
22769
|
-
$fab-shadow: 0px 6px 10px rgba(0, 0, 0, .14), 0px 1px 18px rgba(0, 0, 0, .12), 0px 3px 5px rgba(0, 0, 0, .2) !default;
|
|
22770
|
-
$fab-disabled-shadow: 0px 6px 10px try-tint( rgba(0, 0, 0, .14), .5 ), 0px 1px 18px try-tint( rgba(0, 0, 0, .12), .5 ), 0px 3px 5px try-tint( rgba(0, 0, 0, .2), .5 ) !default;
|
|
22771
|
-
$fab-active-shadow: null !default;
|
|
22772
22896
|
|
|
22773
|
-
|
|
22774
|
-
|
|
22775
|
-
$fab-
|
|
22776
|
-
|
|
22777
|
-
|
|
22778
|
-
$fab-
|
|
22779
|
-
|
|
22780
|
-
|
|
22781
|
-
$fab-
|
|
22782
|
-
|
|
22783
|
-
|
|
22784
|
-
|
|
22785
|
-
|
|
22786
|
-
|
|
22787
|
-
$fab-
|
|
22788
|
-
|
|
22789
|
-
|
|
22790
|
-
|
|
22791
|
-
$fab-
|
|
22792
|
-
|
|
22793
|
-
$fab-
|
|
22794
|
-
$fab-
|
|
22795
|
-
|
|
22897
|
+
/// Width of the border around the FAB.
|
|
22898
|
+
/// @group floating-action-button
|
|
22899
|
+
$kendo-fab-border-width: 1px !default;
|
|
22900
|
+
/// Border radius of the FAB.
|
|
22901
|
+
/// @group floating-action-button
|
|
22902
|
+
$kendo-fab-border-radius: $border-radius / 2 !default;
|
|
22903
|
+
/// Font family of the FAB.
|
|
22904
|
+
/// @group floating-action-button
|
|
22905
|
+
$kendo-fab-font-family: $font-family !default;
|
|
22906
|
+
/// Font size of the FAB.
|
|
22907
|
+
/// @group floating-action-button
|
|
22908
|
+
$kendo-fab-font-size: $font-size !default;
|
|
22909
|
+
/// Line height of the FAB.
|
|
22910
|
+
/// @group floating-action-button
|
|
22911
|
+
$kendo-fab-line-height: $line-height !default;
|
|
22912
|
+
|
|
22913
|
+
/// Horizontal padding of the FAB.
|
|
22914
|
+
/// @group floating-action-button
|
|
22915
|
+
$kendo-fab-padding-x: $padding-x !default;
|
|
22916
|
+
$kendo-fab-padding-x-sm: ( $kendo-fab-padding-x / 2 ) !default;
|
|
22917
|
+
$kendo-fab-padding-x-md: $kendo-fab-padding-x !default;
|
|
22918
|
+
$kendo-fab-padding-x-lg: ( $kendo-fab-padding-x * 1.5 ) !default;
|
|
22919
|
+
|
|
22920
|
+
/// Vertical padding of the FAB.
|
|
22921
|
+
/// @group floating-action-button
|
|
22922
|
+
$kendo-fab-padding-y: $kendo-fab-padding-x !default;
|
|
22923
|
+
$kendo-fab-padding-y-sm: ( $kendo-fab-padding-y / 2 ) !default;
|
|
22924
|
+
$kendo-fab-padding-y-md: $kendo-fab-padding-y !default;
|
|
22925
|
+
$kendo-fab-padding-y-lg: ( $kendo-fab-padding-y * 1.5 ) !default;
|
|
22926
|
+
|
|
22927
|
+
/// FAB icon width.
|
|
22928
|
+
/// @group floating-action-button
|
|
22929
|
+
$kendo-fab-icon-width: 24px !default;
|
|
22930
|
+
/// FAB icon height.
|
|
22931
|
+
/// @group floating-action-button
|
|
22932
|
+
$kendo-fab-icon-height: $kendo-fab-icon-width !default;
|
|
22933
|
+
/// FAB icon spacing.
|
|
22934
|
+
/// @group floating-action-button
|
|
22935
|
+
$kendo-fab-icon-spacing: map-get( $spacing, 1 ) / 2 !default;
|
|
22936
|
+
|
|
22937
|
+
/// FAB items horizontal padding.
|
|
22938
|
+
/// @group floating-action-button
|
|
22939
|
+
$kendo-fab-items-padding-x: 0px !default;
|
|
22940
|
+
/// FAB items vertical padding.
|
|
22941
|
+
/// @group floating-action-button
|
|
22942
|
+
$kendo-fab-items-padding-y: map-get( $spacing, 4 ) !default;
|
|
22943
|
+
|
|
22944
|
+
/// FAB item text horizontal padding.
|
|
22945
|
+
/// @group floating-action-button
|
|
22946
|
+
$kendo-fab-item-text-padding-x: map-get( $spacing, 1 ) !default;
|
|
22947
|
+
/// FAB item text vertical padding.
|
|
22948
|
+
/// @group floating-action-button
|
|
22949
|
+
$kendo-fab-item-text-padding-y: $kendo-fab-item-text-padding-x !default;
|
|
22950
|
+
/// Width of the FAB item text border.
|
|
22951
|
+
/// @group floating-action-button
|
|
22952
|
+
$kendo-fab-item-text-border-width: 1px !default;
|
|
22953
|
+
/// Border radius of the FAB item text.
|
|
22954
|
+
/// @group floating-action-button
|
|
22955
|
+
$kendo-fab-item-text-border-radius: 4px !default;
|
|
22956
|
+
/// Font size of the FAB item text.
|
|
22957
|
+
/// @group floating-action-button
|
|
22958
|
+
$kendo-fab-item-text-font-size: $font-size-xs !default;
|
|
22959
|
+
/// Line height of the FAB item text.
|
|
22960
|
+
/// @group floating-action-button
|
|
22961
|
+
$kendo-fab-item-text-line-height: 14px !default;
|
|
22962
|
+
|
|
22963
|
+
/// FAB item icon horizontal padding.
|
|
22964
|
+
/// @group floating-action-button
|
|
22965
|
+
$kendo-fab-item-icon-padding-x: map-get( $spacing, 2 ) !default;
|
|
22966
|
+
/// FAB item icon vertical padding.
|
|
22967
|
+
/// @group floating-action-button
|
|
22968
|
+
$kendo-fab-item-icon-padding-y: $kendo-fab-item-icon-padding-x !default;
|
|
22969
|
+
/// Width of the FAB item icon border.
|
|
22970
|
+
/// @group floating-action-button
|
|
22971
|
+
$kendo-fab-item-icon-border-width: 0 !default;
|
|
22972
|
+
/// Border radius of the FAB item icon.
|
|
22973
|
+
/// @group floating-action-button
|
|
22974
|
+
$kendo-fab-item-icon-border-radius: 50% !default;
|
|
22975
|
+
/// Width of the FAB item icon.
|
|
22976
|
+
/// @group floating-action-button
|
|
22977
|
+
$kendo-fab-item-icon-width: 24px !default;
|
|
22978
|
+
/// height of the FAB item icon.
|
|
22979
|
+
/// @group floating-action-button
|
|
22980
|
+
$kendo-fab-item-icon-height: $kendo-fab-item-icon-width !default;
|
|
22981
|
+
|
|
22982
|
+
/// Theme colors map for the FAB.
|
|
22983
|
+
/// @group floating-action-button
|
|
22984
|
+
$kendo-fab-theme-colors: $theme-colors !default;
|
|
22985
|
+
|
|
22986
|
+
/// The base shadow of the FAB.
|
|
22987
|
+
/// @group floating-action-button
|
|
22988
|
+
$kendo-fab-shadow: 0px 6px 10px rgba(0, 0, 0, .14), 0px 1px 18px rgba(0, 0, 0, .12), 0px 3px 5px rgba(0, 0, 0, .2) !default;
|
|
22989
|
+
/// The disabled shadow of the FAB.
|
|
22990
|
+
/// @group floating-action-button
|
|
22991
|
+
$kendo-fab-disabled-shadow: 0px 6px 10px try-tint( rgba(0, 0, 0, .14), .5 ), 0px 1px 18px try-tint( rgba(0, 0, 0, .12), .5 ), 0px 3px 5px try-tint( rgba(0, 0, 0, .2), .5 ) !default;
|
|
22992
|
+
/// The active shadow of the FAB.
|
|
22993
|
+
/// @group floating-action-button
|
|
22994
|
+
$kendo-fab-active-shadow: null !default;
|
|
22995
|
+
|
|
22996
|
+
/// The base text color of the FAB item.
|
|
22997
|
+
/// @group floating-action-button
|
|
22998
|
+
$kendo-fab-item-text: $component-text !default;
|
|
22999
|
+
/// The base background color of the FAB item.
|
|
23000
|
+
/// @group floating-action-button
|
|
23001
|
+
$kendo-fab-item-bg: $component-bg !default;
|
|
23002
|
+
/// The base border color of the FAB item.
|
|
23003
|
+
/// @group floating-action-button
|
|
23004
|
+
$kendo-fab-item-border: $component-border !default;
|
|
23005
|
+
|
|
23006
|
+
/// The base text color of the FAB item icon.
|
|
23007
|
+
/// @group floating-action-button
|
|
23008
|
+
$kendo-fab-item-icon-text: $kendo-button-text !default;
|
|
23009
|
+
/// The base background color of the FAB item icon.
|
|
23010
|
+
/// @group floating-action-button
|
|
23011
|
+
$kendo-fab-item-icon-bg: $kendo-button-bg !default;
|
|
23012
|
+
/// The base border color of the FAB item icon.
|
|
23013
|
+
/// @group floating-action-button
|
|
23014
|
+
$kendo-fab-item-icon-border: $kendo-button-border !default;
|
|
23015
|
+
|
|
23016
|
+
/// The base shadow of the FAB item.
|
|
23017
|
+
/// @group floating-action-button
|
|
23018
|
+
$kendo-fab-item-shadow: $kendo-fab-shadow !default;
|
|
23019
|
+
/// The disabled shadow of the FAB item.
|
|
23020
|
+
/// @group floating-action-button
|
|
23021
|
+
$kendo-fab-item-disabled-shadow: $kendo-fab-disabled-shadow !default;
|
|
23022
|
+
/// The active shadow of the FAB item.
|
|
23023
|
+
/// @group floating-action-button
|
|
23024
|
+
$kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
22796
23025
|
|
|
22797
23026
|
// #endregion
|
|
22798
23027
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/fab/_layout.scss
|
|
@@ -22808,9 +23037,9 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
22808
23037
|
box-sizing: border-box;
|
|
22809
23038
|
color: inherit;
|
|
22810
23039
|
background-color: transparent;
|
|
22811
|
-
font-size: $fab-font-size;
|
|
22812
|
-
line-height: $fab-line-height;
|
|
22813
|
-
font-family: $fab-font-family;
|
|
23040
|
+
font-size: $kendo-fab-font-size;
|
|
23041
|
+
line-height: $kendo-fab-line-height;
|
|
23042
|
+
font-family: $kendo-fab-font-family;
|
|
22814
23043
|
text-align: center;
|
|
22815
23044
|
white-space: nowrap;
|
|
22816
23045
|
display: inline-flex;
|
|
@@ -22829,73 +23058,39 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
22829
23058
|
|
|
22830
23059
|
// FAB Icon
|
|
22831
23060
|
.k-fab-icon {
|
|
22832
|
-
width: $fab-icon-width;
|
|
22833
|
-
height: $fab-icon-height;
|
|
23061
|
+
width: $kendo-fab-icon-width;
|
|
23062
|
+
height: $kendo-fab-icon-height;
|
|
22834
23063
|
|
|
22835
23064
|
&:not(:only-child) {
|
|
22836
|
-
margin-right: $fab-icon-spacing;
|
|
22837
|
-
margin-left: -$fab-icon-spacing;
|
|
23065
|
+
margin-right: $kendo-fab-icon-spacing;
|
|
23066
|
+
margin-left: -$kendo-fab-icon-spacing;
|
|
22838
23067
|
}
|
|
22839
23068
|
}
|
|
22840
23069
|
|
|
22841
23070
|
|
|
22842
23071
|
// Sizes
|
|
22843
23072
|
.k-fab-sm {
|
|
22844
|
-
padding: $fab-padding-y-sm $fab-padding-x-sm;
|
|
23073
|
+
padding: $kendo-fab-padding-y-sm $kendo-fab-padding-x-sm;
|
|
22845
23074
|
}
|
|
22846
23075
|
.k-fab-md {
|
|
22847
|
-
padding: $fab-padding-y $fab-padding-x;
|
|
23076
|
+
padding: $kendo-fab-padding-y $kendo-fab-padding-x;
|
|
22848
23077
|
}
|
|
22849
23078
|
.k-fab-lg {
|
|
22850
|
-
padding: $fab-padding-y-lg $fab-padding-x-lg;
|
|
23079
|
+
padding: $kendo-fab-padding-y-lg $kendo-fab-padding-x-lg;
|
|
22851
23080
|
}
|
|
22852
23081
|
|
|
22853
|
-
|
|
22854
23082
|
// Shapes
|
|
22855
|
-
.k-fab-
|
|
22856
|
-
border-radius: 0;
|
|
23083
|
+
.k-fab-rectangle { }
|
|
22857
23084
|
|
|
22858
|
-
|
|
22859
|
-
|
|
22860
|
-
height: $fab-size-sm;
|
|
22861
|
-
}
|
|
22862
|
-
&.k-fab-md {
|
|
22863
|
-
width: $fab-size-md;
|
|
22864
|
-
height: $fab-size-md;
|
|
22865
|
-
}
|
|
22866
|
-
&.k-fab-lg {
|
|
22867
|
-
width: $fab-size-lg;
|
|
22868
|
-
height: $fab-size-lg;
|
|
22869
|
-
}
|
|
22870
|
-
}
|
|
22871
|
-
.k-fab-circle {
|
|
22872
|
-
border-radius: 50%;
|
|
22873
|
-
|
|
22874
|
-
&.k-fab-sm {
|
|
22875
|
-
width: $fab-size-sm;
|
|
22876
|
-
height: $fab-size-sm;
|
|
22877
|
-
}
|
|
22878
|
-
&.k-fab-md {
|
|
22879
|
-
width: $fab-size-md;
|
|
22880
|
-
height: $fab-size-md;
|
|
22881
|
-
}
|
|
22882
|
-
&.k-fab-lg {
|
|
22883
|
-
width: $fab-size-lg;
|
|
22884
|
-
height: $fab-size-lg;
|
|
22885
|
-
}
|
|
22886
|
-
}
|
|
22887
|
-
.k-fab-pill {
|
|
22888
|
-
border-radius: 5rem;
|
|
22889
|
-
}
|
|
22890
|
-
.k-fab-rounded {
|
|
22891
|
-
@include border-radius( $fab-border-radius );
|
|
23085
|
+
.k-fab-square {
|
|
23086
|
+
aspect-ratio: 1;
|
|
22892
23087
|
}
|
|
22893
23088
|
|
|
22894
23089
|
|
|
22895
23090
|
// Items
|
|
22896
23091
|
.k-fab-items {
|
|
22897
23092
|
margin: 0;
|
|
22898
|
-
padding: $fab-items-padding-y $fab-items-padding-x;
|
|
23093
|
+
padding: $kendo-fab-items-padding-y $kendo-fab-items-padding-x;
|
|
22899
23094
|
display: flex;
|
|
22900
23095
|
}
|
|
22901
23096
|
|
|
@@ -22940,19 +23135,19 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
22940
23135
|
}
|
|
22941
23136
|
|
|
22942
23137
|
.k-fab-item-text {
|
|
22943
|
-
padding: $fab-item-text-padding-y $fab-item-text-padding-x;
|
|
22944
|
-
border-width: $fab-item-text-border-width;
|
|
22945
|
-
border-radius: $fab-item-text-border-radius;
|
|
22946
|
-
font-size: $fab-item-text-font-size;
|
|
22947
|
-
line-height: $fab-item-text-line-height;
|
|
23138
|
+
padding: $kendo-fab-item-text-padding-y $kendo-fab-item-text-padding-x;
|
|
23139
|
+
border-width: $kendo-fab-item-text-border-width;
|
|
23140
|
+
border-radius: $kendo-fab-item-text-border-radius;
|
|
23141
|
+
font-size: $kendo-fab-item-text-font-size;
|
|
23142
|
+
line-height: $kendo-fab-item-text-line-height;
|
|
22948
23143
|
}
|
|
22949
23144
|
|
|
22950
23145
|
.k-fab-item-icon {
|
|
22951
|
-
width: $fab-item-icon-width;
|
|
22952
|
-
height: $fab-item-icon-height;
|
|
22953
|
-
padding: $fab-item-icon-padding-y $fab-item-icon-padding-x;
|
|
22954
|
-
border-width: $fab-item-icon-border-width;
|
|
22955
|
-
border-radius: $fab-item-icon-border-radius;
|
|
23146
|
+
width: $kendo-fab-item-icon-width;
|
|
23147
|
+
height: $kendo-fab-item-icon-height;
|
|
23148
|
+
padding: $kendo-fab-item-icon-padding-y $kendo-fab-item-icon-padding-x;
|
|
23149
|
+
border-width: $kendo-fab-item-icon-border-width;
|
|
23150
|
+
border-radius: $kendo-fab-item-icon-border-radius;
|
|
22956
23151
|
box-sizing: content-box;
|
|
22957
23152
|
outline: none;
|
|
22958
23153
|
}
|
|
@@ -22995,11 +23190,11 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
22995
23190
|
@include exports( "fab/theme/bootstrap" ) {
|
|
22996
23191
|
|
|
22997
23192
|
// Normal state
|
|
22998
|
-
@each $name, $color in $fab-theme-colors {
|
|
22999
|
-
.k-fab-#{$name} {
|
|
23000
|
-
@include box-shadow($fab-shadow);
|
|
23001
|
-
outline: $fab-border-width solid $color;
|
|
23002
|
-
outline-offset: -$fab-border-width;
|
|
23193
|
+
@each $name, $color in $kendo-fab-theme-colors {
|
|
23194
|
+
.k-fab-solid-#{$name} {
|
|
23195
|
+
@include box-shadow($kendo-fab-shadow);
|
|
23196
|
+
outline: $kendo-fab-border-width solid $color;
|
|
23197
|
+
outline-offset: -$kendo-fab-border-width;
|
|
23003
23198
|
border-color: $color;
|
|
23004
23199
|
color: contrast-wcag( $color );
|
|
23005
23200
|
background-color: $color;
|
|
@@ -23007,10 +23202,9 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
23007
23202
|
}
|
|
23008
23203
|
|
|
23009
23204
|
// Hover state
|
|
23010
|
-
@each $name, $color in $fab-theme-colors {
|
|
23011
|
-
.k-
|
|
23012
|
-
.k-
|
|
23013
|
-
.k-fab-#{$name}:hover {
|
|
23205
|
+
@each $name, $color in $kendo-fab-theme-colors {
|
|
23206
|
+
.k-hover.k-fab-solid-#{$name},
|
|
23207
|
+
.k-fab-solid-#{$name}:hover {
|
|
23014
23208
|
border-color: try-darken( $color, 10% );
|
|
23015
23209
|
color: contrast-wcag( try-darken( $color, 7.5% ) );
|
|
23016
23210
|
background-color: try-darken( $color, 7.5% );
|
|
@@ -23018,10 +23212,9 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
23018
23212
|
}
|
|
23019
23213
|
|
|
23020
23214
|
// Focus state
|
|
23021
|
-
@each $name, $color in $fab-theme-colors {
|
|
23022
|
-
.k-fab-#{$name}.k-
|
|
23023
|
-
.k-fab-#{$name}
|
|
23024
|
-
.k-fab-#{$name}:focus {
|
|
23215
|
+
@each $name, $color in $kendo-fab-theme-colors {
|
|
23216
|
+
.k-fab-solid-#{$name}.k-focus,
|
|
23217
|
+
.k-fab-solid-#{$name}:focus {
|
|
23025
23218
|
outline-style: solid;
|
|
23026
23219
|
outline-width: 3px;
|
|
23027
23220
|
outline-color: rgba( $color, .5 );
|
|
@@ -23029,11 +23222,11 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
23029
23222
|
}
|
|
23030
23223
|
|
|
23031
23224
|
// Active state
|
|
23032
|
-
@each $name, $color in $fab-theme-colors {
|
|
23033
|
-
.k-
|
|
23034
|
-
.k-
|
|
23035
|
-
.k-fab-#{$name}:active {
|
|
23036
|
-
@include box-shadow($fab-active-shadow);
|
|
23225
|
+
@each $name, $color in $kendo-fab-theme-colors {
|
|
23226
|
+
.k-active.k-fab-solid-#{$name},
|
|
23227
|
+
.k-selected.k-fab-solid-#{$name},
|
|
23228
|
+
.k-fab-solid-#{$name}:active {
|
|
23229
|
+
@include box-shadow($kendo-fab-active-shadow);
|
|
23037
23230
|
border-color: try-darken( $color, 12.5% );
|
|
23038
23231
|
color: contrast-wcag( try-darken( $color, 10% ) );
|
|
23039
23232
|
background-color: try-darken( $color, 10% );
|
|
@@ -23041,10 +23234,10 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
23041
23234
|
}
|
|
23042
23235
|
|
|
23043
23236
|
// Disabled state
|
|
23044
|
-
@each $name, $color in $fab-theme-colors {
|
|
23045
|
-
.k-
|
|
23046
|
-
.k-fab-#{$name}:disabled {
|
|
23047
|
-
@include box-shadow($fab-disabled-shadow);
|
|
23237
|
+
@each $name, $color in $kendo-fab-theme-colors {
|
|
23238
|
+
.k-disabled.k-fab-solid-#{$name},
|
|
23239
|
+
.k-fab-solid-#{$name}:disabled {
|
|
23240
|
+
@include box-shadow($kendo-fab-disabled-shadow);
|
|
23048
23241
|
background-color: try-tint( $color, 4.5 );
|
|
23049
23242
|
color: try-tint( contrast-wcag( $color ), 5 );
|
|
23050
23243
|
opacity: 1;
|
|
@@ -23054,68 +23247,65 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
23054
23247
|
// Items
|
|
23055
23248
|
.k-fab-item-text {
|
|
23056
23249
|
@include fill(
|
|
23057
|
-
$fab-item-text,
|
|
23058
|
-
$fab-item-bg,
|
|
23059
|
-
$fab-item-border
|
|
23250
|
+
$kendo-fab-item-text,
|
|
23251
|
+
$kendo-fab-item-bg,
|
|
23252
|
+
$kendo-fab-item-border
|
|
23060
23253
|
);
|
|
23061
|
-
@include box-shadow($fab-item-shadow);
|
|
23254
|
+
@include box-shadow($kendo-fab-item-shadow);
|
|
23062
23255
|
}
|
|
23063
23256
|
.k-fab-item-icon {
|
|
23064
23257
|
@include fill(
|
|
23065
|
-
$fab-item-icon-text,
|
|
23066
|
-
$fab-item-icon-bg,
|
|
23067
|
-
$fab-item-icon-border
|
|
23258
|
+
$kendo-fab-item-icon-text,
|
|
23259
|
+
$kendo-fab-item-icon-bg,
|
|
23260
|
+
$kendo-fab-item-icon-border
|
|
23068
23261
|
);
|
|
23069
|
-
@include box-shadow($fab-item-shadow);
|
|
23070
|
-
outline: $fab-border-width solid $kendo-button-bg;
|
|
23071
|
-
outline-offset: -$fab-border-width;
|
|
23262
|
+
@include box-shadow($kendo-fab-item-shadow);
|
|
23263
|
+
outline: $kendo-fab-border-width solid $kendo-button-bg;
|
|
23264
|
+
outline-offset: -$kendo-fab-border-width;
|
|
23072
23265
|
}
|
|
23073
23266
|
|
|
23074
23267
|
// Hover state
|
|
23075
|
-
.k-fab-item.k-
|
|
23076
|
-
.k-fab-item.k-state-hovered .k-fab-item-icon,
|
|
23268
|
+
.k-fab-item.k-hover .k-fab-item-icon,
|
|
23077
23269
|
.k-fab-item:hover .k-fab-item-icon {
|
|
23078
|
-
@include box-shadow($fab-item-shadow);
|
|
23079
|
-
outline: $fab-border-width solid try-darken( $fab-item-icon-border, 10% );
|
|
23080
|
-
outline-offset: -$fab-border-width;
|
|
23081
|
-
border-color: try-darken( $fab-item-icon-border, 10% );
|
|
23082
|
-
color: contrast-wcag( try-darken( $fab-item-icon-bg, 7.5% ) );
|
|
23083
|
-
background-color: try-darken( $fab-item-icon-bg, 7.5% );
|
|
23270
|
+
@include box-shadow($kendo-fab-item-shadow);
|
|
23271
|
+
outline: $kendo-fab-border-width solid try-darken( $kendo-fab-item-icon-border, 10% );
|
|
23272
|
+
outline-offset: -$kendo-fab-border-width;
|
|
23273
|
+
border-color: try-darken( $kendo-fab-item-icon-border, 10% );
|
|
23274
|
+
color: contrast-wcag( try-darken( $kendo-fab-item-icon-bg, 7.5% ) );
|
|
23275
|
+
background-color: try-darken( $kendo-fab-item-icon-bg, 7.5% );
|
|
23084
23276
|
}
|
|
23085
23277
|
|
|
23086
23278
|
// Focus state
|
|
23087
23279
|
.k-fab-item:focus .k-fab-item-text,
|
|
23088
23280
|
.k-fab-item:focus .k-fab-item-icon,
|
|
23089
|
-
.k-fab-item.k-
|
|
23090
|
-
.k-fab-item.k-
|
|
23091
|
-
.k-fab-item.k-state-focused .k-fab-item-text,
|
|
23092
|
-
.k-fab-item.k-state-focused .k-fab-item-icon {
|
|
23281
|
+
.k-fab-item.k-focus .k-fab-item-text,
|
|
23282
|
+
.k-fab-item.k-focus .k-fab-item-icon {
|
|
23093
23283
|
outline-style: solid;
|
|
23094
23284
|
outline-width: 3px;
|
|
23095
|
-
outline-color: rgba( $fab-item-icon-border, .5 );
|
|
23285
|
+
outline-color: rgba( $kendo-fab-item-icon-border, .5 );
|
|
23096
23286
|
}
|
|
23097
23287
|
|
|
23098
23288
|
// Active state
|
|
23099
|
-
.k-fab-item.k-
|
|
23289
|
+
.k-fab-item.k-active .k-fab-item-icon,
|
|
23100
23290
|
.k-fab-item:active .k-fab-item-icon {
|
|
23101
|
-
@include box-shadow($fab-item-active-shadow);
|
|
23102
|
-
outline: $fab-border-width solid try-darken( $fab-item-icon-border, 12.5% );
|
|
23103
|
-
outline-offset: -$fab-border-width;
|
|
23104
|
-
border-color: try-darken( $fab-item-icon-border, 12.5% );
|
|
23105
|
-
color: contrast-wcag( try-darken( $fab-item-icon-bg, 10% ) );
|
|
23106
|
-
background-color: try-darken( $fab-item-icon-bg, 10% );
|
|
23291
|
+
@include box-shadow($kendo-fab-item-active-shadow);
|
|
23292
|
+
outline: $kendo-fab-border-width solid try-darken( $kendo-fab-item-icon-border, 12.5% );
|
|
23293
|
+
outline-offset: -$kendo-fab-border-width;
|
|
23294
|
+
border-color: try-darken( $kendo-fab-item-icon-border, 12.5% );
|
|
23295
|
+
color: contrast-wcag( try-darken( $kendo-fab-item-icon-bg, 10% ) );
|
|
23296
|
+
background-color: try-darken( $kendo-fab-item-icon-bg, 10% );
|
|
23107
23297
|
}
|
|
23108
23298
|
|
|
23109
23299
|
// Disabled state
|
|
23110
|
-
.k-fab-item.k-
|
|
23300
|
+
.k-fab-item.k-disabled,
|
|
23111
23301
|
.k-fab-item:disabled {
|
|
23112
23302
|
opacity: 1;
|
|
23113
23303
|
|
|
23114
23304
|
.k-fab-item-text,
|
|
23115
23305
|
.k-fab-item-icon {
|
|
23116
|
-
@include box-shadow($fab-item-disabled-shadow);
|
|
23117
|
-
background-color: try-tint( $fab-item-bg, 8 );
|
|
23118
|
-
color: try-tint( $fab-item-text, 8 );
|
|
23306
|
+
@include box-shadow($kendo-fab-item-disabled-shadow);
|
|
23307
|
+
background-color: try-tint( $kendo-fab-item-bg, 8 );
|
|
23308
|
+
color: try-tint( $kendo-fab-item-text, 8 );
|
|
23119
23309
|
}
|
|
23120
23310
|
}
|
|
23121
23311
|
|
|
@@ -23177,8 +23367,12 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
23177
23367
|
|
|
23178
23368
|
// Menu item
|
|
23179
23369
|
.k-menu-item {
|
|
23370
|
+
box-sizing: border-box;
|
|
23180
23371
|
border-width: 0;
|
|
23181
23372
|
outline: 0;
|
|
23373
|
+
display: flex;
|
|
23374
|
+
flex-flow: column nowrap;
|
|
23375
|
+
flex: none;
|
|
23182
23376
|
position: relative;
|
|
23183
23377
|
user-select: none;
|
|
23184
23378
|
}
|
|
@@ -23200,28 +23394,34 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
23200
23394
|
outline: 0;
|
|
23201
23395
|
color: inherit;
|
|
23202
23396
|
display: flex;
|
|
23203
|
-
flex-
|
|
23397
|
+
flex-flow: row nowrap;
|
|
23204
23398
|
flex: 1 1 auto;
|
|
23399
|
+
gap: $menu-item-icon-spacing;
|
|
23205
23400
|
align-items: center;
|
|
23206
23401
|
position: relative;
|
|
23207
23402
|
white-space: nowrap;
|
|
23208
23403
|
cursor: pointer;
|
|
23404
|
+
}
|
|
23209
23405
|
|
|
23210
|
-
|
|
23211
|
-
|
|
23212
|
-
|
|
23213
|
-
|
|
23214
|
-
|
|
23406
|
+
|
|
23407
|
+
// Menu item text
|
|
23408
|
+
.k-menu-link-text {
|
|
23409
|
+
display: flex;
|
|
23410
|
+
flex-flow: row nowrap;
|
|
23411
|
+
flex: 1 1 auto;
|
|
23412
|
+
overflow: hidden;
|
|
23413
|
+
text-overflow: ellipsis;
|
|
23215
23414
|
}
|
|
23216
23415
|
|
|
23217
23416
|
|
|
23218
23417
|
// Expand arrow
|
|
23219
23418
|
.k-menu-expand-arrow {
|
|
23220
|
-
margin:
|
|
23221
|
-
|
|
23222
|
-
|
|
23223
|
-
|
|
23224
|
-
|
|
23419
|
+
margin-inline-end: -$icon-spacing;
|
|
23420
|
+
display: inline-flex;
|
|
23421
|
+
flex-flow: row wrap;
|
|
23422
|
+
align-items: center;
|
|
23423
|
+
flex: none;
|
|
23424
|
+
position: relative;
|
|
23225
23425
|
}
|
|
23226
23426
|
|
|
23227
23427
|
|
|
@@ -23256,6 +23456,14 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
23256
23456
|
padding-right: $kendo-menu-popup-item-padding-end;
|
|
23257
23457
|
}
|
|
23258
23458
|
|
|
23459
|
+
.k-menu-expand-arrow {
|
|
23460
|
+
margin: 0;
|
|
23461
|
+
position: absolute;
|
|
23462
|
+
top: 50%;
|
|
23463
|
+
transform: translateY(-50%);
|
|
23464
|
+
right: $icon-spacing;
|
|
23465
|
+
}
|
|
23466
|
+
|
|
23259
23467
|
> .k-separator {
|
|
23260
23468
|
margin: $menu-separator-spacing 0;
|
|
23261
23469
|
height: 0;
|
|
@@ -23294,12 +23502,20 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
23294
23502
|
margin-top: $kendo-menu-popup-item-spacing;
|
|
23295
23503
|
}
|
|
23296
23504
|
|
|
23505
|
+
.k-menu-expand-arrow {
|
|
23506
|
+
margin: 0;
|
|
23507
|
+
position: absolute;
|
|
23508
|
+
top: 50%;
|
|
23509
|
+
transform: translateY(-50%);
|
|
23510
|
+
right: $icon-spacing;
|
|
23511
|
+
}
|
|
23512
|
+
|
|
23297
23513
|
.k-separator {
|
|
23298
23514
|
margin: $menu-separator-spacing 0;
|
|
23299
23515
|
height: 0;
|
|
23300
23516
|
border-width: 1px 0 0;
|
|
23301
23517
|
border-style: solid;
|
|
23302
|
-
border-color: $
|
|
23518
|
+
border-color: $component-border;
|
|
23303
23519
|
display: block;
|
|
23304
23520
|
}
|
|
23305
23521
|
}
|
|
@@ -23319,6 +23535,11 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
23319
23535
|
padding: $kendo-menu-popup-item-padding-y-sm $kendo-menu-popup-item-padding-x-sm;
|
|
23320
23536
|
padding-inline-end: $kendo-menu-popup-item-padding-end-sm;
|
|
23321
23537
|
}
|
|
23538
|
+
|
|
23539
|
+
.k-menu-expand-arrow {
|
|
23540
|
+
margin-inline-start: $kendo-menu-popup-item-icon-margin-start-sm;
|
|
23541
|
+
margin-inline-end: $kendo-menu-popup-item-icon-margin-end-sm;
|
|
23542
|
+
}
|
|
23322
23543
|
}
|
|
23323
23544
|
.k-menu-group-md {
|
|
23324
23545
|
font-size: $kendo-menu-popup-font-size-md;
|
|
@@ -23334,6 +23555,11 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
23334
23555
|
padding: $kendo-menu-popup-item-padding-y-md $kendo-menu-popup-item-padding-x-md;
|
|
23335
23556
|
padding-inline-end: $kendo-menu-popup-item-padding-end-md;
|
|
23336
23557
|
}
|
|
23558
|
+
|
|
23559
|
+
.k-menu-expand-arrow {
|
|
23560
|
+
margin-inline-start: $kendo-menu-popup-item-icon-margin-start;
|
|
23561
|
+
margin-inline-end: $kendo-menu-popup-item-icon-margin-end;
|
|
23562
|
+
}
|
|
23337
23563
|
}
|
|
23338
23564
|
.k-menu-group-lg {
|
|
23339
23565
|
font-size: $kendo-menu-popup-font-size-lg;
|
|
@@ -23349,6 +23575,11 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
23349
23575
|
padding: $kendo-menu-popup-item-padding-y-lg $kendo-menu-popup-item-padding-x-lg;
|
|
23350
23576
|
padding-inline-end: $kendo-menu-popup-item-padding-end-lg;
|
|
23351
23577
|
}
|
|
23578
|
+
|
|
23579
|
+
.k-menu-expand-arrow {
|
|
23580
|
+
margin-inline-start: $kendo-menu-popup-item-icon-margin-start-lg;
|
|
23581
|
+
margin-inline-end: $kendo-menu-popup-item-icon-margin-end-lg;
|
|
23582
|
+
}
|
|
23352
23583
|
}
|
|
23353
23584
|
|
|
23354
23585
|
|
|
@@ -23377,11 +23608,14 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
23377
23608
|
.k-context-menu-popup {
|
|
23378
23609
|
z-index: 12000;
|
|
23379
23610
|
|
|
23380
|
-
> .k-popup:not(.k-menu-popup),
|
|
23381
23611
|
.k-context-menu {
|
|
23382
|
-
border: 0;
|
|
23612
|
+
border-width: 0;
|
|
23383
23613
|
}
|
|
23384
23614
|
}
|
|
23615
|
+
.k-popup .k-context-menu,
|
|
23616
|
+
.k-context-menu-popup .k-context-menu {
|
|
23617
|
+
border-width: 0;
|
|
23618
|
+
}
|
|
23385
23619
|
|
|
23386
23620
|
|
|
23387
23621
|
// Scrolling
|
|
@@ -23440,21 +23674,6 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
23440
23674
|
.k-rtl,
|
|
23441
23675
|
[dir="rtl"] {
|
|
23442
23676
|
|
|
23443
|
-
.k-menu-link {
|
|
23444
|
-
> .k-icon:not(.k-menu-expand-arrow),
|
|
23445
|
-
> .k-image,
|
|
23446
|
-
> .k-sprite {
|
|
23447
|
-
margin-left: $menu-item-icon-spacing;
|
|
23448
|
-
margin-right: 0;
|
|
23449
|
-
}
|
|
23450
|
-
}
|
|
23451
|
-
|
|
23452
|
-
.k-menu-expand-arrow {
|
|
23453
|
-
right: unset;
|
|
23454
|
-
left: $icon-spacing;
|
|
23455
|
-
}
|
|
23456
|
-
|
|
23457
|
-
|
|
23458
23677
|
// Orientation -- horizontal
|
|
23459
23678
|
.k-menu-horizontal {
|
|
23460
23679
|
|
|
@@ -23644,16 +23863,6 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
23644
23863
|
|
|
23645
23864
|
// #endregion
|
|
23646
23865
|
|
|
23647
|
-
@include exports("menu/theme/bootstrap") {
|
|
23648
|
-
|
|
23649
|
-
.k-context-menu-popup {
|
|
23650
|
-
.k-header {
|
|
23651
|
-
color: inherit;
|
|
23652
|
-
}
|
|
23653
|
-
}
|
|
23654
|
-
|
|
23655
|
-
}
|
|
23656
|
-
|
|
23657
23866
|
// #endregion
|
|
23658
23867
|
|
|
23659
23868
|
// #endregion
|
|
@@ -27702,7 +27911,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
27702
27911
|
.k-tabstrip-items {
|
|
27703
27912
|
outline: 0;
|
|
27704
27913
|
display: flex;
|
|
27705
|
-
flex-
|
|
27914
|
+
flex-flow: row wrap;
|
|
27706
27915
|
flex: 0 0 auto;
|
|
27707
27916
|
|
|
27708
27917
|
.k-item {
|
|
@@ -29639,9 +29848,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
29639
29848
|
}
|
|
29640
29849
|
}
|
|
29641
29850
|
|
|
29642
|
-
.k-grid .k-grid-search {
|
|
29643
|
-
width: 100%;
|
|
29644
|
-
}
|
|
29645
29851
|
}
|
|
29646
29852
|
|
|
29647
29853
|
.k-grid.k-grid-mobile {
|
|
@@ -30953,14 +31159,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30953
31159
|
padding: 4px 8px;
|
|
30954
31160
|
}
|
|
30955
31161
|
|
|
30956
|
-
.k-grid-columnmenu-popup {
|
|
30957
|
-
width: 230px;
|
|
30958
|
-
|
|
30959
|
-
&.k-popup {
|
|
30960
|
-
padding: $grid-column-menu-popup-padding-y $grid-column-menu-popup-padding-x;
|
|
30961
|
-
}
|
|
30962
|
-
}
|
|
30963
|
-
|
|
30964
31162
|
// Filter row
|
|
30965
31163
|
.k-filter-row {
|
|
30966
31164
|
line-height: $form-line-height;
|
|
@@ -31433,83 +31631,83 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
31433
31631
|
|
|
31434
31632
|
@include exports( "filtermenu/layout" ) {
|
|
31435
31633
|
|
|
31436
|
-
|
|
31437
|
-
.k-
|
|
31438
|
-
|
|
31439
|
-
.k-filter-menu-container {
|
|
31440
|
-
width: $grid-filter-menu-width;
|
|
31441
|
-
}
|
|
31634
|
+
// Filter menu
|
|
31635
|
+
.k-filter-menu-popup {
|
|
31636
|
+
width: $grid-column-menu-width;
|
|
31442
31637
|
}
|
|
31638
|
+
.k-filter-menu {
|
|
31639
|
+
box-sizing: border-box;
|
|
31640
|
+
}
|
|
31641
|
+
.k-filter-menu-container {
|
|
31642
|
+
padding: map-get( $spacing, 2 );
|
|
31643
|
+
box-sizing: border-box;
|
|
31644
|
+
display: flex;
|
|
31645
|
+
flex-flow: column nowrap;
|
|
31646
|
+
align-items: stretch;
|
|
31647
|
+
gap: map-get( $spacing, 2 );
|
|
31443
31648
|
|
|
31444
|
-
|
|
31445
|
-
|
|
31446
|
-
|
|
31447
|
-
.k-popup .k-grid-filter-popup {
|
|
31448
|
-
.k-multicheck-wrap {
|
|
31449
|
-
padding: $grid-filter-menu-item-spacing-y $grid-filter-menu-item-spacing-x 0;
|
|
31450
|
-
|
|
31451
|
-
.k-item {
|
|
31452
|
-
padding: $grid-column-menu-list-item-padding-y 0;
|
|
31453
|
-
}
|
|
31454
|
-
|
|
31455
|
-
.k-check-all-wrap {
|
|
31456
|
-
padding-bottom: ($grid-column-menu-list-item-padding-y * 2);
|
|
31457
|
-
border-bottom-width: $grid-filter-menu-check-all-border-bottom-width;
|
|
31458
|
-
border-bottom-style: solid;
|
|
31459
|
-
}
|
|
31649
|
+
.k-filter-and {
|
|
31650
|
+
width: min-content;
|
|
31651
|
+
align-self: start;
|
|
31460
31652
|
}
|
|
31461
31653
|
|
|
31462
|
-
.k-
|
|
31463
|
-
|
|
31654
|
+
.k-actions {
|
|
31655
|
+
margin: 0;
|
|
31656
|
+
padding: 0;
|
|
31464
31657
|
}
|
|
31465
31658
|
|
|
31466
|
-
|
|
31467
|
-
|
|
31659
|
+
// Angular specific
|
|
31660
|
+
kendo-numeric-filter-menu,
|
|
31661
|
+
kendo-grid-string-filter-menu,
|
|
31662
|
+
kendo-grid-date-filter-menu,
|
|
31663
|
+
kendo-grid-filter-menu-input-wrapper {
|
|
31664
|
+
display: flex;
|
|
31665
|
+
flex-flow: column nowrap;
|
|
31666
|
+
align-items: stretch;
|
|
31667
|
+
gap: map-get( $spacing, 2 );
|
|
31468
31668
|
}
|
|
31469
31669
|
}
|
|
31670
|
+
.k-ie .k-filter-menu-container {
|
|
31671
|
+
> * { margin-top: map-get( $spacing, 2 ); }
|
|
31672
|
+
> :first-child { margin-top: 0; }
|
|
31470
31673
|
|
|
31471
|
-
|
|
31472
|
-
|
|
31473
|
-
|
|
31474
|
-
|
|
31475
|
-
|
|
31476
|
-
.k-filter-menu-container {
|
|
31477
|
-
box-sizing: border-box;
|
|
31478
|
-
}
|
|
31479
|
-
|
|
31480
|
-
.k-widget,
|
|
31481
|
-
.k-textbox,
|
|
31482
|
-
.k-dropdown,
|
|
31483
|
-
.k-numerictextbox,
|
|
31484
|
-
.k-radio-list,
|
|
31485
|
-
.k-datepicker,
|
|
31486
|
-
.k-input {
|
|
31487
|
-
margin: $grid-filter-menu-item-spacing-y $grid-filter-menu-item-spacing-x 0;
|
|
31488
|
-
width: calc( 100% - ( 2 * #{$grid-filter-menu-item-spacing-x} ) );
|
|
31489
|
-
box-sizing: border-box;
|
|
31490
|
-
display: flex;
|
|
31674
|
+
// Angular specific
|
|
31675
|
+
.k-filter-and,
|
|
31676
|
+
kendo-grid-filter-menu-input-wrapper > * {
|
|
31677
|
+
margin-top: map-get( $spacing, 2 );
|
|
31491
31678
|
}
|
|
31492
|
-
|
|
31493
|
-
|
|
31494
|
-
margin: $grid-filter-menu-item-spacing-y $grid-filter-menu-item-spacing-x 0;
|
|
31495
|
-
box-sizing: border-box;
|
|
31496
|
-
display: flex;
|
|
31679
|
+
kendo-grid-filter-menu-input-wrapper > :first-child {
|
|
31680
|
+
margin-top: 0;
|
|
31497
31681
|
}
|
|
31682
|
+
}
|
|
31498
31683
|
|
|
31499
|
-
|
|
31500
|
-
|
|
31501
|
-
}
|
|
31684
|
+
.k-filter-menu.k-popup,
|
|
31685
|
+
.k-grid-filter-popup.k-popup {
|
|
31502
31686
|
|
|
31503
|
-
.k-
|
|
31504
|
-
width:
|
|
31505
|
-
display: inline-flex;
|
|
31687
|
+
.k-filter-menu-container {
|
|
31688
|
+
width: $grid-column-menu-width;
|
|
31506
31689
|
}
|
|
31507
31690
|
}
|
|
31508
31691
|
|
|
31509
|
-
.k-multicheck-wrap {
|
|
31692
|
+
.k-popup .k-multicheck-wrap {
|
|
31693
|
+
margin: 0;
|
|
31694
|
+
padding: 0;
|
|
31510
31695
|
max-height: 300px;
|
|
31696
|
+
font-size: $kendo-list-font-size;
|
|
31697
|
+
line-height: $kendo-list-line-height;
|
|
31511
31698
|
white-space: nowrap;
|
|
31512
31699
|
overflow: auto;
|
|
31700
|
+
list-style: none;
|
|
31701
|
+
|
|
31702
|
+
.k-item,
|
|
31703
|
+
.k-check-all-wrap {
|
|
31704
|
+
padding: $grid-column-menu-list-item-padding-y $grid-column-menu-list-item-padding-x;
|
|
31705
|
+
|
|
31706
|
+
> .k-checkbox-label {
|
|
31707
|
+
line-height: inherit;
|
|
31708
|
+
display: block;
|
|
31709
|
+
}
|
|
31710
|
+
}
|
|
31513
31711
|
}
|
|
31514
31712
|
|
|
31515
31713
|
.k-filter-selected-items {
|
|
@@ -31533,17 +31731,48 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
31533
31731
|
.k-detail-row {
|
|
31534
31732
|
display: none !important;
|
|
31535
31733
|
}
|
|
31536
|
-
|
|
31537
|
-
input.k-input,
|
|
31538
|
-
span.k-input,
|
|
31539
|
-
input.k-textbox {
|
|
31540
|
-
width: 0 !important;
|
|
31541
|
-
}
|
|
31542
31734
|
}
|
|
31543
31735
|
|
|
31544
31736
|
}
|
|
31545
31737
|
|
|
31546
31738
|
@include exports("columnmenu/layout") {
|
|
31739
|
+
|
|
31740
|
+
// Column menu
|
|
31741
|
+
.k-column-menu-popup,
|
|
31742
|
+
.k-grid-columnmenu-popup {
|
|
31743
|
+
width: $grid-column-menu-width;
|
|
31744
|
+
box-sizing: border-box;
|
|
31745
|
+
|
|
31746
|
+
&.k-popup {
|
|
31747
|
+
padding: $grid-column-menu-popup-padding-y $grid-column-menu-popup-padding-x;
|
|
31748
|
+
}
|
|
31749
|
+
.k-popup > & {
|
|
31750
|
+
width: 100%;
|
|
31751
|
+
}
|
|
31752
|
+
|
|
31753
|
+
.k-actions {
|
|
31754
|
+
margin: 0;
|
|
31755
|
+
}
|
|
31756
|
+
|
|
31757
|
+
}
|
|
31758
|
+
.k-column-menu {
|
|
31759
|
+
box-sizing: border-box;
|
|
31760
|
+
|
|
31761
|
+
.k-menu:not(.k-context-menu) {
|
|
31762
|
+
font-weight: 400;
|
|
31763
|
+
}
|
|
31764
|
+
|
|
31765
|
+
.k-expander {
|
|
31766
|
+
border: 0;
|
|
31767
|
+
background: inherit;
|
|
31768
|
+
|
|
31769
|
+
.k-columnmenu-item {
|
|
31770
|
+
display: flex;
|
|
31771
|
+
align-items: center;
|
|
31772
|
+
}
|
|
31773
|
+
}
|
|
31774
|
+
}
|
|
31775
|
+
|
|
31547
31776
|
.k-column-list {
|
|
31548
31777
|
padding: 0;
|
|
31549
31778
|
margin: 0;
|
|
@@ -31588,16 +31817,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
31588
31817
|
overflow: hidden;
|
|
31589
31818
|
}
|
|
31590
31819
|
|
|
31591
|
-
.k-filter-menu,
|
|
31592
|
-
.k-column-list-wrapper,
|
|
31593
|
-
.k-columnmenu-item-content {
|
|
31594
|
-
|
|
31595
|
-
.k-actions {
|
|
31596
|
-
margin-top: ($grid-filter-menu-item-spacing-y / 2);
|
|
31597
|
-
padding: $grid-filter-menu-item-spacing-y $grid-filter-menu-item-spacing-x;
|
|
31598
|
-
}
|
|
31599
|
-
}
|
|
31600
|
-
|
|
31601
31820
|
.k-column-menu-group-header {
|
|
31602
31821
|
padding: $grid-column-menu-group-header-padding-y $grid-column-menu-group-header-padding-x;
|
|
31603
31822
|
display: flex;
|
|
@@ -31616,22 +31835,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
31616
31835
|
flex: 1 1 auto;
|
|
31617
31836
|
}
|
|
31618
31837
|
|
|
31619
|
-
.k-column-menu {
|
|
31620
|
-
.k-menu:not(.k-context-menu) {
|
|
31621
|
-
font-weight: 400;
|
|
31622
|
-
}
|
|
31623
|
-
|
|
31624
|
-
.k-expander {
|
|
31625
|
-
border: 0;
|
|
31626
|
-
background: inherit;
|
|
31627
|
-
|
|
31628
|
-
.k-columnmenu-item {
|
|
31629
|
-
display: flex;
|
|
31630
|
-
align-items: center;
|
|
31631
|
-
}
|
|
31632
|
-
}
|
|
31633
|
-
}
|
|
31634
|
-
|
|
31635
31838
|
[dir="rtl"],
|
|
31636
31839
|
.k-rtl {
|
|
31637
31840
|
.k-columnmenu-item > .k-icon {
|
|
@@ -32202,7 +32405,7 @@ $listview-item-focus-shadow: inset 0 0 0 3px rgba( $listview-text, .15 ) !defaul
|
|
|
32202
32405
|
.k-listview {
|
|
32203
32406
|
margin: 0;
|
|
32204
32407
|
padding: 0;
|
|
32205
|
-
border-width:
|
|
32408
|
+
border-width: 0;
|
|
32206
32409
|
border-style: solid;
|
|
32207
32410
|
box-sizing: border-box;
|
|
32208
32411
|
outline: 0;
|
|
@@ -32222,7 +32425,6 @@ $listview-item-focus-shadow: inset 0 0 0 3px rgba( $listview-text, .15 ) !defaul
|
|
|
32222
32425
|
// Header
|
|
32223
32426
|
.k-listview-header {
|
|
32224
32427
|
border-width: 0;
|
|
32225
|
-
border-bottom-width: $listview-border-width;
|
|
32226
32428
|
border-style: solid;
|
|
32227
32429
|
border-color: inherit;
|
|
32228
32430
|
}
|
|
@@ -32231,7 +32433,7 @@ $listview-item-focus-shadow: inset 0 0 0 3px rgba( $listview-text, .15 ) !defaul
|
|
|
32231
32433
|
}
|
|
32232
32434
|
|
|
32233
32435
|
|
|
32234
|
-
// Listview
|
|
32436
|
+
// Listview content
|
|
32235
32437
|
.k-listview-content {
|
|
32236
32438
|
margin: 0;
|
|
32237
32439
|
padding: 0;
|
|
@@ -32286,7 +32488,6 @@ $listview-item-focus-shadow: inset 0 0 0 3px rgba( $listview-text, .15 ) !defaul
|
|
|
32286
32488
|
// Listview footer
|
|
32287
32489
|
.k-listview-footer {
|
|
32288
32490
|
border-width: 0;
|
|
32289
|
-
border-top-width: $listview-border-width;
|
|
32290
32491
|
border-style: solid;
|
|
32291
32492
|
border-color: inherit;
|
|
32292
32493
|
}
|
|
@@ -32298,14 +32499,9 @@ $listview-item-focus-shadow: inset 0 0 0 3px rgba( $listview-text, .15 ) !defaul
|
|
|
32298
32499
|
// Listview pager
|
|
32299
32500
|
.k-listview-pager {
|
|
32300
32501
|
border-width: 0;
|
|
32301
|
-
border-top-width: $listview-border-width;
|
|
32302
32502
|
border-color: inherit;
|
|
32303
32503
|
font: inherit;
|
|
32304
32504
|
}
|
|
32305
|
-
.k-listview-pager-top {
|
|
32306
|
-
border-top-width: 0;
|
|
32307
|
-
border-bottom-width: $listview-border-width;
|
|
32308
|
-
}
|
|
32309
32505
|
.k-listview-bordered > .k-listview-pager-top {
|
|
32310
32506
|
border-bottom-width: $listview-border-width;
|
|
32311
32507
|
}
|
|
@@ -32580,14 +32776,10 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
32580
32776
|
width: auto;
|
|
32581
32777
|
min-width: $form-line-height * 1em;
|
|
32582
32778
|
}
|
|
32583
|
-
|
|
32584
|
-
|
|
32585
|
-
|
|
32586
|
-
|
|
32587
|
-
width: 6 * $spacer;
|
|
32588
|
-
}
|
|
32589
|
-
[data-tool="format"] {
|
|
32590
|
-
width: 4 * $spacer;
|
|
32779
|
+
|
|
32780
|
+
.k-input,
|
|
32781
|
+
.k-picker:not(.k-colorpicker) {
|
|
32782
|
+
width: 5em;
|
|
32591
32783
|
}
|
|
32592
32784
|
}
|
|
32593
32785
|
|
|
@@ -32749,6 +32941,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
32749
32941
|
font-family: Arial, Verdana, Sans-serif;
|
|
32750
32942
|
flex: 1;
|
|
32751
32943
|
position: relative;
|
|
32944
|
+
overflow: hidden;
|
|
32752
32945
|
|
|
32753
32946
|
// disabled cells in the Spreadsheet should allow navigation if link is used
|
|
32754
32947
|
.k-state-disabled {
|
|
@@ -33107,33 +33300,45 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
33107
33300
|
}
|
|
33108
33301
|
|
|
33109
33302
|
// Details
|
|
33110
|
-
.k-details
|
|
33303
|
+
.k-details,
|
|
33304
|
+
.k-expander {
|
|
33111
33305
|
padding: 0;
|
|
33112
33306
|
border-width: 1px 0 0;
|
|
33113
33307
|
border-style: solid;
|
|
33114
33308
|
border-color: inherit;
|
|
33115
33309
|
}
|
|
33116
|
-
.k-
|
|
33117
|
-
|
|
33310
|
+
.k-expander {
|
|
33311
|
+
border: 0;
|
|
33312
|
+
background: inherit;
|
|
33313
|
+
}
|
|
33314
|
+
.k-details-summary,
|
|
33315
|
+
.k-columnmenu-item {
|
|
33316
|
+
padding: $kendo-menu-popup-item-padding-y-md $kendo-menu-popup-item-padding-x-md;
|
|
33317
|
+
display: flex;
|
|
33318
|
+
align-items: center;
|
|
33118
33319
|
cursor: pointer;
|
|
33119
33320
|
|
|
33120
33321
|
> .k-icon {
|
|
33121
33322
|
margin-right: $padding-y;
|
|
33122
33323
|
}
|
|
33123
33324
|
}
|
|
33124
|
-
.k-details-content
|
|
33125
|
-
|
|
33126
|
-
|
|
33127
|
-
|
|
33128
|
-
|
|
33129
|
-
|
|
33130
|
-
}
|
|
33325
|
+
.k-details-content,
|
|
33326
|
+
.k-columnmenu-item-content {
|
|
33327
|
+
padding: map-get( $spacing, 2 );
|
|
33328
|
+
display: flex;
|
|
33329
|
+
flex-flow: column nowrap;
|
|
33330
|
+
gap: map-get( $spacing, 2 );
|
|
33131
33331
|
|
|
33132
33332
|
.k-filter-and {
|
|
33133
|
-
width:
|
|
33134
|
-
|
|
33333
|
+
width: min-content;
|
|
33334
|
+
align-self: flex-start;
|
|
33135
33335
|
}
|
|
33136
33336
|
}
|
|
33337
|
+
|
|
33338
|
+
.k-actions {
|
|
33339
|
+
margin: 0;
|
|
33340
|
+
padding: 0;
|
|
33341
|
+
}
|
|
33137
33342
|
}
|
|
33138
33343
|
|
|
33139
33344
|
}
|
|
@@ -36511,6 +36716,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
36511
36716
|
}
|
|
36512
36717
|
|
|
36513
36718
|
// Toolbar
|
|
36719
|
+
.k-editor-toolbar,
|
|
36514
36720
|
.k-editor > .k-toolbar {
|
|
36515
36721
|
border-width: 0 0 $toolbar-border-width 0;
|
|
36516
36722
|
flex-shrink: 0;
|
|
@@ -36538,13 +36744,10 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
36538
36744
|
top: 0;
|
|
36539
36745
|
right: 0;
|
|
36540
36746
|
visibility: hidden;
|
|
36541
|
-
|
|
36542
|
-
|
|
36543
|
-
|
|
36544
|
-
|
|
36545
|
-
width: $toolbar-inner-calc-size;
|
|
36546
|
-
height: $toolbar-inner-calc-size;
|
|
36547
|
-
position: relative;
|
|
36747
|
+
|
|
36748
|
+
.k-overflow-anchor {
|
|
36749
|
+
position: relative;
|
|
36750
|
+
}
|
|
36548
36751
|
}
|
|
36549
36752
|
|
|
36550
36753
|
.k-editor-export {
|
|
@@ -36662,6 +36865,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
36662
36865
|
}
|
|
36663
36866
|
}
|
|
36664
36867
|
|
|
36868
|
+
|
|
36665
36869
|
// Find and replace dialog
|
|
36666
36870
|
.k-editor-find-replace {
|
|
36667
36871
|
.k-content {
|
|
@@ -36918,6 +37122,24 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
36918
37122
|
}
|
|
36919
37123
|
}
|
|
36920
37124
|
|
|
37125
|
+
// Generic widgets
|
|
37126
|
+
.k-numerictextbox {
|
|
37127
|
+
width: 10em;
|
|
37128
|
+
|
|
37129
|
+
& + .k-dropdown-list {
|
|
37130
|
+
width: 5em;
|
|
37131
|
+
}
|
|
37132
|
+
|
|
37133
|
+
& + .k-colorpicker,
|
|
37134
|
+
& + .k-dropdown-list {
|
|
37135
|
+
margin-left: map-get( $spacing, 2 );
|
|
37136
|
+
}
|
|
37137
|
+
}
|
|
37138
|
+
|
|
37139
|
+
.k-colorpicker {
|
|
37140
|
+
vertical-align: middle;
|
|
37141
|
+
}
|
|
37142
|
+
|
|
36921
37143
|
.k-edit-field > .k-checkbox {
|
|
36922
37144
|
position: relative; // fix scrolling
|
|
36923
37145
|
}
|
|
@@ -37191,6 +37413,7 @@ $imageeditor-content-border-width: 1px !default;
|
|
|
37191
37413
|
|
|
37192
37414
|
$imageeditor-action-pane-padding-y: map-get( $spacing, 8 ) !default;
|
|
37193
37415
|
$imageeditor-action-pane-padding-x: map-get( $spacing, 4 ) !default;
|
|
37416
|
+
$imageeditor-action-pane-width: if( $imageeditor-content-border-width == null, 240px, calc(240px + #{$imageeditor-content-border-width}) );
|
|
37194
37417
|
|
|
37195
37418
|
$imageeditor-crop-border-width: 1px !default;
|
|
37196
37419
|
$imageeditor-crop-border-style: dashed !default;
|
|
@@ -37273,16 +37496,16 @@ $imageeditor-crop-overlay-bg: rgba(black, .3) !default;
|
|
|
37273
37496
|
|
|
37274
37497
|
// Action Pane
|
|
37275
37498
|
.k-imageeditor-action-pane {
|
|
37499
|
+
padding: $imageeditor-action-pane-padding-y $imageeditor-action-pane-padding-x;
|
|
37500
|
+
width: $imageeditor-action-pane-width;
|
|
37276
37501
|
border-width: 0;
|
|
37277
37502
|
border-left-width: $imageeditor-content-border-width;
|
|
37278
37503
|
border-style: solid;
|
|
37279
37504
|
border-color: inherit;
|
|
37280
|
-
|
|
37505
|
+
box-sizing: border-box;
|
|
37506
|
+
flex: none;
|
|
37281
37507
|
overflow-y: auto;
|
|
37282
37508
|
}
|
|
37283
|
-
.k-imageeditor-action-pane > .k-form {
|
|
37284
|
-
padding: $imageeditor-action-pane-padding-y $imageeditor-action-pane-padding-x;
|
|
37285
|
-
}
|
|
37286
37509
|
|
|
37287
37510
|
|
|
37288
37511
|
// Crop Tool
|
|
@@ -37372,10 +37595,6 @@ $imageeditor-crop-overlay-bg: rgba(black, .3) !default;
|
|
|
37372
37595
|
flex-direction: row;
|
|
37373
37596
|
align-self: flex-start;
|
|
37374
37597
|
}
|
|
37375
|
-
|
|
37376
|
-
.k-imageeditor-action-pane {
|
|
37377
|
-
flex: 0 0 auto;
|
|
37378
|
-
}
|
|
37379
37598
|
}
|
|
37380
37599
|
|
|
37381
37600
|
}
|
|
@@ -39756,7 +39975,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
39756
39975
|
.k-widget.k-recur-month,
|
|
39757
39976
|
.k-widget.k-recur-weekday,
|
|
39758
39977
|
.k-widget.k-recur-weekday-offset {
|
|
39759
|
-
width:
|
|
39978
|
+
width: 10em;
|
|
39760
39979
|
}
|
|
39761
39980
|
|
|
39762
39981
|
}
|
|
@@ -40307,8 +40526,6 @@ $chat-message-box-text: $kendo-input-text !default;
|
|
|
40307
40526
|
$chat-message-box-border: inherit !default;
|
|
40308
40527
|
$chat-message-box-focus-shadow: 0 0 40px rgba( $kendo-input-text, .1 ) !default;
|
|
40309
40528
|
|
|
40310
|
-
$chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
40311
|
-
|
|
40312
40529
|
// #endregion
|
|
40313
40530
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/chat/_layout.scss
|
|
40314
40531
|
// #region @import "~@progress/kendo-theme-default/scss/chat/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/chat/_layout.scss
|
|
@@ -40602,6 +40819,7 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
40602
40819
|
.k-input {}
|
|
40603
40820
|
|
|
40604
40821
|
.k-button {
|
|
40822
|
+
border-width: 0;
|
|
40605
40823
|
flex-shrink: 0;
|
|
40606
40824
|
|
|
40607
40825
|
svg {
|
|
@@ -40756,9 +40974,6 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
40756
40974
|
}
|
|
40757
40975
|
|
|
40758
40976
|
.k-button {
|
|
40759
|
-
border-color: transparent;
|
|
40760
|
-
color: inherit;
|
|
40761
|
-
background: none;
|
|
40762
40977
|
flex: none;
|
|
40763
40978
|
}
|
|
40764
40979
|
|
|
@@ -40968,14 +41183,6 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
40968
41183
|
$chat-toolbar-bg,
|
|
40969
41184
|
$chat-toolbar-border
|
|
40970
41185
|
);
|
|
40971
|
-
|
|
40972
|
-
.k-scroll-button {
|
|
40973
|
-
@include fill( $bg: $chat-bg );
|
|
40974
|
-
@include box-shadow( $chat-toolbar-box-scroll-button-shadow );
|
|
40975
|
-
}
|
|
40976
|
-
.k-scroll-button:hover {
|
|
40977
|
-
@include fill( $bg: $chat-bg );
|
|
40978
|
-
}
|
|
40979
41186
|
}
|
|
40980
41187
|
|
|
40981
41188
|
}
|
|
@@ -41078,6 +41285,11 @@ $mediaplayer-titlebar-gradient: rgba( $mediaplayer-text, .7 ), rgba( $mediaplaye
|
|
|
41078
41285
|
width: 100% !important;
|
|
41079
41286
|
// sass-lint:enable no-important
|
|
41080
41287
|
box-shadow: none;
|
|
41288
|
+
|
|
41289
|
+
|
|
41290
|
+
.k-dropdown-list {
|
|
41291
|
+
width: auto;
|
|
41292
|
+
}
|
|
41081
41293
|
}
|
|
41082
41294
|
.k-mediaplayer-time-wrap {
|
|
41083
41295
|
flex: 1;
|
|
@@ -41811,11 +42023,8 @@ $pdf-viewer-page-text: $component-text !default;
|
|
|
41811
42023
|
$pdf-viewer-page-border: $component-border !default;
|
|
41812
42024
|
$pdf-viewer-page-shadow: 0 0 ($pdf-viewer-page-spacing / 2) $pdf-viewer-page-border !default;
|
|
41813
42025
|
|
|
41814
|
-
$pdf-viewer-search-dialog-
|
|
41815
|
-
$pdf-viewer-search-dialog-
|
|
41816
|
-
$pdf-viewer-search-dialog-textbox-padding-x: $kendo-input-padding-y !default;
|
|
41817
|
-
$pdf-viewer-search-dialog-input-button-height: $line-height-em !default;
|
|
41818
|
-
$pdf-viewer-search-dialog-matches-width: 4.5em !default;
|
|
42026
|
+
$pdf-viewer-search-dialog-padding: $toolbar-padding-x !default;
|
|
42027
|
+
$pdf-viewer-search-dialog-spacing: $toolbar-spacing !default;
|
|
41819
42028
|
|
|
41820
42029
|
$pdf-viewer-selection-line-height: 1.2 !default;
|
|
41821
42030
|
|
|
@@ -41912,38 +42121,45 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
41912
42121
|
|
|
41913
42122
|
// Search
|
|
41914
42123
|
.k-pdf-viewer-search-dialog {
|
|
41915
|
-
padding: $pdf-viewer-search-dialog-
|
|
42124
|
+
padding: $pdf-viewer-search-dialog-padding;
|
|
41916
42125
|
|
|
41917
42126
|
.k-search-container {
|
|
41918
42127
|
display: flex;
|
|
42128
|
+
gap: $pdf-viewer-search-dialog-spacing;
|
|
42129
|
+
flex-flow: row nowrap;
|
|
41919
42130
|
flex: 0 0 auto;
|
|
41920
42131
|
justify-content: flex-start;
|
|
41921
42132
|
align-items: center;
|
|
41922
42133
|
|
|
41923
|
-
.k-
|
|
41924
|
-
|
|
41925
|
-
|
|
41926
|
-
justify-content: center;
|
|
42134
|
+
.k-search-dialog-draghandle {
|
|
42135
|
+
cursor: move;
|
|
42136
|
+
margin-left: 0;
|
|
41927
42137
|
}
|
|
41928
42138
|
|
|
41929
|
-
.k-
|
|
41930
|
-
|
|
41931
|
-
|
|
41932
|
-
margin: 0 $pdf-viewer-search-dialog-spacing 0 $pdf-viewer-search-dialog-button-spacing;
|
|
41933
|
-
vertical-align: middle;
|
|
41934
|
-
}
|
|
42139
|
+
.k-textbox {
|
|
42140
|
+
width: 10em;
|
|
42141
|
+
flex: none;
|
|
41935
42142
|
|
|
41936
|
-
|
|
41937
|
-
|
|
42143
|
+
.k-button {
|
|
42144
|
+
border-width: 0;
|
|
42145
|
+
}
|
|
41938
42146
|
}
|
|
41939
42147
|
|
|
41940
|
-
.k-search-
|
|
41941
|
-
|
|
41942
|
-
margin-left: 0;
|
|
42148
|
+
.k-search-matches {
|
|
42149
|
+
flex: 1 1 auto;
|
|
41943
42150
|
}
|
|
41944
42151
|
}
|
|
41945
42152
|
}
|
|
41946
42153
|
|
|
42154
|
+
|
|
42155
|
+
// IE
|
|
42156
|
+
.k-ie .k-pdf-viewer-search-dialog {
|
|
42157
|
+
|
|
42158
|
+
.k-search-container > * + * {
|
|
42159
|
+
margin-left: $pdf-viewer-search-dialog-spacing;
|
|
42160
|
+
}
|
|
42161
|
+
}
|
|
42162
|
+
|
|
41947
42163
|
}
|
|
41948
42164
|
|
|
41949
42165
|
// #endregion
|
|
@@ -43444,21 +43660,38 @@ $map-marker-fill: $primary !default;
|
|
|
43444
43660
|
|
|
43445
43661
|
|
|
43446
43662
|
// Buttons
|
|
43663
|
+
.k-button {
|
|
43664
|
+
padding: 0;
|
|
43665
|
+
width: auto;
|
|
43666
|
+
height: auto;
|
|
43667
|
+
line-height: 1;
|
|
43668
|
+
box-shadow: none;
|
|
43669
|
+
position: absolute;
|
|
43670
|
+
|
|
43671
|
+
.k-icon {
|
|
43672
|
+
min-width: 0;
|
|
43673
|
+
min-height: 0;
|
|
43674
|
+
}
|
|
43675
|
+
}
|
|
43676
|
+
.k-navigator-n,
|
|
43447
43677
|
.k-navigator-up {
|
|
43448
43678
|
transform: translateX(-50%);
|
|
43449
43679
|
top: $map-navigator-padding;
|
|
43450
43680
|
left: 50%;
|
|
43451
43681
|
}
|
|
43682
|
+
.k-navigator-e,
|
|
43452
43683
|
.k-navigator-right {
|
|
43453
43684
|
transform: translateY(-50%);
|
|
43454
43685
|
right: $map-navigator-padding;
|
|
43455
43686
|
top: 50%;
|
|
43456
43687
|
}
|
|
43688
|
+
.k-navigator-s,
|
|
43457
43689
|
.k-navigator-down {
|
|
43458
43690
|
transform: translateX(-50%);
|
|
43459
43691
|
bottom: $map-navigator-padding;
|
|
43460
43692
|
left: 50%;
|
|
43461
43693
|
}
|
|
43694
|
+
.k-navigator-w,
|
|
43462
43695
|
.k-navigator-left {
|
|
43463
43696
|
transform: translateY(-50%);
|
|
43464
43697
|
left: $map-navigator-padding;
|
|
@@ -43601,10 +43834,10 @@ $orgchart-card-shadow: $card-shadow !default;
|
|
|
43601
43834
|
$orgchart-card-focus-shadow: $card-focus-shadow !default;
|
|
43602
43835
|
|
|
43603
43836
|
$orgchart-card-title-margin-bottom: 0px !default;
|
|
43604
|
-
$orgchart-card-title-font-size:
|
|
43837
|
+
$orgchart-card-title-font-size: null !default;
|
|
43605
43838
|
|
|
43606
43839
|
$orgchart-card-subtitle-margin-bottom: 0px !default;
|
|
43607
|
-
$orgchart-card-subtitle-font-size:
|
|
43840
|
+
$orgchart-card-subtitle-font-size: null !default;
|
|
43608
43841
|
|
|
43609
43842
|
$orgchart-card-body-border-width: 2px 0 0 !default;
|
|
43610
43843
|
$orgchart-card-body-border-color: transparent !default;
|