@progress/kendo-theme-material 5.11.1-dev.1 → 5.11.1-dev.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +91 -138
- package/dist/all.scss +122 -63
- package/lib/swatches/material-aqua-dark.json +1 -1
- package/lib/swatches/material-arctic.json +1 -1
- package/lib/swatches/material-burnt-teal.json +1 -1
- package/lib/swatches/material-dataviz-v4.json +1 -1
- package/lib/swatches/material-eggplant.json +1 -1
- package/lib/swatches/material-lime-dark.json +1 -1
- package/lib/swatches/material-lime.json +1 -1
- package/lib/swatches/material-main-dark.json +1 -1
- package/lib/swatches/material-main.json +1 -1
- package/lib/swatches/material-nova.json +1 -1
- package/lib/swatches/material-pacific-dark.json +1 -1
- package/lib/swatches/material-pacific.json +1 -1
- package/lib/swatches/material-sky-dark.json +1 -1
- package/lib/swatches/material-sky.json +1 -1
- package/lib/swatches/material-smoke.json +1 -1
- package/package.json +5 -5
- package/scss/_variables.scss +1 -0
- package/scss/chip/_theme.scss +53 -33
- package/scss/chip/_variables.scss +13 -10
package/dist/all.css
CHANGED
|
@@ -6874,7 +6874,8 @@ kendo-sortable {
|
|
|
6874
6874
|
display: none;
|
|
6875
6875
|
}
|
|
6876
6876
|
|
|
6877
|
-
.k-
|
|
6877
|
+
.k-icon-action {
|
|
6878
|
+
padding: 4px;
|
|
6878
6879
|
cursor: pointer;
|
|
6879
6880
|
}
|
|
6880
6881
|
|
|
@@ -15499,97 +15500,93 @@ textarea.k-input-inner {
|
|
|
15499
15500
|
}
|
|
15500
15501
|
|
|
15501
15502
|
.k-chip-solid-base {
|
|
15502
|
-
border-color:
|
|
15503
|
+
border-color: #ebebeb;
|
|
15503
15504
|
color: rgba(0, 0, 0, 0.87);
|
|
15504
|
-
background-color:
|
|
15505
|
+
background-color: #ebebeb;
|
|
15505
15506
|
}
|
|
15506
15507
|
|
|
15507
15508
|
.k-chip-solid-base:focus, .k-chip-solid-base.k-focus {
|
|
15508
|
-
background-color:
|
|
15509
|
+
background-color: #cccccc;
|
|
15509
15510
|
}
|
|
15510
15511
|
|
|
15511
15512
|
.k-chip-solid-base:hover, .k-chip-solid-base.k-hover {
|
|
15512
|
-
background-color:
|
|
15513
|
+
background-color: #d6d6d6;
|
|
15513
15514
|
}
|
|
15514
15515
|
|
|
15515
15516
|
.k-chip-solid-base.k-selected {
|
|
15516
|
-
background-color:
|
|
15517
|
+
background-color: #c2c2c2;
|
|
15517
15518
|
}
|
|
15518
15519
|
|
|
15519
15520
|
.k-chip-solid-error {
|
|
15520
|
-
border-color: #
|
|
15521
|
-
color: #
|
|
15522
|
-
background-color: #
|
|
15521
|
+
border-color: #f65140;
|
|
15522
|
+
color: #550800;
|
|
15523
|
+
background-color: #fdd1cc;
|
|
15523
15524
|
}
|
|
15524
15525
|
|
|
15525
15526
|
.k-chip-solid-error:focus, .k-chip-solid-error.k-focus {
|
|
15526
15527
|
box-shadow: 0 0 0 2px rgba(243, 23, 0, 0.16);
|
|
15527
|
-
background-color: #feeceb;
|
|
15528
15528
|
}
|
|
15529
15529
|
|
|
15530
15530
|
.k-chip-solid-error:hover, .k-chip-solid-error.k-hover {
|
|
15531
|
-
background-color: #
|
|
15531
|
+
background-color: #fbaea6;
|
|
15532
15532
|
}
|
|
15533
15533
|
|
|
15534
15534
|
.k-chip-solid-error.k-selected {
|
|
15535
|
-
background-color: #
|
|
15535
|
+
background-color: #f98b80;
|
|
15536
15536
|
}
|
|
15537
15537
|
|
|
15538
15538
|
.k-chip-solid-info {
|
|
15539
|
-
border-color: #
|
|
15540
|
-
color: #
|
|
15541
|
-
background-color: #
|
|
15539
|
+
border-color: #4082ef;
|
|
15540
|
+
color: #001f52;
|
|
15541
|
+
background-color: #ccdefb;
|
|
15542
15542
|
}
|
|
15543
15543
|
|
|
15544
15544
|
.k-chip-solid-info:focus, .k-chip-solid-info.k-focus {
|
|
15545
15545
|
box-shadow: 0 0 0 2px rgba(0, 88, 233, 0.16);
|
|
15546
|
-
background-color: #ebf2fd;
|
|
15547
15546
|
}
|
|
15548
15547
|
|
|
15549
15548
|
.k-chip-solid-info:hover, .k-chip-solid-info.k-hover {
|
|
15550
|
-
background-color: #
|
|
15549
|
+
background-color: #a6c5f7;
|
|
15551
15550
|
}
|
|
15552
15551
|
|
|
15553
15552
|
.k-chip-solid-info.k-selected {
|
|
15554
|
-
background-color: #
|
|
15553
|
+
background-color: #80acf4;
|
|
15555
15554
|
}
|
|
15556
15555
|
|
|
15557
15556
|
.k-chip-solid-warning {
|
|
15558
|
-
border-color: #
|
|
15559
|
-
color: #
|
|
15560
|
-
background-color: #
|
|
15557
|
+
border-color: #ffd040;
|
|
15558
|
+
color: #594300;
|
|
15559
|
+
background-color: #fff2cc;
|
|
15561
15560
|
}
|
|
15562
15561
|
|
|
15563
15562
|
.k-chip-solid-warning:focus, .k-chip-solid-warning.k-focus {
|
|
15564
15563
|
box-shadow: 0 0 0 2px rgba(255, 192, 0, 0.16);
|
|
15565
|
-
background-color: #fffaeb;
|
|
15566
15564
|
}
|
|
15567
15565
|
|
|
15568
15566
|
.k-chip-solid-warning:hover, .k-chip-solid-warning.k-hover {
|
|
15569
|
-
background-color: #
|
|
15567
|
+
background-color: #ffe9a6;
|
|
15570
15568
|
}
|
|
15571
15569
|
|
|
15572
15570
|
.k-chip-solid-warning.k-selected {
|
|
15573
|
-
background-color: #
|
|
15571
|
+
background-color: #ffe080;
|
|
15574
15572
|
}
|
|
15575
15573
|
|
|
15576
15574
|
.k-chip-solid-success {
|
|
15577
|
-
border-color: #
|
|
15578
|
-
color: #
|
|
15579
|
-
background-color: #
|
|
15575
|
+
border-color: #69c740;
|
|
15576
|
+
color: #133f00;
|
|
15577
|
+
background-color: #d7f0cc;
|
|
15580
15578
|
}
|
|
15581
15579
|
|
|
15582
15580
|
.k-chip-solid-success:focus, .k-chip-solid-success.k-focus {
|
|
15583
15581
|
box-shadow: 0 0 0 2px rgba(55, 180, 0, 0.16);
|
|
15584
|
-
background-color: #eff9eb;
|
|
15585
15582
|
}
|
|
15586
15583
|
|
|
15587
15584
|
.k-chip-solid-success:hover, .k-chip-solid-success.k-hover {
|
|
15588
|
-
background-color: #
|
|
15585
|
+
background-color: #b9e5a6;
|
|
15589
15586
|
}
|
|
15590
15587
|
|
|
15591
15588
|
.k-chip-solid-success.k-selected {
|
|
15592
|
-
background-color: #
|
|
15589
|
+
background-color: #9bda80;
|
|
15593
15590
|
}
|
|
15594
15591
|
|
|
15595
15592
|
.k-chip-outline-base {
|
|
@@ -15599,18 +15596,18 @@ textarea.k-input-inner {
|
|
|
15599
15596
|
}
|
|
15600
15597
|
|
|
15601
15598
|
.k-chip-outline-base:hover, .k-chip-outline-base.k-hover {
|
|
15602
|
-
color:
|
|
15603
|
-
background-color:
|
|
15599
|
+
color: black;
|
|
15600
|
+
background-color: #ebebeb;
|
|
15604
15601
|
}
|
|
15605
15602
|
|
|
15606
15603
|
.k-chip-outline-base.k-selected {
|
|
15607
|
-
color:
|
|
15608
|
-
background-color:
|
|
15604
|
+
color: black;
|
|
15605
|
+
background-color: #d6d6d6;
|
|
15609
15606
|
}
|
|
15610
15607
|
|
|
15611
15608
|
.k-chip-outline-error {
|
|
15612
|
-
border-color: #
|
|
15613
|
-
color: #
|
|
15609
|
+
border-color: #b61100;
|
|
15610
|
+
color: #b61100;
|
|
15614
15611
|
background-color: white;
|
|
15615
15612
|
}
|
|
15616
15613
|
|
|
@@ -15620,17 +15617,17 @@ textarea.k-input-inner {
|
|
|
15620
15617
|
|
|
15621
15618
|
.k-chip-outline-error:hover, .k-chip-outline-error.k-hover {
|
|
15622
15619
|
color: white;
|
|
15623
|
-
background-color: #
|
|
15620
|
+
background-color: #b61100;
|
|
15624
15621
|
}
|
|
15625
15622
|
|
|
15626
15623
|
.k-chip-outline-error.k-selected {
|
|
15627
15624
|
color: white;
|
|
15628
|
-
background-color: #
|
|
15625
|
+
background-color: #b61100;
|
|
15629
15626
|
}
|
|
15630
15627
|
|
|
15631
15628
|
.k-chip-outline-info {
|
|
15632
|
-
border-color: #
|
|
15633
|
-
color: #
|
|
15629
|
+
border-color: #0042af;
|
|
15630
|
+
color: #0042af;
|
|
15634
15631
|
background-color: white;
|
|
15635
15632
|
}
|
|
15636
15633
|
|
|
@@ -15640,17 +15637,17 @@ textarea.k-input-inner {
|
|
|
15640
15637
|
|
|
15641
15638
|
.k-chip-outline-info:hover, .k-chip-outline-info.k-hover {
|
|
15642
15639
|
color: white;
|
|
15643
|
-
background-color: #
|
|
15640
|
+
background-color: #0042af;
|
|
15644
15641
|
}
|
|
15645
15642
|
|
|
15646
15643
|
.k-chip-outline-info.k-selected {
|
|
15647
15644
|
color: white;
|
|
15648
|
-
background-color: #
|
|
15645
|
+
background-color: #0042af;
|
|
15649
15646
|
}
|
|
15650
15647
|
|
|
15651
15648
|
.k-chip-outline-warning {
|
|
15652
15649
|
border-color: #ffc000;
|
|
15653
|
-
color:
|
|
15650
|
+
color: rgba(0, 0, 0, 0.87);
|
|
15654
15651
|
background-color: white;
|
|
15655
15652
|
}
|
|
15656
15653
|
|
|
@@ -15659,18 +15656,18 @@ textarea.k-input-inner {
|
|
|
15659
15656
|
}
|
|
15660
15657
|
|
|
15661
15658
|
.k-chip-outline-warning:hover, .k-chip-outline-warning.k-hover {
|
|
15662
|
-
color:
|
|
15659
|
+
color: #332600;
|
|
15663
15660
|
background-color: #ffc000;
|
|
15664
15661
|
}
|
|
15665
15662
|
|
|
15666
15663
|
.k-chip-outline-warning.k-selected {
|
|
15667
|
-
color:
|
|
15664
|
+
color: #332600;
|
|
15668
15665
|
background-color: #ffc000;
|
|
15669
15666
|
}
|
|
15670
15667
|
|
|
15671
15668
|
.k-chip-outline-success {
|
|
15672
|
-
border-color: #
|
|
15673
|
-
color: #
|
|
15669
|
+
border-color: #298700;
|
|
15670
|
+
color: #298700;
|
|
15674
15671
|
background-color: white;
|
|
15675
15672
|
}
|
|
15676
15673
|
|
|
@@ -15680,171 +15677,117 @@ textarea.k-input-inner {
|
|
|
15680
15677
|
|
|
15681
15678
|
.k-chip-outline-success:hover, .k-chip-outline-success.k-hover {
|
|
15682
15679
|
color: white;
|
|
15683
|
-
background-color: #
|
|
15680
|
+
background-color: #298700;
|
|
15684
15681
|
}
|
|
15685
15682
|
|
|
15686
15683
|
.k-chip-outline-success.k-selected {
|
|
15687
15684
|
color: white;
|
|
15688
|
-
background-color: #
|
|
15685
|
+
background-color: #298700;
|
|
15689
15686
|
}
|
|
15690
15687
|
|
|
15691
15688
|
.k-chip-solid {
|
|
15692
15689
|
border-color: transparent;
|
|
15693
15690
|
}
|
|
15694
15691
|
|
|
15695
|
-
.k-chip-solid-base:hover, .k-chip-solid-base.k-hover {
|
|
15696
|
-
color: rgba(0, 0, 0, 0.87);
|
|
15697
|
-
background-color: rgba(0, 0, 0, 0.16);
|
|
15698
|
-
}
|
|
15699
|
-
|
|
15700
15692
|
.k-chip-solid-base:focus, .k-chip-solid-base.k-focus {
|
|
15701
15693
|
box-shadow: none;
|
|
15702
|
-
color: rgba(0, 0, 0, 0.87);
|
|
15703
|
-
background-color: rgba(0, 0, 0, 0.24);
|
|
15704
|
-
}
|
|
15705
|
-
|
|
15706
|
-
.k-chip-solid-base.k-selected {
|
|
15707
|
-
color: rgba(0, 0, 0, 0.87);
|
|
15708
|
-
background-color: rgba(0, 0, 0, 0.24);
|
|
15709
|
-
}
|
|
15710
|
-
|
|
15711
|
-
.k-chip-solid-error:hover, .k-chip-solid-error.k-hover {
|
|
15712
|
-
color: #f31700;
|
|
15713
|
-
background-color: rgba(243, 23, 0, 0.16);
|
|
15714
15694
|
}
|
|
15715
15695
|
|
|
15716
15696
|
.k-chip-solid-error:focus, .k-chip-solid-error.k-focus {
|
|
15717
15697
|
box-shadow: none;
|
|
15718
|
-
color: #f31700;
|
|
15719
|
-
background-color: rgba(243, 23, 0, 0.24);
|
|
15720
|
-
}
|
|
15721
|
-
|
|
15722
|
-
.k-chip-solid-error.k-selected {
|
|
15723
|
-
color: #f31700;
|
|
15724
|
-
background-color: rgba(243, 23, 0, 0.24);
|
|
15725
|
-
}
|
|
15726
|
-
|
|
15727
|
-
.k-chip-solid-info:hover, .k-chip-solid-info.k-hover {
|
|
15728
|
-
color: #0058e9;
|
|
15729
|
-
background-color: rgba(0, 88, 233, 0.16);
|
|
15730
15698
|
}
|
|
15731
15699
|
|
|
15732
15700
|
.k-chip-solid-info:focus, .k-chip-solid-info.k-focus {
|
|
15733
15701
|
box-shadow: none;
|
|
15734
|
-
color: #0058e9;
|
|
15735
|
-
background-color: rgba(0, 88, 233, 0.24);
|
|
15736
|
-
}
|
|
15737
|
-
|
|
15738
|
-
.k-chip-solid-info.k-selected {
|
|
15739
|
-
color: #0058e9;
|
|
15740
|
-
background-color: rgba(0, 88, 233, 0.24);
|
|
15741
|
-
}
|
|
15742
|
-
|
|
15743
|
-
.k-chip-solid-warning:hover, .k-chip-solid-warning.k-hover {
|
|
15744
|
-
color: #ffc000;
|
|
15745
|
-
background-color: rgba(255, 192, 0, 0.16);
|
|
15746
15702
|
}
|
|
15747
15703
|
|
|
15748
15704
|
.k-chip-solid-warning:focus, .k-chip-solid-warning.k-focus {
|
|
15749
15705
|
box-shadow: none;
|
|
15750
|
-
color: #ffc000;
|
|
15751
|
-
background-color: rgba(255, 192, 0, 0.24);
|
|
15752
|
-
}
|
|
15753
|
-
|
|
15754
|
-
.k-chip-solid-warning.k-selected {
|
|
15755
|
-
color: #ffc000;
|
|
15756
|
-
background-color: rgba(255, 192, 0, 0.24);
|
|
15757
|
-
}
|
|
15758
|
-
|
|
15759
|
-
.k-chip-solid-success:hover, .k-chip-solid-success.k-hover {
|
|
15760
|
-
color: #37b400;
|
|
15761
|
-
background-color: rgba(55, 180, 0, 0.16);
|
|
15762
15706
|
}
|
|
15763
15707
|
|
|
15764
15708
|
.k-chip-solid-success:focus, .k-chip-solid-success.k-focus {
|
|
15765
15709
|
box-shadow: none;
|
|
15766
|
-
color: #37b400;
|
|
15767
|
-
background-color: rgba(55, 180, 0, 0.24);
|
|
15768
|
-
}
|
|
15769
|
-
|
|
15770
|
-
.k-chip-solid-success.k-selected {
|
|
15771
|
-
color: #37b400;
|
|
15772
|
-
background-color: rgba(55, 180, 0, 0.24);
|
|
15773
15710
|
}
|
|
15774
15711
|
|
|
15775
15712
|
.k-chip-outline-base:focus, .k-chip-outline-base.k-focus {
|
|
15776
15713
|
box-shadow: none;
|
|
15777
|
-
background-color:
|
|
15778
|
-
}
|
|
15779
|
-
|
|
15780
|
-
.k-chip-outline-base:hover, .k-chip-outline-base.k-hover {
|
|
15781
|
-
color: rgba(0, 0, 0, 0.87);
|
|
15782
|
-
background-color: rgba(0, 0, 0, 0.08);
|
|
15714
|
+
background-color: #e0e0e0;
|
|
15783
15715
|
}
|
|
15784
15716
|
|
|
15785
|
-
.k-chip-outline-
|
|
15786
|
-
color:
|
|
15787
|
-
background-color: rgba(0, 0, 0, 0.24);
|
|
15717
|
+
.k-chip-outline-error {
|
|
15718
|
+
color: #7a0c00;
|
|
15788
15719
|
}
|
|
15789
15720
|
|
|
15790
15721
|
.k-chip-outline-error:focus, .k-chip-outline-error.k-focus {
|
|
15791
15722
|
box-shadow: none;
|
|
15792
|
-
background-color:
|
|
15723
|
+
background-color: #fbaea6;
|
|
15793
15724
|
}
|
|
15794
15725
|
|
|
15795
15726
|
.k-chip-outline-error:hover, .k-chip-outline-error.k-hover {
|
|
15796
|
-
color: #
|
|
15797
|
-
background-color:
|
|
15727
|
+
color: #7a0c00;
|
|
15728
|
+
background-color: #fdd1cc;
|
|
15798
15729
|
}
|
|
15799
15730
|
|
|
15800
15731
|
.k-chip-outline-error.k-selected {
|
|
15801
|
-
color: #
|
|
15802
|
-
background-color:
|
|
15732
|
+
color: #7a0c00;
|
|
15733
|
+
background-color: #fbaea6;
|
|
15734
|
+
}
|
|
15735
|
+
|
|
15736
|
+
.k-chip-outline-info {
|
|
15737
|
+
color: #002c75;
|
|
15803
15738
|
}
|
|
15804
15739
|
|
|
15805
15740
|
.k-chip-outline-info:focus, .k-chip-outline-info.k-focus {
|
|
15806
15741
|
box-shadow: none;
|
|
15807
|
-
background-color:
|
|
15742
|
+
background-color: #a6c5f7;
|
|
15808
15743
|
}
|
|
15809
15744
|
|
|
15810
15745
|
.k-chip-outline-info:hover, .k-chip-outline-info.k-hover {
|
|
15811
|
-
color: #
|
|
15812
|
-
background-color:
|
|
15746
|
+
color: #002c75;
|
|
15747
|
+
background-color: #ccdefb;
|
|
15813
15748
|
}
|
|
15814
15749
|
|
|
15815
15750
|
.k-chip-outline-info.k-selected {
|
|
15816
|
-
color: #
|
|
15817
|
-
background-color:
|
|
15751
|
+
color: #002c75;
|
|
15752
|
+
background-color: #a6c5f7;
|
|
15753
|
+
}
|
|
15754
|
+
|
|
15755
|
+
.k-chip-outline-warning {
|
|
15756
|
+
color: rgba(0, 0, 0, 0.87);
|
|
15818
15757
|
}
|
|
15819
15758
|
|
|
15820
15759
|
.k-chip-outline-warning:focus, .k-chip-outline-warning.k-focus {
|
|
15821
15760
|
box-shadow: none;
|
|
15822
|
-
background-color:
|
|
15761
|
+
background-color: #ffe9a6;
|
|
15823
15762
|
}
|
|
15824
15763
|
|
|
15825
15764
|
.k-chip-outline-warning:hover, .k-chip-outline-warning.k-hover {
|
|
15826
|
-
color:
|
|
15827
|
-
background-color:
|
|
15765
|
+
color: rgba(0, 0, 0, 0.87);
|
|
15766
|
+
background-color: #fff2cc;
|
|
15828
15767
|
}
|
|
15829
15768
|
|
|
15830
15769
|
.k-chip-outline-warning.k-selected {
|
|
15831
|
-
color:
|
|
15832
|
-
background-color:
|
|
15770
|
+
color: rgba(0, 0, 0, 0.87);
|
|
15771
|
+
background-color: #ffe9a6;
|
|
15772
|
+
}
|
|
15773
|
+
|
|
15774
|
+
.k-chip-outline-success {
|
|
15775
|
+
color: #1c5a00;
|
|
15833
15776
|
}
|
|
15834
15777
|
|
|
15835
15778
|
.k-chip-outline-success:focus, .k-chip-outline-success.k-focus {
|
|
15836
15779
|
box-shadow: none;
|
|
15837
|
-
background-color:
|
|
15780
|
+
background-color: #b9e5a6;
|
|
15838
15781
|
}
|
|
15839
15782
|
|
|
15840
15783
|
.k-chip-outline-success:hover, .k-chip-outline-success.k-hover {
|
|
15841
|
-
color: #
|
|
15842
|
-
background-color:
|
|
15784
|
+
color: #1c5a00;
|
|
15785
|
+
background-color: #d7f0cc;
|
|
15843
15786
|
}
|
|
15844
15787
|
|
|
15845
15788
|
.k-chip-outline-success.k-selected {
|
|
15846
|
-
color: #
|
|
15847
|
-
background-color:
|
|
15789
|
+
color: #1c5a00;
|
|
15790
|
+
background-color: #b9e5a6;
|
|
15848
15791
|
}
|
|
15849
15792
|
|
|
15850
15793
|
.k-color-preview {
|
|
@@ -24343,6 +24286,7 @@ kendo-card-footer {
|
|
|
24343
24286
|
.k-popover-inner {
|
|
24344
24287
|
position: relative;
|
|
24345
24288
|
border-radius: inherit;
|
|
24289
|
+
height: inherit;
|
|
24346
24290
|
}
|
|
24347
24291
|
|
|
24348
24292
|
.k-popover-header {
|
|
@@ -34726,6 +34670,11 @@ kendo-scheduler.k-scheduler.k-readonly-scheduler .k-event-delete {
|
|
|
34726
34670
|
vertical-align: top;
|
|
34727
34671
|
}
|
|
34728
34672
|
|
|
34673
|
+
.k-scheduler-layout td.k-selected,
|
|
34674
|
+
.k-scheduler-layout .k-scheduler-cell.k-selected {
|
|
34675
|
+
outline: none;
|
|
34676
|
+
}
|
|
34677
|
+
|
|
34729
34678
|
.k-scheduler-layout tr + tr .k-scheduler-times tr th,
|
|
34730
34679
|
.k-scheduler-layout .k-scheduler-pane + .k-scheduler-pane .k-scheduler-times tr th {
|
|
34731
34680
|
border-bottom-color: transparent;
|
|
@@ -34815,6 +34764,10 @@ kendo-scheduler.k-scheduler.k-readonly-scheduler .k-event-delete {
|
|
|
34815
34764
|
overflow: auto;
|
|
34816
34765
|
}
|
|
34817
34766
|
|
|
34767
|
+
.k-scheduler-content:focus {
|
|
34768
|
+
outline: none;
|
|
34769
|
+
}
|
|
34770
|
+
|
|
34818
34771
|
kendo-scheduler .k-event,
|
|
34819
34772
|
.k-event {
|
|
34820
34773
|
border-radius: 4px;
|
package/dist/all.scss
CHANGED
|
@@ -2610,6 +2610,7 @@ $box-shadow-depth-5: 0 11px 15px -7px rgba( $elevation, .2 ), 0 24px 38px 3px rg
|
|
|
2610
2610
|
$icon-size: 16px !default;
|
|
2611
2611
|
$icon-size-lg: 32px !default;
|
|
2612
2612
|
$icon-spacing: k-map-get( $spacing, 2 ) !default;
|
|
2613
|
+
$icon-padding: k-map-get( $spacing, 1 ) !default;
|
|
2613
2614
|
|
|
2614
2615
|
/// The URL to the icon font that will be used by the theme
|
|
2615
2616
|
/// The default value of `null` embeds the package font with a `data:` URL
|
|
@@ -6591,11 +6592,9 @@ $utils-border-radius: (
|
|
|
6591
6592
|
display: none;
|
|
6592
6593
|
}
|
|
6593
6594
|
|
|
6594
|
-
.k-
|
|
6595
|
-
|
|
6596
|
-
|
|
6597
|
-
cursor: pointer;
|
|
6598
|
-
}
|
|
6595
|
+
.k-icon-action {
|
|
6596
|
+
padding: $icon-padding;
|
|
6597
|
+
cursor: pointer;
|
|
6599
6598
|
}
|
|
6600
6599
|
|
|
6601
6600
|
.k-icon-xs { font-size: ( $icon-size * .5 ); }
|
|
@@ -13478,7 +13477,7 @@ $kendo-chip-sizes: (
|
|
|
13478
13477
|
|
|
13479
13478
|
/// The base background of the chip.
|
|
13480
13479
|
/// @group chip
|
|
13481
|
-
$kendo-chip-base-bg: $
|
|
13480
|
+
$kendo-chip-base-bg: if( $dark-theme, $white, $black) !default;
|
|
13482
13481
|
|
|
13483
13482
|
/// Theme colors map for the chip.
|
|
13484
13483
|
/// @group chip
|
|
@@ -13492,20 +13491,23 @@ $kendo-chip-theme-colors: (
|
|
|
13492
13491
|
|
|
13493
13492
|
/// The base background color of solid chip.
|
|
13494
13493
|
/// @group chip
|
|
13495
|
-
$kendo-chip-solid-bg: k-try-tint( $kendo-chip-base-bg,
|
|
13494
|
+
$kendo-chip-solid-bg: if( $dark-theme, $kendo-button-bg, k-try-tint( $kendo-chip-base-bg, 92% )) !default;
|
|
13496
13495
|
/// The base text color of solid chip.
|
|
13497
13496
|
/// @group chip
|
|
13498
|
-
$kendo-chip-solid-text: $kendo-
|
|
13497
|
+
$kendo-chip-solid-text: $kendo-button-text !default;
|
|
13499
13498
|
/// The base border color of solid chip.
|
|
13500
13499
|
/// @group chip
|
|
13501
|
-
$kendo-chip-solid-border:
|
|
13500
|
+
$kendo-chip-solid-border: $kendo-chip-solid-bg !default;
|
|
13502
13501
|
/// The base shadow of solid chip.
|
|
13503
13502
|
/// @group chip
|
|
13504
13503
|
$kendo-chip-solid-shadow: null !default;
|
|
13504
|
+
/// The base gradient of solid chip.
|
|
13505
|
+
/// @group chip
|
|
13506
|
+
$kendo-chip-solid-gradient: $kendo-button-gradient !default;
|
|
13505
13507
|
|
|
13506
13508
|
/// The base background color of focused solid chip.
|
|
13507
13509
|
/// @group chip
|
|
13508
|
-
$kendo-chip-solid-focus-bg: k-try-tint( $kendo-chip-base-bg,
|
|
13510
|
+
$kendo-chip-solid-focus-bg: k-try-tint( $kendo-chip-base-bg, 80% ) !default;
|
|
13509
13511
|
/// The base text color of focused solid chip.
|
|
13510
13512
|
/// @group chip
|
|
13511
13513
|
$kendo-chip-solid-focus-text: null !default;
|
|
@@ -13529,24 +13531,24 @@ $kendo-chip-solid-selected-text: null !default;
|
|
|
13529
13531
|
$kendo-chip-outline-bg: $component-bg !default;
|
|
13530
13532
|
/// The base text color of outline chip.
|
|
13531
13533
|
/// @group chip
|
|
13532
|
-
$kendo-chip-outline-text: $kendo-chip-
|
|
13534
|
+
$kendo-chip-outline-text: $kendo-chip-solid-text !default;
|
|
13533
13535
|
/// The base border color of outline chip.
|
|
13534
13536
|
/// @group chip
|
|
13535
|
-
$kendo-chip-outline-border: $kendo-chip-
|
|
13537
|
+
$kendo-chip-outline-border: $kendo-chip-outline-text !default;
|
|
13536
13538
|
/// The base shadow of outline chip.
|
|
13537
13539
|
/// @group chip
|
|
13538
13540
|
$kendo-chip-outline-shadow: null !default;
|
|
13539
13541
|
|
|
13540
13542
|
/// The base background color of hovered outline chip.
|
|
13541
13543
|
/// @group chip
|
|
13542
|
-
$kendo-chip-outline-hover-bg: $kendo-chip-base-bg !default;
|
|
13544
|
+
$kendo-chip-outline-hover-bg: k-try-tint( $kendo-chip-base-bg, 92% ) !default;
|
|
13543
13545
|
/// The base text color of hovered outline chip.
|
|
13544
13546
|
/// @group chip
|
|
13545
|
-
$kendo-chip-outline-hover-text: k-contrast-color( $kendo-chip-
|
|
13547
|
+
$kendo-chip-outline-hover-text: k-contrast-color( $kendo-chip-outline-hover-bg ) !default;
|
|
13546
13548
|
|
|
13547
13549
|
/// The base background color of selected outline chip.
|
|
13548
13550
|
/// @group chip
|
|
13549
|
-
$kendo-chip-outline-selected-bg: $kendo-chip-
|
|
13551
|
+
$kendo-chip-outline-selected-bg: k-try-tint( $kendo-chip-base-bg, 84% ) !default;
|
|
13550
13552
|
/// The base text color of selected outline chip.
|
|
13551
13553
|
/// @group chip
|
|
13552
13554
|
$kendo-chip-outline-selected-text: $kendo-chip-outline-hover-text !default;
|
|
@@ -13753,7 +13755,8 @@ $kendo-chip-list-sizes: (
|
|
|
13753
13755
|
@include fill(
|
|
13754
13756
|
$kendo-chip-solid-text,
|
|
13755
13757
|
$kendo-chip-solid-bg,
|
|
13756
|
-
$kendo-chip-solid-border
|
|
13758
|
+
$kendo-chip-solid-border,
|
|
13759
|
+
$kendo-chip-solid-gradient
|
|
13757
13760
|
);
|
|
13758
13761
|
|
|
13759
13762
|
&:focus,
|
|
@@ -13772,24 +13775,24 @@ $kendo-chip-list-sizes: (
|
|
|
13772
13775
|
}
|
|
13773
13776
|
} @else {
|
|
13774
13777
|
@include fill(
|
|
13775
|
-
$color,
|
|
13776
|
-
try-tint( $color,
|
|
13777
|
-
try-tint( $color,
|
|
13778
|
+
try-shade( $color, 65% ),
|
|
13779
|
+
try-tint( $color, 80% ),
|
|
13780
|
+
try-tint( $color, 25% ),
|
|
13781
|
+
$kendo-chip-solid-gradient
|
|
13778
13782
|
);
|
|
13779
13783
|
|
|
13780
13784
|
&:focus,
|
|
13781
13785
|
&.k-focus {
|
|
13782
13786
|
@include box-shadow( 0 0 0 2px rgba( $color, .16 ) );
|
|
13783
|
-
@include fill( $bg: try-tint( $color, 92% ) );
|
|
13784
13787
|
}
|
|
13785
13788
|
|
|
13786
13789
|
&:hover,
|
|
13787
13790
|
&.k-hover {
|
|
13788
|
-
@include fill( $bg: try-tint($color,
|
|
13791
|
+
@include fill( $bg: try-tint($color, 65% ) );
|
|
13789
13792
|
}
|
|
13790
13793
|
|
|
13791
13794
|
&.k-selected {
|
|
13792
|
-
@include fill( $bg: try-tint( $color,
|
|
13795
|
+
@include fill( $bg: try-tint( $color, 50% ) );
|
|
13793
13796
|
}
|
|
13794
13797
|
}
|
|
13795
13798
|
}
|
|
@@ -13825,30 +13828,56 @@ $kendo-chip-list-sizes: (
|
|
|
13825
13828
|
$bg: $kendo-chip-outline-selected-bg
|
|
13826
13829
|
);
|
|
13827
13830
|
}
|
|
13831
|
+
} @else if ($name == "warning") {
|
|
13832
|
+
@include fill(
|
|
13833
|
+
if( $dark-theme, tint($color, 25%), $kendo-chip-outline-text),
|
|
13834
|
+
if( $dark-theme, $black, $white ),
|
|
13835
|
+
if( $dark-theme, tint($color, 25%), $color)
|
|
13836
|
+
);
|
|
13837
|
+
|
|
13838
|
+
&:focus,
|
|
13839
|
+
&.k-focus {
|
|
13840
|
+
@include box-shadow( 0 0 0 2px if( $dark-theme, rgba( tint( $color, 50% ), .32 ), rgba( $color, .16 )) );
|
|
13841
|
+
}
|
|
13842
|
+
|
|
13843
|
+
&:hover,
|
|
13844
|
+
&.k-hover {
|
|
13845
|
+
@include fill(
|
|
13846
|
+
$color: if( $dark-theme, contrast-wcag( $color ), try-shade( $color, 80% ) ) ,
|
|
13847
|
+
$bg: if( $dark-theme, tint($color, 25%), $color)
|
|
13848
|
+
);
|
|
13849
|
+
}
|
|
13850
|
+
|
|
13851
|
+
&.k-selected {
|
|
13852
|
+
@include fill(
|
|
13853
|
+
$color: if( $dark-theme, contrast-wcag( $color ), try-shade( $color, 80% ) ) ,
|
|
13854
|
+
$bg: if( $dark-theme, tint($color, 25%), $color)
|
|
13855
|
+
);
|
|
13856
|
+
}
|
|
13828
13857
|
} @else {
|
|
13829
13858
|
@include fill(
|
|
13830
|
-
$color,
|
|
13831
|
-
$white,
|
|
13832
|
-
$color
|
|
13859
|
+
try-shade( $color, 25% ),
|
|
13860
|
+
if( $dark-theme, $black, $white ),
|
|
13861
|
+
try-shade( $color, 25% )
|
|
13833
13862
|
);
|
|
13834
13863
|
|
|
13835
13864
|
&:focus,
|
|
13836
13865
|
&.k-focus {
|
|
13837
|
-
@include box-shadow( 0 0 0 2px rgba( $color, .16 ) );
|
|
13866
|
+
@include box-shadow( 0 0 0 2px if( $dark-theme, rgba( tint( $color, 50% ), .32 ), rgba( $color, .16 )) );
|
|
13838
13867
|
}
|
|
13839
13868
|
|
|
13840
13869
|
&:hover,
|
|
13841
13870
|
&.k-hover {
|
|
13842
13871
|
@include fill(
|
|
13843
|
-
$color: contrast-wcag( $color ),
|
|
13844
|
-
$bg: $color
|
|
13872
|
+
$color: contrast-wcag( try-shade( $color, 25% ) ),
|
|
13873
|
+
$bg: try-shade( $color, 25% )
|
|
13845
13874
|
);
|
|
13846
13875
|
}
|
|
13847
13876
|
|
|
13848
13877
|
&.k-selected {
|
|
13849
13878
|
@include fill(
|
|
13850
|
-
$color: contrast-wcag( $color ),
|
|
13851
|
-
$bg: $color
|
|
13879
|
+
$color: contrast-wcag( try-shade( $color, 25% ) ),
|
|
13880
|
+
$bg: try-shade( $color, 25% )
|
|
13852
13881
|
);
|
|
13853
13882
|
}
|
|
13854
13883
|
}
|
|
@@ -13865,30 +13894,13 @@ $kendo-chip-list-sizes: (
|
|
|
13865
13894
|
.k-chip-solid {
|
|
13866
13895
|
border-color: transparent;
|
|
13867
13896
|
}
|
|
13897
|
+
|
|
13898
|
+
// Solid
|
|
13868
13899
|
@each $name, $color in $kendo-chip-theme-colors {
|
|
13869
13900
|
.k-chip-solid-#{$name} {
|
|
13870
|
-
&:hover,
|
|
13871
|
-
&.k-hover {
|
|
13872
|
-
@include fill(
|
|
13873
|
-
$bg: rgba( $color, .16 ),
|
|
13874
|
-
$color: $color
|
|
13875
|
-
);
|
|
13876
|
-
}
|
|
13877
|
-
|
|
13878
13901
|
&:focus,
|
|
13879
13902
|
&.k-focus {
|
|
13880
13903
|
@include box-shadow( none );
|
|
13881
|
-
@include fill(
|
|
13882
|
-
$bg: rgba( $color, .24),
|
|
13883
|
-
$color: $color
|
|
13884
|
-
);
|
|
13885
|
-
}
|
|
13886
|
-
|
|
13887
|
-
&.k-selected {
|
|
13888
|
-
@include fill(
|
|
13889
|
-
$bg: rgba( $color, .24 ),
|
|
13890
|
-
$color: $color
|
|
13891
|
-
);
|
|
13892
13904
|
}
|
|
13893
13905
|
}
|
|
13894
13906
|
}
|
|
@@ -13896,25 +13908,62 @@ $kendo-chip-list-sizes: (
|
|
|
13896
13908
|
// Outline
|
|
13897
13909
|
@each $name, $color in $kendo-chip-theme-colors {
|
|
13898
13910
|
.k-chip-outline-#{$name} {
|
|
13899
|
-
|
|
13900
|
-
|
|
13901
|
-
|
|
13902
|
-
|
|
13903
|
-
|
|
13904
|
-
|
|
13905
|
-
|
|
13906
|
-
&.k-hover {
|
|
13911
|
+
@if ($name == "base") {
|
|
13912
|
+
&:focus,
|
|
13913
|
+
&.k-focus {
|
|
13914
|
+
@include box-shadow( none );
|
|
13915
|
+
@include fill( $bg: k-try-tint( $color, 88% ) );
|
|
13916
|
+
}
|
|
13917
|
+
} @else if($name == "warning") {
|
|
13907
13918
|
@include fill(
|
|
13908
|
-
$
|
|
13909
|
-
$color: $color
|
|
13919
|
+
$color: if( $dark-theme, k-try-shade( $color, 50% ), $kendo-chip-outline-text)
|
|
13910
13920
|
);
|
|
13911
|
-
}
|
|
13912
13921
|
|
|
13913
|
-
|
|
13922
|
+
&:focus,
|
|
13923
|
+
&.k-focus {
|
|
13924
|
+
@include box-shadow( none );
|
|
13925
|
+
@include fill( $bg: k-try-tint( $color, 65% ) );
|
|
13926
|
+
}
|
|
13927
|
+
|
|
13928
|
+
&:hover,
|
|
13929
|
+
&.k-hover {
|
|
13930
|
+
@include fill(
|
|
13931
|
+
$bg: k-try-tint( $color, 80% ),
|
|
13932
|
+
$color: if( $dark-theme, k-try-shade( $color, 50% ), $kendo-chip-outline-text)
|
|
13933
|
+
);
|
|
13934
|
+
}
|
|
13935
|
+
|
|
13936
|
+
&.k-selected {
|
|
13937
|
+
@include fill(
|
|
13938
|
+
$bg: k-try-tint( $color, 65% ),
|
|
13939
|
+
$color: if( $dark-theme, k-try-shade( $color, 50% ), $kendo-chip-outline-text)
|
|
13940
|
+
);
|
|
13941
|
+
}
|
|
13942
|
+
} @else {
|
|
13914
13943
|
@include fill(
|
|
13915
|
-
$
|
|
13916
|
-
$color: $color
|
|
13944
|
+
$color: k-try-shade( $color, 50% )
|
|
13917
13945
|
);
|
|
13946
|
+
|
|
13947
|
+
&:focus,
|
|
13948
|
+
&.k-focus {
|
|
13949
|
+
@include box-shadow( none );
|
|
13950
|
+
@include fill( $bg: k-try-tint( $color, 65% ) );
|
|
13951
|
+
}
|
|
13952
|
+
|
|
13953
|
+
&:hover,
|
|
13954
|
+
&.k-hover {
|
|
13955
|
+
@include fill(
|
|
13956
|
+
$bg: k-try-tint( $color, 80% ),
|
|
13957
|
+
$color: k-try-shade( $color, 50% )
|
|
13958
|
+
);
|
|
13959
|
+
}
|
|
13960
|
+
|
|
13961
|
+
&.k-selected {
|
|
13962
|
+
@include fill(
|
|
13963
|
+
$bg: k-try-tint( $color, 65% ),
|
|
13964
|
+
$color: k-try-shade( $color, 50% )
|
|
13965
|
+
);
|
|
13966
|
+
}
|
|
13918
13967
|
}
|
|
13919
13968
|
}
|
|
13920
13969
|
}
|
|
@@ -27412,6 +27461,7 @@ $popover-callout-border: $popover-border !default;
|
|
|
27412
27461
|
.k-popover-inner {
|
|
27413
27462
|
position: relative;
|
|
27414
27463
|
border-radius: inherit;
|
|
27464
|
+
height: inherit;
|
|
27415
27465
|
}
|
|
27416
27466
|
|
|
27417
27467
|
// Header
|
|
@@ -41545,6 +41595,11 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41545
41595
|
vertical-align: top;
|
|
41546
41596
|
}
|
|
41547
41597
|
|
|
41598
|
+
td.k-selected,
|
|
41599
|
+
.k-scheduler-cell.k-selected {
|
|
41600
|
+
outline: none;
|
|
41601
|
+
}
|
|
41602
|
+
|
|
41548
41603
|
// Remove bottom border from first cell of hours cells spaning on two rows
|
|
41549
41604
|
tr + tr,
|
|
41550
41605
|
.k-scheduler-pane + .k-scheduler-pane {
|
|
@@ -41634,6 +41689,10 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41634
41689
|
border-color: inherit;
|
|
41635
41690
|
position: relative;
|
|
41636
41691
|
overflow: auto;
|
|
41692
|
+
|
|
41693
|
+
&:focus {
|
|
41694
|
+
outline: none;
|
|
41695
|
+
}
|
|
41637
41696
|
}
|
|
41638
41697
|
|
|
41639
41698
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-material",
|
|
3
3
|
"description": "Material theme for Kendo UI",
|
|
4
|
-
"version": "5.11.1-dev.
|
|
4
|
+
"version": "5.11.1-dev.2",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -47,12 +47,12 @@
|
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@progress/kendo-font-icons": "^0.6.0",
|
|
50
|
-
"@progress/kendo-theme-core": "^5.11.1-dev.
|
|
51
|
-
"@progress/kendo-theme-default": "^5.11.1-dev.
|
|
52
|
-
"@progress/kendo-theme-utils": "^5.11.1-dev.
|
|
50
|
+
"@progress/kendo-theme-core": "^5.11.1-dev.2",
|
|
51
|
+
"@progress/kendo-theme-default": "^5.11.1-dev.2",
|
|
52
|
+
"@progress/kendo-theme-utils": "^5.11.1-dev.2"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"sass-build": "^1.1.0"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "1abe5dc353ef37c2ad5ee6177c8fb1e3894956d6"
|
|
58
58
|
}
|
package/scss/_variables.scss
CHANGED
|
@@ -109,6 +109,7 @@ $box-shadow-depth-5: 0 11px 15px -7px rgba( $elevation, .2 ), 0 24px 38px 3px rg
|
|
|
109
109
|
$icon-size: 16px !default;
|
|
110
110
|
$icon-size-lg: 32px !default;
|
|
111
111
|
$icon-spacing: k-map-get( $spacing, 2 ) !default;
|
|
112
|
+
$icon-padding: k-map-get( $spacing, 1 ) !default;
|
|
112
113
|
|
|
113
114
|
/// The URL to the icon font that will be used by the theme
|
|
114
115
|
/// The default value of `null` embeds the package font with a `data:` URL
|
package/scss/chip/_theme.scss
CHANGED
|
@@ -6,30 +6,13 @@
|
|
|
6
6
|
.k-chip-solid {
|
|
7
7
|
border-color: transparent;
|
|
8
8
|
}
|
|
9
|
+
|
|
10
|
+
// Solid
|
|
9
11
|
@each $name, $color in $kendo-chip-theme-colors {
|
|
10
12
|
.k-chip-solid-#{$name} {
|
|
11
|
-
&:hover,
|
|
12
|
-
&.k-hover {
|
|
13
|
-
@include fill(
|
|
14
|
-
$bg: rgba( $color, .16 ),
|
|
15
|
-
$color: $color
|
|
16
|
-
);
|
|
17
|
-
}
|
|
18
|
-
|
|
19
13
|
&:focus,
|
|
20
14
|
&.k-focus {
|
|
21
15
|
@include box-shadow( none );
|
|
22
|
-
@include fill(
|
|
23
|
-
$bg: rgba( $color, .24),
|
|
24
|
-
$color: $color
|
|
25
|
-
);
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
&.k-selected {
|
|
29
|
-
@include fill(
|
|
30
|
-
$bg: rgba( $color, .24 ),
|
|
31
|
-
$color: $color
|
|
32
|
-
);
|
|
33
16
|
}
|
|
34
17
|
}
|
|
35
18
|
}
|
|
@@ -37,25 +20,62 @@
|
|
|
37
20
|
// Outline
|
|
38
21
|
@each $name, $color in $kendo-chip-theme-colors {
|
|
39
22
|
.k-chip-outline-#{$name} {
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
&.k-hover {
|
|
23
|
+
@if ($name == "base") {
|
|
24
|
+
&:focus,
|
|
25
|
+
&.k-focus {
|
|
26
|
+
@include box-shadow( none );
|
|
27
|
+
@include fill( $bg: k-try-tint( $color, 88% ) );
|
|
28
|
+
}
|
|
29
|
+
} @else if($name == "warning") {
|
|
48
30
|
@include fill(
|
|
49
|
-
$
|
|
50
|
-
$color: $color
|
|
31
|
+
$color: if( $dark-theme, k-try-shade( $color, 50% ), $kendo-chip-outline-text)
|
|
51
32
|
);
|
|
52
|
-
}
|
|
53
33
|
|
|
54
|
-
|
|
34
|
+
&:focus,
|
|
35
|
+
&.k-focus {
|
|
36
|
+
@include box-shadow( none );
|
|
37
|
+
@include fill( $bg: k-try-tint( $color, 65% ) );
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
&:hover,
|
|
41
|
+
&.k-hover {
|
|
42
|
+
@include fill(
|
|
43
|
+
$bg: k-try-tint( $color, 80% ),
|
|
44
|
+
$color: if( $dark-theme, k-try-shade( $color, 50% ), $kendo-chip-outline-text)
|
|
45
|
+
);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
&.k-selected {
|
|
49
|
+
@include fill(
|
|
50
|
+
$bg: k-try-tint( $color, 65% ),
|
|
51
|
+
$color: if( $dark-theme, k-try-shade( $color, 50% ), $kendo-chip-outline-text)
|
|
52
|
+
);
|
|
53
|
+
}
|
|
54
|
+
} @else {
|
|
55
55
|
@include fill(
|
|
56
|
-
$
|
|
57
|
-
$color: $color
|
|
56
|
+
$color: k-try-shade( $color, 50% )
|
|
58
57
|
);
|
|
58
|
+
|
|
59
|
+
&:focus,
|
|
60
|
+
&.k-focus {
|
|
61
|
+
@include box-shadow( none );
|
|
62
|
+
@include fill( $bg: k-try-tint( $color, 65% ) );
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
&:hover,
|
|
66
|
+
&.k-hover {
|
|
67
|
+
@include fill(
|
|
68
|
+
$bg: k-try-tint( $color, 80% ),
|
|
69
|
+
$color: k-try-shade( $color, 50% )
|
|
70
|
+
);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
&.k-selected {
|
|
74
|
+
@include fill(
|
|
75
|
+
$bg: k-try-tint( $color, 65% ),
|
|
76
|
+
$color: k-try-shade( $color, 50% )
|
|
77
|
+
);
|
|
78
|
+
}
|
|
59
79
|
}
|
|
60
80
|
}
|
|
61
81
|
}
|
|
@@ -60,7 +60,7 @@ $kendo-chip-sizes: (
|
|
|
60
60
|
|
|
61
61
|
/// The base background of the chip.
|
|
62
62
|
/// @group chip
|
|
63
|
-
$kendo-chip-base-bg: $
|
|
63
|
+
$kendo-chip-base-bg: if( $dark-theme, $white, $black) !default;
|
|
64
64
|
|
|
65
65
|
/// Theme colors map for the chip.
|
|
66
66
|
/// @group chip
|
|
@@ -74,20 +74,23 @@ $kendo-chip-theme-colors: (
|
|
|
74
74
|
|
|
75
75
|
/// The base background color of solid chip.
|
|
76
76
|
/// @group chip
|
|
77
|
-
$kendo-chip-solid-bg: k-try-tint( $kendo-chip-base-bg,
|
|
77
|
+
$kendo-chip-solid-bg: if( $dark-theme, $kendo-button-bg, k-try-tint( $kendo-chip-base-bg, 92% )) !default;
|
|
78
78
|
/// The base text color of solid chip.
|
|
79
79
|
/// @group chip
|
|
80
|
-
$kendo-chip-solid-text: $kendo-
|
|
80
|
+
$kendo-chip-solid-text: $kendo-button-text !default;
|
|
81
81
|
/// The base border color of solid chip.
|
|
82
82
|
/// @group chip
|
|
83
|
-
$kendo-chip-solid-border:
|
|
83
|
+
$kendo-chip-solid-border: $kendo-chip-solid-bg !default;
|
|
84
84
|
/// The base shadow of solid chip.
|
|
85
85
|
/// @group chip
|
|
86
86
|
$kendo-chip-solid-shadow: null !default;
|
|
87
|
+
/// The base gradient of solid chip.
|
|
88
|
+
/// @group chip
|
|
89
|
+
$kendo-chip-solid-gradient: $kendo-button-gradient !default;
|
|
87
90
|
|
|
88
91
|
/// The base background color of focused solid chip.
|
|
89
92
|
/// @group chip
|
|
90
|
-
$kendo-chip-solid-focus-bg: k-try-tint( $kendo-chip-base-bg,
|
|
93
|
+
$kendo-chip-solid-focus-bg: k-try-tint( $kendo-chip-base-bg, 80% ) !default;
|
|
91
94
|
/// The base text color of focused solid chip.
|
|
92
95
|
/// @group chip
|
|
93
96
|
$kendo-chip-solid-focus-text: null !default;
|
|
@@ -111,24 +114,24 @@ $kendo-chip-solid-selected-text: null !default;
|
|
|
111
114
|
$kendo-chip-outline-bg: $component-bg !default;
|
|
112
115
|
/// The base text color of outline chip.
|
|
113
116
|
/// @group chip
|
|
114
|
-
$kendo-chip-outline-text: $kendo-chip-
|
|
117
|
+
$kendo-chip-outline-text: $kendo-chip-solid-text !default;
|
|
115
118
|
/// The base border color of outline chip.
|
|
116
119
|
/// @group chip
|
|
117
|
-
$kendo-chip-outline-border: $kendo-chip-
|
|
120
|
+
$kendo-chip-outline-border: $kendo-chip-outline-text !default;
|
|
118
121
|
/// The base shadow of outline chip.
|
|
119
122
|
/// @group chip
|
|
120
123
|
$kendo-chip-outline-shadow: null !default;
|
|
121
124
|
|
|
122
125
|
/// The base background color of hovered outline chip.
|
|
123
126
|
/// @group chip
|
|
124
|
-
$kendo-chip-outline-hover-bg: $kendo-chip-base-bg !default;
|
|
127
|
+
$kendo-chip-outline-hover-bg: k-try-tint( $kendo-chip-base-bg, 92% ) !default;
|
|
125
128
|
/// The base text color of hovered outline chip.
|
|
126
129
|
/// @group chip
|
|
127
|
-
$kendo-chip-outline-hover-text: k-contrast-color( $kendo-chip-
|
|
130
|
+
$kendo-chip-outline-hover-text: k-contrast-color( $kendo-chip-outline-hover-bg ) !default;
|
|
128
131
|
|
|
129
132
|
/// The base background color of selected outline chip.
|
|
130
133
|
/// @group chip
|
|
131
|
-
$kendo-chip-outline-selected-bg: $kendo-chip-
|
|
134
|
+
$kendo-chip-outline-selected-bg: k-try-tint( $kendo-chip-base-bg, 84% ) !default;
|
|
132
135
|
/// The base text color of selected outline chip.
|
|
133
136
|
/// @group chip
|
|
134
137
|
$kendo-chip-outline-selected-text: $kendo-chip-outline-hover-text !default;
|