@progress/kendo-theme-bootstrap 4.43.1-dev.5 → 4.43.1-dev.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +973 -358
- package/dist/all.scss +402 -419
- package/modules/@progress/kendo-theme-default/package.json +2 -2
- package/modules/@progress/kendo-theme-default/scss/button/_layout.scss +54 -91
- package/modules/@progress/kendo-theme-default/scss/button/_theme.scss +177 -112
- package/modules/@progress/kendo-theme-default/scss/button/_variables.scss +74 -11
- package/modules/@progress/kendo-theme-default/scss/chat/_layout.scss +6 -0
- package/modules/@progress/kendo-theme-default/scss/colorgradient/_layout.scss +0 -4
- package/modules/@progress/kendo-theme-default/scss/common/_loading.scss +1 -13
- package/modules/@progress/kendo-theme-default/scss/grid/_layout.scss +1 -1
- package/modules/@progress/kendo-theme-default/scss/grid/_theme.scss +0 -6
- package/modules/@progress/kendo-theme-default/scss/listbox/_layout.scss +9 -0
- package/modules/@progress/kendo-theme-default/scss/mediaplayer/_layout.scss +8 -1
- package/modules/@progress/kendo-theme-default/scss/multiselect/_layout.scss +2 -2
- package/modules/@progress/kendo-theme-default/scss/slider/_layout.scss +35 -143
- package/modules/@progress/kendo-theme-default/scss/slider/_theme.scss +0 -6
- package/modules/@progress/kendo-theme-default/scss/spreadsheet/_layout.scss +1 -0
- package/modules/@progress/kendo-theme-default/scss/tabstrip/_layout.scss +5 -1
- package/modules/@progress/kendo-theme-default/scss/textarea/_layout.scss +1 -1
- package/modules/@progress/kendo-theme-default/scss/toolbar/_layout.scss +1 -0
- package/modules/@progress/kendo-theme-default/scss/treelist/_layout.scss +4 -0
- package/modules/@progress/kendo-theme-default/scss/treeview/_layout.scss +12 -18
- package/modules/@progress/kendo-theme-default/scss/window/_layout.scss +2 -2
- package/package.json +3 -3
- package/scss/button/_variables.scss +81 -18
- package/scss/grid/_theme.scss +0 -6
- package/scss/multiselect/_layout.scss +2 -0
package/dist/all.scss
CHANGED
|
@@ -4760,18 +4760,6 @@ $display4-letter-spacing: null !default;
|
|
|
4760
4760
|
// #region @import "~@progress/kendo-theme-default/scss/common/_loading.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/common/_loading.scss
|
|
4761
4761
|
@include exports( "common/loading" ) {
|
|
4762
4762
|
|
|
4763
|
-
// Loading indicator
|
|
4764
|
-
.k-loading {
|
|
4765
|
-
width: 64px;
|
|
4766
|
-
height: 64px;
|
|
4767
|
-
display: block;
|
|
4768
|
-
|
|
4769
|
-
.animate {
|
|
4770
|
-
animation: loading 2s infinite linear;
|
|
4771
|
-
}
|
|
4772
|
-
}
|
|
4773
|
-
|
|
4774
|
-
|
|
4775
4763
|
// Loading mask
|
|
4776
4764
|
.k-loading-mask,
|
|
4777
4765
|
.k-loading-image,
|
|
@@ -4860,7 +4848,7 @@ $display4-letter-spacing: null !default;
|
|
|
4860
4848
|
content: "";
|
|
4861
4849
|
// See https://github.com/telerik/kendo-themes/issues/1925
|
|
4862
4850
|
border-width: 1px; // TODO: Remove once we drop IE support
|
|
4863
|
-
border-width:
|
|
4851
|
+
border-width: clamp( .015em, 1px, 1px ); // sass-lint:disable-line no-duplicate-properties
|
|
4864
4852
|
font-size: 4em;
|
|
4865
4853
|
}
|
|
4866
4854
|
}
|
|
@@ -9538,30 +9526,69 @@ $popup-shadow: 0 2px 4px 0 rgba(0, 0, 0, .03), 0 4px 5px 0 rgba(0, 0, 0, .04) !d
|
|
|
9538
9526
|
// #region @import "../button/_variables.scss"; -> packages/bootstrap/scss/button/_variables.scss
|
|
9539
9527
|
// Button
|
|
9540
9528
|
|
|
9541
|
-
/// Width of border around
|
|
9529
|
+
/// Width of the border around the button.
|
|
9542
9530
|
/// @group button
|
|
9543
9531
|
$button-border-width: $btn-border-width !default;
|
|
9544
|
-
|
|
9532
|
+
|
|
9533
|
+
/// Border radius of the button.
|
|
9545
9534
|
/// @group button
|
|
9546
9535
|
$button-border-radius: $border-radius !default;
|
|
9547
9536
|
|
|
9548
|
-
/// Horizontal padding of
|
|
9537
|
+
/// Horizontal padding of the button.
|
|
9549
9538
|
/// @group button
|
|
9550
9539
|
$button-padding-x: $btn-padding-x !default;
|
|
9551
|
-
|
|
9540
|
+
$button-padding-x-sm: null !default;
|
|
9541
|
+
$button-padding-x-md: null !default;
|
|
9542
|
+
$button-padding-x-lg: null !default;
|
|
9543
|
+
|
|
9544
|
+
/// Vertical padding of the button.
|
|
9552
9545
|
/// @group button
|
|
9553
9546
|
$button-padding-y: $btn-padding-y !default;
|
|
9547
|
+
$button-padding-y-sm: null !default;
|
|
9548
|
+
$button-padding-y-md: null !default;
|
|
9549
|
+
$button-padding-y-lg: null !default;
|
|
9550
|
+
|
|
9551
|
+
/// Font family of the button.
|
|
9552
|
+
/// @group button
|
|
9554
9553
|
$button-font-family: $font-family !default;
|
|
9554
|
+
|
|
9555
|
+
/// Font size of the button.
|
|
9556
|
+
/// @group button
|
|
9555
9557
|
$button-font-size: $font-size !default;
|
|
9556
|
-
$button-
|
|
9558
|
+
$button-font-size-sm: null !default;
|
|
9559
|
+
$button-font-size-md: null !default;
|
|
9560
|
+
$button-font-size-lg: null !default;
|
|
9557
9561
|
|
|
9558
|
-
|
|
9559
|
-
|
|
9560
|
-
$button-line-height
|
|
9562
|
+
/// Line height used along with $font-size.
|
|
9563
|
+
/// @group button
|
|
9564
|
+
$button-line-height: $btn-line-height !default;
|
|
9565
|
+
$button-line-height-sm: null !default;
|
|
9566
|
+
$button-line-height-md: null !default;
|
|
9567
|
+
$button-line-height-lg: null !default;
|
|
9561
9568
|
|
|
9569
|
+
/// Calculated height of the button.
|
|
9570
|
+
/// @group button
|
|
9562
9571
|
$button-calc-size: calc( #{$button-line-height * 1em} + #{$button-padding-y * 2} + #{$button-border-width * 2} ) !default;
|
|
9572
|
+
|
|
9573
|
+
/// Calculated inner height of the button. Without the border width.
|
|
9574
|
+
/// @group button
|
|
9563
9575
|
$button-inner-calc-size: calc( #{$button-line-height * 1em} + #{$button-padding-y * 2} ) !default;
|
|
9564
9576
|
|
|
9577
|
+
/// Theme colors map for the button.
|
|
9578
|
+
/// @group button
|
|
9579
|
+
$button-theme-colors: (
|
|
9580
|
+
"primary": map-get( $theme-colors, primary ),
|
|
9581
|
+
"secondary": map-get( $theme-colors, secondary ),
|
|
9582
|
+
"tertiary": map-get( $theme-colors, tertiary ),
|
|
9583
|
+
"info": map-get( $theme-colors, info ),
|
|
9584
|
+
"success": map-get( $theme-colors, success ),
|
|
9585
|
+
"warning": map-get( $theme-colors, warning ),
|
|
9586
|
+
"error": map-get( $theme-colors, error ),
|
|
9587
|
+
"dark": map-get( $theme-colors, dark ),
|
|
9588
|
+
"light": map-get( $theme-colors, light ),
|
|
9589
|
+
"inverse": map-get( $theme-colors, inverse )
|
|
9590
|
+
) !default;
|
|
9591
|
+
|
|
9565
9592
|
/// The background of the buttons.
|
|
9566
9593
|
/// @group button
|
|
9567
9594
|
$button-bg: #e4e7eb !default;
|
|
@@ -9584,7 +9611,7 @@ $button-hovered-bg: try-darken( $button-bg, 7.5% ) !default;
|
|
|
9584
9611
|
$button-hovered-text: null !default;
|
|
9585
9612
|
/// The border color of hovered buttons.
|
|
9586
9613
|
/// @group button
|
|
9587
|
-
$button-hovered-border: try-darken( $button-
|
|
9614
|
+
$button-hovered-border: try-darken( $button-bg, 10% ) !default;
|
|
9588
9615
|
/// The background gradient of hovered buttons.
|
|
9589
9616
|
/// @group button
|
|
9590
9617
|
$button-hovered-gradient: null !default;
|
|
@@ -9598,7 +9625,7 @@ $button-active-bg: try-darken( $button-bg, 10% ) !default;
|
|
|
9598
9625
|
$button-active-text: null !default;
|
|
9599
9626
|
/// The border color of active buttons.
|
|
9600
9627
|
/// @group button
|
|
9601
|
-
$button-active-border: try-darken( $button-
|
|
9628
|
+
$button-active-border: try-darken( $button-bg, 12.5% ) !default;
|
|
9602
9629
|
/// The background gradient of active buttons.
|
|
9603
9630
|
/// @group button
|
|
9604
9631
|
$button-active-gradient: null !default;
|
|
@@ -9620,7 +9647,7 @@ $button-selected-shadow: null !default;
|
|
|
9620
9647
|
|
|
9621
9648
|
/// The shadow of focused buttons.
|
|
9622
9649
|
/// @group button
|
|
9623
|
-
$button-focused-shadow: 0 0 0
|
|
9650
|
+
$button-focused-shadow: 0 0 0 .25rem rgba( $button-border, .5 ) !default;
|
|
9624
9651
|
|
|
9625
9652
|
|
|
9626
9653
|
// Disabled button
|
|
@@ -9639,14 +9666,14 @@ $primary-button-gradient: null !default;
|
|
|
9639
9666
|
$primary-button-shadow: null !default;
|
|
9640
9667
|
|
|
9641
9668
|
$primary-button-hovered-bg: try-darken( $primary-button-bg, 7.5% ) !default;
|
|
9642
|
-
$primary-button-hovered-text:
|
|
9643
|
-
$primary-button-hovered-border: try-darken( $primary-button-
|
|
9669
|
+
$primary-button-hovered-text: null !default;
|
|
9670
|
+
$primary-button-hovered-border: try-darken( $primary-button-bg, 10% ) !default;
|
|
9644
9671
|
$primary-button-hovered-gradient: null !default;
|
|
9645
9672
|
$primary-button-hovered-shadow: null !default;
|
|
9646
9673
|
|
|
9647
9674
|
$primary-button-active-bg: try-darken( $primary-button-bg, 10% ) !default;
|
|
9648
|
-
$primary-button-active-text:
|
|
9649
|
-
$primary-button-active-border: try-darken( $primary-button-
|
|
9675
|
+
$primary-button-active-text: null !default;
|
|
9676
|
+
$primary-button-active-border: try-darken( $primary-button-bg, 12.5% ) !default;
|
|
9650
9677
|
$primary-button-active-gradient: null !default;
|
|
9651
9678
|
$primary-button-active-shadow: null !default;
|
|
9652
9679
|
|
|
@@ -9656,9 +9683,33 @@ $primary-button-selected-border: $primary-button-active-border !default;
|
|
|
9656
9683
|
$primary-button-selected-gradient: null !default;
|
|
9657
9684
|
$primary-button-selected-shadow: null !default;
|
|
9658
9685
|
|
|
9659
|
-
$primary-button-focused-shadow: 0 0 0
|
|
9660
|
-
|
|
9661
|
-
$button-
|
|
9686
|
+
$primary-button-focused-shadow: 0 0 0 .25rem rgba( $primary-button-border, .5 ) !default;
|
|
9687
|
+
|
|
9688
|
+
$solid-button-gradient: null !default;
|
|
9689
|
+
$solid-button-shade-function: "try-darken";
|
|
9690
|
+
$solid-button-shade-text-amount: 0 !default;
|
|
9691
|
+
$solid-button-shade-bg-amount: 0 !default;
|
|
9692
|
+
$solid-button-shade-border-amount: 0 !default;
|
|
9693
|
+
$solid-button-hover-shade-text-amount: null !default;
|
|
9694
|
+
$solid-button-hover-shade-bg-amount: 7.5% !default;
|
|
9695
|
+
$solid-button-hover-shade-border-amount: 10% !default;
|
|
9696
|
+
$solid-button-active-shade-text-amount: null !default;
|
|
9697
|
+
$solid-button-active-shade-bg-amount: 10% !default;
|
|
9698
|
+
$solid-button-active-shade-border-amount: 12.5% !default;
|
|
9699
|
+
$solid-button-shadow: true !default;
|
|
9700
|
+
$solid-button-shadow-blur: 0px !default;
|
|
9701
|
+
$solid-button-shadow-spread: .25rem !default;
|
|
9702
|
+
$solid-button-shadow-opacity: .5 !default;
|
|
9703
|
+
|
|
9704
|
+
$outline-button-shadow: true !default;
|
|
9705
|
+
$outline-button-shadow-blur: 0px !default;
|
|
9706
|
+
$outline-button-shadow-spread: .25rem !default;
|
|
9707
|
+
$outline-button-shadow-opacity: .5 !default;
|
|
9708
|
+
|
|
9709
|
+
$link-button-shadow: true !default;
|
|
9710
|
+
$link-button-shadow-blur: 0px !default;
|
|
9711
|
+
$link-button-shadow-spread: .25rem !default;
|
|
9712
|
+
$link-button-shadow-opacity: .5 !default;
|
|
9662
9713
|
|
|
9663
9714
|
$flat-button-hover-opacity: .08 !default;
|
|
9664
9715
|
$flat-button-focus-opacity: null !default;
|
|
@@ -13526,50 +13577,51 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13526
13577
|
-webkit-touch-callout: none;
|
|
13527
13578
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
13528
13579
|
|
|
13529
|
-
.k-button {
|
|
13530
|
-
@include border-radius( 0 );
|
|
13531
|
-
}
|
|
13532
|
-
.k-button ~ .k-button {
|
|
13580
|
+
> .k-button + .k-button {
|
|
13533
13581
|
margin-inline-start: if( $button-border-width == 0, null, -$button-border-width );
|
|
13534
13582
|
}
|
|
13535
13583
|
|
|
13536
|
-
.k-button:hover,
|
|
13537
|
-
.k-button.k-state-hover,
|
|
13538
|
-
.k-button:
|
|
13539
|
-
.k-button.k-state-
|
|
13540
|
-
.k-button
|
|
13541
|
-
.k-button
|
|
13542
|
-
.k-button.k-state-
|
|
13584
|
+
> .k-button:hover,
|
|
13585
|
+
> .k-button.k-state-hover,
|
|
13586
|
+
> .k-button:focus,
|
|
13587
|
+
> .k-button.k-state-focus,
|
|
13588
|
+
> .k-button:active,
|
|
13589
|
+
> .k-button.k-state-active,
|
|
13590
|
+
> .k-button.k-state-selected {
|
|
13543
13591
|
z-index: 2;
|
|
13544
13592
|
}
|
|
13545
13593
|
|
|
13546
|
-
.k-
|
|
13547
|
-
|
|
13548
|
-
|
|
13594
|
+
.k-button:not(:first-child):not(:last-child) {
|
|
13595
|
+
border-start-end-radius: 0;
|
|
13596
|
+
border-end-end-radius: 0;
|
|
13597
|
+
border-start-start-radius: 0;
|
|
13598
|
+
border-end-start-radius: 0;
|
|
13549
13599
|
}
|
|
13550
|
-
.k-
|
|
13551
|
-
|
|
13552
|
-
|
|
13600
|
+
> .k-button:first-child:not(:only-child) {
|
|
13601
|
+
border-start-end-radius: 0;
|
|
13602
|
+
border-end-end-radius: 0;
|
|
13553
13603
|
}
|
|
13554
|
-
.k-
|
|
13555
|
-
|
|
13556
|
-
|
|
13604
|
+
> .k-button:last-child:not(:only-child) {
|
|
13605
|
+
border-start-start-radius: 0;
|
|
13606
|
+
border-end-start-radius: 0;
|
|
13607
|
+
}
|
|
13608
|
+
|
|
13609
|
+
&:disabled,
|
|
13610
|
+
&[disabled],
|
|
13611
|
+
&.k-disabled,
|
|
13612
|
+
&.k-state-disabled {
|
|
13613
|
+
opacity: 1;
|
|
13614
|
+
filter: none;
|
|
13557
13615
|
}
|
|
13558
13616
|
|
|
13559
13617
|
}
|
|
13560
13618
|
|
|
13561
13619
|
.k-button-group-stretched {
|
|
13562
|
-
|
|
13620
|
+
width: 100%;
|
|
13563
13621
|
|
|
13564
|
-
|
|
13565
|
-
display: inline-block;
|
|
13622
|
+
> * {
|
|
13566
13623
|
flex: 1 0 0%;
|
|
13567
13624
|
overflow: hidden;
|
|
13568
|
-
text-overflow: ellipsis;
|
|
13569
|
-
|
|
13570
|
-
> .k-icon {
|
|
13571
|
-
vertical-align: text-bottom;
|
|
13572
|
-
}
|
|
13573
13625
|
}
|
|
13574
13626
|
}
|
|
13575
13627
|
|
|
@@ -13583,32 +13635,13 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13583
13635
|
flex-flow: row nowrap;
|
|
13584
13636
|
vertical-align: middle;
|
|
13585
13637
|
|
|
13586
|
-
.k-button {
|
|
13587
|
-
@include border-radius( 0 );
|
|
13588
|
-
}
|
|
13589
|
-
|
|
13590
|
-
// .k-button
|
|
13591
|
-
> .k-button:first-child {
|
|
13592
|
-
@include border-left-radius( $button-border-radius );
|
|
13593
|
-
}
|
|
13594
|
-
> .k-split-button-arrow,
|
|
13595
|
-
> .k-button:last-child {
|
|
13596
|
-
@include border-right-radius( $button-border-radius );
|
|
13597
|
-
margin-inline-start: if( $button-border-width == 0, null, -$button-border-width );
|
|
13638
|
+
.k-split-button-arrow {
|
|
13598
13639
|
padding: $button-padding-y;
|
|
13599
13640
|
width: auto;
|
|
13600
13641
|
flex: none;
|
|
13601
|
-
}
|
|
13602
13642
|
|
|
13603
|
-
|
|
13604
|
-
|
|
13605
|
-
> .k-button:first-child {
|
|
13606
|
-
@include border-left-radius( 0 );
|
|
13607
|
-
@include border-right-radius( $button-border-radius );
|
|
13608
|
-
}
|
|
13609
|
-
> .k-button:last-child {
|
|
13610
|
-
@include border-right-radius( 0 );
|
|
13611
|
-
@include border-left-radius( $button-border-radius );
|
|
13643
|
+
.k-button-icon {
|
|
13644
|
+
min-width: 0;
|
|
13612
13645
|
}
|
|
13613
13646
|
}
|
|
13614
13647
|
}
|
|
@@ -13652,13 +13685,29 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13652
13685
|
.k-button-outline {
|
|
13653
13686
|
@include box-shadow( none );
|
|
13654
13687
|
color: inherit;
|
|
13655
|
-
background:
|
|
13688
|
+
background-color: transparent;
|
|
13689
|
+
background-image: none !important; // sass-lint:disable-line no-important
|
|
13656
13690
|
}
|
|
13657
13691
|
.k-button.k-outline {
|
|
13658
13692
|
@extend .k-button-outline;
|
|
13659
13693
|
}
|
|
13660
13694
|
|
|
13661
13695
|
|
|
13696
|
+
// Link button
|
|
13697
|
+
.k-button-link {
|
|
13698
|
+
@include box-shadow( none );
|
|
13699
|
+
border-color: transparent !important; // sass-lint:disable-line no-important
|
|
13700
|
+
color: inherit;
|
|
13701
|
+
background-color: transparent !important; // sass-lint:disable-line no-important
|
|
13702
|
+
background-image: none !important; // sass-lint:disable-line no-important
|
|
13703
|
+
text-decoration: none;
|
|
13704
|
+
}
|
|
13705
|
+
.k-button-link:hover,
|
|
13706
|
+
.k-button-link.k-state-hover {
|
|
13707
|
+
text-decoration: underline;
|
|
13708
|
+
}
|
|
13709
|
+
|
|
13710
|
+
|
|
13662
13711
|
// Clear button
|
|
13663
13712
|
.k-button-clear {
|
|
13664
13713
|
border-color: transparent !important; // sass-lint:disable-line no-important
|
|
@@ -13668,46 +13717,11 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13668
13717
|
}
|
|
13669
13718
|
|
|
13670
13719
|
|
|
13671
|
-
//
|
|
13672
|
-
.k-
|
|
13673
|
-
|
|
13674
|
-
|
|
13675
|
-
|
|
13676
|
-
|
|
13677
|
-
.k-button {
|
|
13678
|
-
@include border-radius( 0 );
|
|
13679
|
-
}
|
|
13680
|
-
|
|
13681
|
-
.k-group-start,
|
|
13682
|
-
.k-button:first-child {
|
|
13683
|
-
@include border-right-radius( $button-border-radius );
|
|
13684
|
-
}
|
|
13685
|
-
.k-group-end,
|
|
13686
|
-
.k-button:last-child {
|
|
13687
|
-
@include border-left-radius( $button-border-radius );
|
|
13688
|
-
}
|
|
13689
|
-
.k-group-start.k-group-end,
|
|
13690
|
-
.k-button:first-child:last-child {
|
|
13691
|
-
@include border-radius( $button-border-radius );
|
|
13692
|
-
}
|
|
13693
|
-
|
|
13694
|
-
}
|
|
13695
|
-
|
|
13696
|
-
// Split button
|
|
13697
|
-
.k-split-button {
|
|
13698
|
-
|
|
13699
|
-
.k-button {
|
|
13700
|
-
@include border-radius( 0 );
|
|
13701
|
-
}
|
|
13702
|
-
|
|
13703
|
-
// k-button
|
|
13704
|
-
> .k-button:first-child {
|
|
13705
|
-
@include border-right-radius( $button-border-radius );
|
|
13706
|
-
}
|
|
13707
|
-
> .k-split-button-arrow,
|
|
13708
|
-
> .k-button:last-child {
|
|
13709
|
-
@include border-left-radius( $button-border-radius );
|
|
13710
|
-
}
|
|
13720
|
+
// IE
|
|
13721
|
+
.k-ie .k-button-group,
|
|
13722
|
+
.k-ie .k-split-button {
|
|
13723
|
+
.k-button {
|
|
13724
|
+
@include border-radius( 0 );
|
|
13711
13725
|
}
|
|
13712
13726
|
}
|
|
13713
13727
|
|
|
@@ -13854,9 +13868,8 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13854
13868
|
// #region @import "~@progress/kendo-theme-default/scss/button/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/button/_theme.scss
|
|
13855
13869
|
@include exports( "button/theme" ) {
|
|
13856
13870
|
|
|
13857
|
-
//
|
|
13858
|
-
.k-button
|
|
13859
|
-
.k-button-secondary {
|
|
13871
|
+
// Solid button
|
|
13872
|
+
.k-button {
|
|
13860
13873
|
@include fill(
|
|
13861
13874
|
$button-text,
|
|
13862
13875
|
$button-bg,
|
|
@@ -13920,75 +13933,70 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13920
13933
|
}
|
|
13921
13934
|
|
|
13922
13935
|
}
|
|
13936
|
+
.k-button.k-primary {
|
|
13937
|
+
@extend .k-button-solid-primary !optional;
|
|
13938
|
+
}
|
|
13923
13939
|
|
|
13940
|
+
$_shade-fn: get-function( $solid-button-shade-function );
|
|
13924
13941
|
|
|
13925
|
-
|
|
13926
|
-
|
|
13927
|
-
|
|
13928
|
-
|
|
13929
|
-
$primary-button-bg,
|
|
13930
|
-
$primary-button-border,
|
|
13931
|
-
$primary-button-gradient
|
|
13932
|
-
);
|
|
13933
|
-
@include box-shadow( $primary-button-shadow );
|
|
13942
|
+
@each $name, $color in $button-theme-colors {
|
|
13943
|
+
$_button-text: contrast-wcag( $color );
|
|
13944
|
+
$_button-bg: if( $solid-button-shade-bg-amount, call( $_shade-fn, $color, $solid-button-shade-bg-amount ), null );
|
|
13945
|
+
$_button-border: if( $solid-button-shade-border-amount, call( $_shade-fn, $color, $solid-button-shade-border-amount ), null );
|
|
13934
13946
|
|
|
13935
|
-
|
|
13936
|
-
|
|
13937
|
-
|
|
13938
|
-
@include fill(
|
|
13939
|
-
$primary-button-hovered-text,
|
|
13940
|
-
$primary-button-hovered-bg,
|
|
13941
|
-
$primary-button-hovered-border,
|
|
13942
|
-
$primary-button-hovered-gradient
|
|
13943
|
-
);
|
|
13944
|
-
@include box-shadow( $primary-button-hovered-shadow );
|
|
13945
|
-
}
|
|
13947
|
+
$_button-hover-text: null;
|
|
13948
|
+
$_button-hover-bg: if( $solid-button-hover-shade-bg-amount, call( $_shade-fn, $color, $solid-button-hover-shade-bg-amount ), null );
|
|
13949
|
+
$_button-hover-border: if( $solid-button-hover-shade-border-amount, call( $_shade-fn, $color, $solid-button-hover-shade-border-amount ), null );
|
|
13946
13950
|
|
|
13947
|
-
|
|
13948
|
-
|
|
13949
|
-
|
|
13950
|
-
&.k-state-focused {
|
|
13951
|
-
@include box-shadow( $primary-button-focused-shadow );
|
|
13952
|
-
}
|
|
13951
|
+
$_button-active-text: null;
|
|
13952
|
+
$_button-active-bg: if( $solid-button-active-shade-bg-amount, call( $_shade-fn, $color, $solid-button-active-shade-bg-amount ), null );
|
|
13953
|
+
$_button-active-border: if( $solid-button-active-shade-border-amount, call( $_shade-fn, $color, $solid-button-active-shade-border-amount ), null );
|
|
13953
13954
|
|
|
13954
|
-
|
|
13955
|
-
&:active,
|
|
13956
|
-
&.k-state-active {
|
|
13955
|
+
.k-button-solid.k-button-solid-#{$name} {
|
|
13957
13956
|
@include fill(
|
|
13958
|
-
$
|
|
13959
|
-
$
|
|
13960
|
-
$
|
|
13961
|
-
$
|
|
13957
|
+
$_button-text,
|
|
13958
|
+
$_button-bg,
|
|
13959
|
+
$_button-border,
|
|
13960
|
+
$solid-button-gradient
|
|
13962
13961
|
);
|
|
13963
|
-
@include box-shadow( $primary-button-active-shadow );
|
|
13964
|
-
}
|
|
13965
13962
|
|
|
13966
|
-
|
|
13967
|
-
|
|
13968
|
-
|
|
13969
|
-
|
|
13970
|
-
|
|
13971
|
-
|
|
13972
|
-
|
|
13973
|
-
|
|
13974
|
-
|
|
13975
|
-
}
|
|
13963
|
+
// Hover state
|
|
13964
|
+
&:hover,
|
|
13965
|
+
&.k-state-hover {
|
|
13966
|
+
@include fill(
|
|
13967
|
+
$_button-hover-text,
|
|
13968
|
+
$_button-hover-bg,
|
|
13969
|
+
$_button-hover-border
|
|
13970
|
+
);
|
|
13971
|
+
}
|
|
13976
13972
|
|
|
13977
|
-
|
|
13978
|
-
|
|
13979
|
-
|
|
13980
|
-
|
|
13981
|
-
|
|
13982
|
-
|
|
13983
|
-
|
|
13984
|
-
$button-disabled-gradient
|
|
13985
|
-
);
|
|
13986
|
-
@include box-shadow( $button-disabled-shadow );
|
|
13987
|
-
}
|
|
13973
|
+
// Focus state
|
|
13974
|
+
&:focus,
|
|
13975
|
+
&.k-state-focus {
|
|
13976
|
+
@if ( $solid-button-shadow ) {
|
|
13977
|
+
box-shadow: 0 0 $solid-button-shadow-blur $solid-button-shadow-spread rgba( $_button-border, $solid-button-shadow-opacity );
|
|
13978
|
+
}
|
|
13979
|
+
}
|
|
13988
13980
|
|
|
13989
|
-
|
|
13990
|
-
|
|
13991
|
-
|
|
13981
|
+
// Active state
|
|
13982
|
+
&:active,
|
|
13983
|
+
&.k-state-active {
|
|
13984
|
+
@include fill(
|
|
13985
|
+
$_button-active-text,
|
|
13986
|
+
$_button-active-bg,
|
|
13987
|
+
$_button-active-border
|
|
13988
|
+
);
|
|
13989
|
+
}
|
|
13990
|
+
|
|
13991
|
+
// Selected
|
|
13992
|
+
&.k-state-selected {
|
|
13993
|
+
@include fill(
|
|
13994
|
+
$_button-active-text,
|
|
13995
|
+
$_button-active-bg,
|
|
13996
|
+
$_button-active-border
|
|
13997
|
+
);
|
|
13998
|
+
}
|
|
13999
|
+
}
|
|
13992
14000
|
}
|
|
13993
14001
|
|
|
13994
14002
|
|
|
@@ -13997,18 +14005,7 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13997
14005
|
|
|
13998
14006
|
|
|
13999
14007
|
// Button group
|
|
14000
|
-
.k-button-group {
|
|
14001
|
-
|
|
14002
|
-
.k-button:focus,
|
|
14003
|
-
.k-button.k-state-focus,
|
|
14004
|
-
.k-button.k-state-focused,
|
|
14005
|
-
.k-button-outline:focus,
|
|
14006
|
-
.k-button-outline.k-state-focus,
|
|
14007
|
-
.k-button-outline.k-state-focused {
|
|
14008
|
-
@include box-shadow( $button-group-focus-shadow );
|
|
14009
|
-
}
|
|
14010
|
-
|
|
14011
|
-
}
|
|
14008
|
+
.k-button-group {}
|
|
14012
14009
|
|
|
14013
14010
|
|
|
14014
14011
|
// Split button
|
|
@@ -14030,62 +14027,96 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
14030
14027
|
@include box-shadow( none );
|
|
14031
14028
|
border-color: currentColor;
|
|
14032
14029
|
color: $button-text;
|
|
14033
|
-
background:
|
|
14030
|
+
background-color: transparent;
|
|
14034
14031
|
|
|
14035
14032
|
// Hover state
|
|
14036
14033
|
&:hover,
|
|
14037
14034
|
&.k-state-hover {
|
|
14038
|
-
@include fill(
|
|
14035
|
+
@include fill(
|
|
14036
|
+
contrast-wcag( $button-text ),
|
|
14037
|
+
$button-text,
|
|
14038
|
+
$button-text
|
|
14039
|
+
);
|
|
14039
14040
|
}
|
|
14040
14041
|
|
|
14041
14042
|
// Focused state
|
|
14042
14043
|
&:focus,
|
|
14043
14044
|
&.k-state-focus,
|
|
14044
14045
|
&.k-state-focused {
|
|
14045
|
-
|
|
14046
|
+
@if ($outline-button-shadow) {
|
|
14047
|
+
box-shadow: 0 0 $outline-button-shadow-blur $outline-button-shadow-spread rgba( $button-text, $outline-button-shadow-opacity );
|
|
14048
|
+
}
|
|
14046
14049
|
}
|
|
14047
14050
|
|
|
14048
14051
|
// Active state
|
|
14049
14052
|
&:active,
|
|
14050
14053
|
&.k-state-active {
|
|
14051
|
-
@include fill(
|
|
14054
|
+
@include fill(
|
|
14055
|
+
contrast-wcag( $button-text ),
|
|
14056
|
+
$button-text,
|
|
14057
|
+
$button-text
|
|
14058
|
+
);
|
|
14052
14059
|
}
|
|
14053
14060
|
|
|
14054
14061
|
// Selected state
|
|
14055
14062
|
&.k-state-selected {
|
|
14056
|
-
@include fill(
|
|
14063
|
+
@include fill(
|
|
14064
|
+
contrast-wcag( $button-text ),
|
|
14065
|
+
$button-text,
|
|
14066
|
+
$button-text
|
|
14067
|
+
);
|
|
14057
14068
|
}
|
|
14058
14069
|
}
|
|
14059
14070
|
.k-button-outline.k-primary {
|
|
14060
|
-
|
|
14061
|
-
|
|
14062
|
-
background: none;
|
|
14063
|
-
box-shadow: none;
|
|
14071
|
+
@extend .k-button-outline-primary !optional;
|
|
14072
|
+
}
|
|
14064
14073
|
|
|
14065
|
-
|
|
14066
|
-
|
|
14067
|
-
|
|
14068
|
-
|
|
14069
|
-
|
|
14074
|
+
@each $name, $color in $button-theme-colors {
|
|
14075
|
+
.k-button-outline.k-button-outline-#{$name} {
|
|
14076
|
+
@include box-shadow( none );
|
|
14077
|
+
border-color: currentColor;
|
|
14078
|
+
color: $color;
|
|
14079
|
+
background-color: transparent;
|
|
14070
14080
|
|
|
14071
|
-
|
|
14072
|
-
|
|
14073
|
-
|
|
14074
|
-
|
|
14075
|
-
|
|
14076
|
-
|
|
14081
|
+
// Hover state
|
|
14082
|
+
&:hover,
|
|
14083
|
+
&.k-state-hover {
|
|
14084
|
+
@include fill(
|
|
14085
|
+
contrast-wcag( $color ),
|
|
14086
|
+
$color,
|
|
14087
|
+
$color
|
|
14088
|
+
);
|
|
14089
|
+
}
|
|
14077
14090
|
|
|
14078
|
-
|
|
14079
|
-
|
|
14080
|
-
|
|
14081
|
-
|
|
14082
|
-
|
|
14083
|
-
|
|
14091
|
+
// Focused state
|
|
14092
|
+
&:focus,
|
|
14093
|
+
&.k-state-focus,
|
|
14094
|
+
&.k-state-focused {
|
|
14095
|
+
@if ($outline-button-shadow) {
|
|
14096
|
+
box-shadow: 0 0 $outline-button-shadow-blur $outline-button-shadow-spread rgba( $color, $outline-button-shadow-opacity );
|
|
14097
|
+
}
|
|
14098
|
+
}
|
|
14084
14099
|
|
|
14085
|
-
|
|
14086
|
-
|
|
14087
|
-
|
|
14088
|
-
|
|
14100
|
+
// Active state
|
|
14101
|
+
&:active,
|
|
14102
|
+
&.k-state-active {
|
|
14103
|
+
@include fill(
|
|
14104
|
+
contrast-wcag( $color ),
|
|
14105
|
+
$color,
|
|
14106
|
+
$color
|
|
14107
|
+
);
|
|
14108
|
+
box-shadow: none;
|
|
14109
|
+
}
|
|
14110
|
+
|
|
14111
|
+
// Selected state
|
|
14112
|
+
&.k-state-selected {
|
|
14113
|
+
@include fill(
|
|
14114
|
+
contrast-wcag( $color ),
|
|
14115
|
+
$color,
|
|
14116
|
+
$color
|
|
14117
|
+
);
|
|
14118
|
+
box-shadow: none;
|
|
14119
|
+
}
|
|
14089
14120
|
}
|
|
14090
14121
|
}
|
|
14091
14122
|
|
|
@@ -14108,17 +14139,65 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
14108
14139
|
&.k-state-focus {
|
|
14109
14140
|
color: inherit;
|
|
14110
14141
|
}
|
|
14142
|
+
|
|
14143
|
+
// Disabled state
|
|
14144
|
+
&:disabled,
|
|
14145
|
+
&.k-state-disabled {
|
|
14146
|
+
color: $button-disabled-text;
|
|
14147
|
+
}
|
|
14111
14148
|
}
|
|
14112
14149
|
.k-button-flat.k-primary {
|
|
14150
|
+
@extend .k-button-flat-primary !optional;
|
|
14151
|
+
}
|
|
14113
14152
|
|
|
14114
|
-
|
|
14115
|
-
|
|
14116
|
-
|
|
14117
|
-
|
|
14118
|
-
|
|
14119
|
-
|
|
14120
|
-
|
|
14121
|
-
|
|
14153
|
+
@each $name, $color in $button-theme-colors {
|
|
14154
|
+
.k-button-flat.k-button-flat-#{$name} {
|
|
14155
|
+
|
|
14156
|
+
&,
|
|
14157
|
+
&:hover,
|
|
14158
|
+
&.k-state-hover,
|
|
14159
|
+
&:active,
|
|
14160
|
+
&.k-state-active,
|
|
14161
|
+
&:focus,
|
|
14162
|
+
&.k-state-focus {
|
|
14163
|
+
color: $color;
|
|
14164
|
+
}
|
|
14165
|
+
|
|
14166
|
+
// Disabled state
|
|
14167
|
+
&:disabled,
|
|
14168
|
+
&.k-state-disabled {
|
|
14169
|
+
color: $button-disabled-text;
|
|
14170
|
+
}
|
|
14171
|
+
}
|
|
14172
|
+
}
|
|
14173
|
+
|
|
14174
|
+
}
|
|
14175
|
+
|
|
14176
|
+
|
|
14177
|
+
|
|
14178
|
+
|
|
14179
|
+
@include exports( "link-button/theme" ) {
|
|
14180
|
+
|
|
14181
|
+
@each $name, $color in map-merge( $button-theme-colors, ( "base": $base-text ) ) {
|
|
14182
|
+
.k-button-link.k-button-link-#{$name} {
|
|
14183
|
+
@include box-shadow( none );
|
|
14184
|
+
color: $color;
|
|
14185
|
+
|
|
14186
|
+
&:hover,
|
|
14187
|
+
&.k-state-hover {
|
|
14188
|
+
color: try-shade( $color, 2 );
|
|
14189
|
+
}
|
|
14190
|
+
&:focus,
|
|
14191
|
+
&.k-state-focus {
|
|
14192
|
+
@if ($link-button-shadow) {
|
|
14193
|
+
box-shadow: 0 0 $link-button-shadow-blur $link-button-shadow-spread rgba( $color, $link-button-shadow-opacity );
|
|
14194
|
+
}
|
|
14195
|
+
}
|
|
14196
|
+
&:active,
|
|
14197
|
+
&.k-state-active,
|
|
14198
|
+
&.k-state-selected {
|
|
14199
|
+
color: try-shade( $color, 2 );
|
|
14200
|
+
}
|
|
14122
14201
|
}
|
|
14123
14202
|
}
|
|
14124
14203
|
|
|
@@ -14413,6 +14492,7 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
14413
14492
|
.k-toolbar {
|
|
14414
14493
|
padding: 0;
|
|
14415
14494
|
border-width: 0;
|
|
14495
|
+
flex-shrink: 1;
|
|
14416
14496
|
color: inherit;
|
|
14417
14497
|
background: none;
|
|
14418
14498
|
}
|
|
@@ -15836,7 +15916,7 @@ $textarea-invalid-focus-shadow: $invalid-shadow !default;
|
|
|
15836
15916
|
// Targets https://github.com/telerik/kendo-react/issues/638.
|
|
15837
15917
|
box-shadow: none;
|
|
15838
15918
|
background: none;
|
|
15839
|
-
display:
|
|
15919
|
+
display: flex;
|
|
15840
15920
|
flex-wrap: nowrap;
|
|
15841
15921
|
vertical-align: middle;
|
|
15842
15922
|
position: relative;
|
|
@@ -16137,9 +16217,18 @@ $listbox-drop-hint-width: 1px !default;
|
|
|
16137
16217
|
|
|
16138
16218
|
.k-list-scroller {
|
|
16139
16219
|
width: 100%;
|
|
16220
|
+
height: inherit;
|
|
16140
16221
|
border-width: $listbox-border-width;
|
|
16141
16222
|
border-style: solid;
|
|
16142
16223
|
box-sizing: border-box;
|
|
16224
|
+
|
|
16225
|
+
.k-list-scroller {
|
|
16226
|
+
border-width: 0;
|
|
16227
|
+
}
|
|
16228
|
+
|
|
16229
|
+
.k-list {
|
|
16230
|
+
height: inherit;
|
|
16231
|
+
}
|
|
16143
16232
|
}
|
|
16144
16233
|
|
|
16145
16234
|
.k-drop-hint {
|
|
@@ -17092,42 +17181,11 @@ $slider-disabled-opacity: null !default;
|
|
|
17092
17181
|
line-height: $slider-line-height;
|
|
17093
17182
|
background: none;
|
|
17094
17183
|
display: inline-flex;
|
|
17095
|
-
align-items:
|
|
17184
|
+
align-items: center;
|
|
17096
17185
|
position: relative;
|
|
17097
17186
|
-webkit-touch-callout: none;
|
|
17098
17187
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
17099
17188
|
|
|
17100
|
-
.k-button {
|
|
17101
|
-
height: $slider-button-size;
|
|
17102
|
-
line-height: $slider-button-size;
|
|
17103
|
-
margin: 0;
|
|
17104
|
-
min-width: 0;
|
|
17105
|
-
outline: 0;
|
|
17106
|
-
padding: 0;
|
|
17107
|
-
position: absolute;
|
|
17108
|
-
width: $slider-button-size;
|
|
17109
|
-
box-sizing: content-box;
|
|
17110
|
-
|
|
17111
|
-
.k-icon,
|
|
17112
|
-
.k-button-icon {
|
|
17113
|
-
vertical-align: baseline;
|
|
17114
|
-
line-height: $slider-button-size;
|
|
17115
|
-
height: 100%;
|
|
17116
|
-
}
|
|
17117
|
-
}
|
|
17118
|
-
|
|
17119
|
-
.k-button-increase {
|
|
17120
|
-
position: absolute;
|
|
17121
|
-
right: 0;
|
|
17122
|
-
top: 0;
|
|
17123
|
-
}
|
|
17124
|
-
|
|
17125
|
-
.k-button-decrease {
|
|
17126
|
-
position: absolute;
|
|
17127
|
-
left: 0;
|
|
17128
|
-
top: 0;
|
|
17129
|
-
}
|
|
17130
|
-
|
|
17131
17189
|
.k-label {
|
|
17132
17190
|
width: auto;
|
|
17133
17191
|
font-size: .92em;
|
|
@@ -17167,28 +17225,18 @@ $slider-disabled-opacity: null !default;
|
|
|
17167
17225
|
left: auto;
|
|
17168
17226
|
right: 0;
|
|
17169
17227
|
}
|
|
17170
|
-
|
|
17171
|
-
.k-button-increase {
|
|
17172
|
-
left: 0;
|
|
17173
|
-
right: auto;
|
|
17174
|
-
}
|
|
17175
|
-
|
|
17176
|
-
.k-button-decrease {
|
|
17177
|
-
right: 0;
|
|
17178
|
-
left: auto;
|
|
17179
|
-
}
|
|
17180
17228
|
}
|
|
17181
17229
|
}
|
|
17182
17230
|
|
|
17183
17231
|
|
|
17184
17232
|
// New rendering
|
|
17185
17233
|
.k-slider {
|
|
17234
|
+
width: min-content;
|
|
17235
|
+
height: min-content;
|
|
17186
17236
|
gap: calc( #{$slider-draghandle-size} / 2 );
|
|
17187
17237
|
|
|
17188
17238
|
> .k-button {
|
|
17189
|
-
|
|
17190
|
-
flex-shrink: 0;
|
|
17191
|
-
align-self: center;
|
|
17239
|
+
flex: none;
|
|
17192
17240
|
}
|
|
17193
17241
|
> .k-slider-track-wrap {
|
|
17194
17242
|
flex: 1 1 auto;
|
|
@@ -17205,8 +17253,7 @@ $slider-disabled-opacity: null !default;
|
|
|
17205
17253
|
display: flex;
|
|
17206
17254
|
flex-flow: inherit;
|
|
17207
17255
|
justify-content: space-between;
|
|
17208
|
-
|
|
17209
|
-
&::after { display: none; }
|
|
17256
|
+
user-select: none;
|
|
17210
17257
|
}
|
|
17211
17258
|
.k-tick {
|
|
17212
17259
|
flex: 0 0 1px;
|
|
@@ -17219,6 +17266,7 @@ $slider-disabled-opacity: null !default;
|
|
|
17219
17266
|
|
|
17220
17267
|
&-horizontal {
|
|
17221
17268
|
> .k-slider-track-wrap {
|
|
17269
|
+
height: 26px;
|
|
17222
17270
|
|
|
17223
17271
|
.k-slider-track {
|
|
17224
17272
|
width: 100%;
|
|
@@ -17271,6 +17319,7 @@ $slider-disabled-opacity: null !default;
|
|
|
17271
17319
|
|
|
17272
17320
|
&-vertical {
|
|
17273
17321
|
> .k-slider-track-wrap {
|
|
17322
|
+
width: 26px;
|
|
17274
17323
|
|
|
17275
17324
|
.k-slider-track {
|
|
17276
17325
|
height: 100%;
|
|
@@ -17303,14 +17352,8 @@ $slider-disabled-opacity: null !default;
|
|
|
17303
17352
|
// Slider vertical
|
|
17304
17353
|
.k-slider-vertical {
|
|
17305
17354
|
height: $slider-size;
|
|
17306
|
-
width: $slider-alt-size;
|
|
17307
17355
|
flex-flow: column-reverse nowrap;
|
|
17308
17356
|
|
|
17309
|
-
.k-button-decrease {
|
|
17310
|
-
bottom: 0;
|
|
17311
|
-
top: auto;
|
|
17312
|
-
}
|
|
17313
|
-
|
|
17314
17357
|
.k-tick {
|
|
17315
17358
|
text-align: right;
|
|
17316
17359
|
margin-left: 2px;
|
|
@@ -17322,32 +17365,32 @@ $slider-disabled-opacity: null !default;
|
|
|
17322
17365
|
|
|
17323
17366
|
// ticks
|
|
17324
17367
|
|
|
17325
|
-
.k-tick { background-position: -
|
|
17326
|
-
.k-slider-topleft .k-tick { background-position: -
|
|
17327
|
-
.k-slider-bottomright .k-tick { background-position: -
|
|
17368
|
+
.k-tick { background-position: -94px center; }
|
|
17369
|
+
.k-slider-topleft .k-tick { background-position: -124px center; }
|
|
17370
|
+
.k-slider-bottomright .k-tick { background-position: -154px center; }
|
|
17328
17371
|
|
|
17329
17372
|
.k-tick-large {
|
|
17330
17373
|
display: flex;
|
|
17331
17374
|
align-items: center;
|
|
17332
|
-
background-position: -
|
|
17375
|
+
background-position: -4px center;
|
|
17333
17376
|
}
|
|
17334
17377
|
|
|
17335
|
-
.k-slider-topleft .k-tick-large { background-position: -
|
|
17336
|
-
.k-slider-bottomright .k-tick-large { background-position: -
|
|
17378
|
+
.k-slider-topleft .k-tick-large { background-position: -34px center; }
|
|
17379
|
+
.k-slider-bottomright .k-tick-large { background-position: -64px center; }
|
|
17337
17380
|
|
|
17338
|
-
.k-first { background-position: -
|
|
17339
|
-
.k-tick-large.k-first { background-position: -
|
|
17340
|
-
.k-slider-topleft .k-first { background-position: -
|
|
17341
|
-
.k-slider-topleft .k-tick-large.k-first { background-position: -
|
|
17342
|
-
.k-slider-bottomright .k-first { background-position: -
|
|
17343
|
-
.k-slider-bottomright .k-tick-large.k-first { background-position: -
|
|
17381
|
+
.k-first { background-position: -94px 100%; }
|
|
17382
|
+
.k-tick-large.k-first { background-position: -4px 100%; }
|
|
17383
|
+
.k-slider-topleft .k-first { background-position: -124px 100%; }
|
|
17384
|
+
.k-slider-topleft .k-tick-large.k-first { background-position: -34px 100%; }
|
|
17385
|
+
.k-slider-bottomright .k-first { background-position: -154px 100%; }
|
|
17386
|
+
.k-slider-bottomright .k-tick-large.k-first { background-position: -64px 100%; }
|
|
17344
17387
|
|
|
17345
|
-
.k-last { background-position: -
|
|
17346
|
-
.k-tick-large.k-last { background-position: -
|
|
17347
|
-
.k-slider-topleft .k-last { background-position: -
|
|
17348
|
-
.k-slider-topleft .k-tick-large.k-last { background-position: -
|
|
17349
|
-
.k-slider-bottomright .k-last { background-position: -
|
|
17350
|
-
.k-slider-bottomright .k-tick-large.k-last { background-position: -
|
|
17388
|
+
.k-last { background-position: -94px 0; }
|
|
17389
|
+
.k-tick-large.k-last { background-position: -4px 0; }
|
|
17390
|
+
.k-slider-topleft .k-last { background-position: -124px 0; }
|
|
17391
|
+
.k-slider-topleft .k-tick-large.k-last { background-position: -34px 0; }
|
|
17392
|
+
.k-slider-bottomright .k-last { background-position: -154px 0; }
|
|
17393
|
+
.k-slider-bottomright .k-tick-large.k-last { background-position: -64px 0; }
|
|
17351
17394
|
|
|
17352
17395
|
// labels
|
|
17353
17396
|
|
|
@@ -17385,17 +17428,9 @@ $slider-disabled-opacity: null !default;
|
|
|
17385
17428
|
|
|
17386
17429
|
// Slider horizontal
|
|
17387
17430
|
.k-slider-horizontal {
|
|
17388
|
-
height: $slider-alt-size;
|
|
17389
17431
|
width: $slider-size;
|
|
17390
17432
|
flex-flow: row nowrap;
|
|
17391
17433
|
|
|
17392
|
-
// ticks
|
|
17393
|
-
.k-tick {
|
|
17394
|
-
float: left;
|
|
17395
|
-
height: 100%;
|
|
17396
|
-
text-align: center;
|
|
17397
|
-
}
|
|
17398
|
-
|
|
17399
17434
|
.k-tick { background-position: center -92px; }
|
|
17400
17435
|
.k-slider-topleft .k-tick { background-position: center -122px; }
|
|
17401
17436
|
.k-slider-bottomright .k-tick { background-position: center -152px; }
|
|
@@ -17441,9 +17476,6 @@ $slider-disabled-opacity: null !default;
|
|
|
17441
17476
|
right: 0;
|
|
17442
17477
|
left: auto;
|
|
17443
17478
|
}
|
|
17444
|
-
.k-slider-buttons .k-slider-track {
|
|
17445
|
-
right: $slider-button-spacing;
|
|
17446
|
-
}
|
|
17447
17479
|
|
|
17448
17480
|
.k-button .k-i-arrow-e,
|
|
17449
17481
|
.k-button .k-i-arrow-w {
|
|
@@ -17452,11 +17484,6 @@ $slider-disabled-opacity: null !default;
|
|
|
17452
17484
|
}
|
|
17453
17485
|
}
|
|
17454
17486
|
|
|
17455
|
-
.k-slider-wrap {
|
|
17456
|
-
height: 100%;
|
|
17457
|
-
width: 100%;
|
|
17458
|
-
}
|
|
17459
|
-
|
|
17460
17487
|
.k-slider-track,
|
|
17461
17488
|
.k-slider-selection {
|
|
17462
17489
|
margin: 0;
|
|
@@ -17478,16 +17505,6 @@ $slider-disabled-opacity: null !default;
|
|
|
17478
17505
|
}
|
|
17479
17506
|
}
|
|
17480
17507
|
|
|
17481
|
-
.k-slider-buttons .k-slider-track {
|
|
17482
|
-
.k-slider-horizontal & {
|
|
17483
|
-
left: $slider-button-spacing;
|
|
17484
|
-
}
|
|
17485
|
-
|
|
17486
|
-
.k-slider-vertical & {
|
|
17487
|
-
bottom: $slider-button-spacing;
|
|
17488
|
-
}
|
|
17489
|
-
}
|
|
17490
|
-
|
|
17491
17508
|
|
|
17492
17509
|
.k-draghandle {
|
|
17493
17510
|
background-color: transparent;
|
|
@@ -17498,30 +17515,10 @@ $slider-disabled-opacity: null !default;
|
|
|
17498
17515
|
position: absolute;
|
|
17499
17516
|
text-align: center;
|
|
17500
17517
|
text-decoration: none;
|
|
17501
|
-
box-sizing:
|
|
17518
|
+
box-sizing: border-box;
|
|
17502
17519
|
width: $slider-draghandle-size;
|
|
17503
17520
|
height: $slider-draghandle-size;
|
|
17504
17521
|
|
|
17505
|
-
.k-slider-horizontal & {
|
|
17506
|
-
top: 50%;
|
|
17507
|
-
transform: translateY(-50%);
|
|
17508
|
-
|
|
17509
|
-
&:active,
|
|
17510
|
-
&.k-pressed {
|
|
17511
|
-
transform: translateY(-50%) scale($slider-draghandle-active-scale);
|
|
17512
|
-
}
|
|
17513
|
-
}
|
|
17514
|
-
|
|
17515
|
-
.k-slider-vertical & {
|
|
17516
|
-
left: 50%;
|
|
17517
|
-
transform: translateX(-50%);
|
|
17518
|
-
|
|
17519
|
-
&:active,
|
|
17520
|
-
&.k-pressed {
|
|
17521
|
-
transform: translateX(-50%) scale($slider-draghandle-active-scale);
|
|
17522
|
-
}
|
|
17523
|
-
}
|
|
17524
|
-
|
|
17525
17522
|
.k-slider-transitions.k-slider-horizontal & {
|
|
17526
17523
|
transition: left $slider-transition-speed $slider-transition-function, background-color $slider-transition-speed $slider-transition-function, transform $slider-draghandle-transition-speed $slider-draghandle-transition-function;
|
|
17527
17524
|
}
|
|
@@ -17550,34 +17547,18 @@ $slider-disabled-opacity: null !default;
|
|
|
17550
17547
|
}
|
|
17551
17548
|
|
|
17552
17549
|
|
|
17553
|
-
|
|
17554
|
-
|
|
17555
|
-
|
|
17556
|
-
.k-slider-
|
|
17557
|
-
|
|
17558
|
-
|
|
17559
|
-
|
|
17560
|
-
.k-slider-horizontal & {
|
|
17561
|
-
height: 100%;
|
|
17562
|
-
padding: 2px 0;
|
|
17563
|
-
box-sizing: border-box;
|
|
17564
|
-
}
|
|
17565
|
-
|
|
17566
|
-
.k-slider-vertical & {
|
|
17567
|
-
padding-top: 1px;
|
|
17568
|
-
}
|
|
17569
|
-
|
|
17570
|
-
.k-slider-vertical .k-slider-buttons & {
|
|
17571
|
-
margin: 0;
|
|
17572
|
-
padding-top: $slider-button-spacing;
|
|
17550
|
+
// Slider readonly
|
|
17551
|
+
.k-slider.k-readonly {
|
|
17552
|
+
.k-button,
|
|
17553
|
+
.k-slider-track,
|
|
17554
|
+
.k-tick,
|
|
17555
|
+
.k-draghandle {
|
|
17556
|
+
pointer-events: none;
|
|
17573
17557
|
}
|
|
17574
17558
|
}
|
|
17575
|
-
.k-slider-items::after {
|
|
17576
|
-
content: "";
|
|
17577
|
-
display: block;
|
|
17578
|
-
clear: both;
|
|
17579
|
-
}
|
|
17580
17559
|
|
|
17560
|
+
|
|
17561
|
+
// Slider tooltip
|
|
17581
17562
|
.k-slider-tooltip {
|
|
17582
17563
|
.k-callout-n,
|
|
17583
17564
|
.k-callout-s {
|
|
@@ -17663,12 +17644,6 @@ $slider-disabled-opacity: null !default;
|
|
|
17663
17644
|
&.k-state-disabled {
|
|
17664
17645
|
opacity: $slider-disabled-opacity;
|
|
17665
17646
|
}
|
|
17666
|
-
|
|
17667
|
-
.k-slider-wrap {
|
|
17668
|
-
&:focus {
|
|
17669
|
-
outline: none;
|
|
17670
|
-
}
|
|
17671
|
-
}
|
|
17672
17647
|
}
|
|
17673
17648
|
|
|
17674
17649
|
.k-slider-horizontal .k-tick {
|
|
@@ -19712,10 +19687,6 @@ $colorgradient-contrast-spacer: ( $colorgradient-spacer / 2 ) !default;
|
|
|
19712
19687
|
z-index: 1;
|
|
19713
19688
|
}
|
|
19714
19689
|
|
|
19715
|
-
.k-slider-wrap > .k-slider-track {
|
|
19716
|
-
height: $colorgradient-slider-vertical-size;
|
|
19717
|
-
}
|
|
19718
|
-
|
|
19719
19690
|
.k-slider-selection {
|
|
19720
19691
|
display: none;
|
|
19721
19692
|
}
|
|
@@ -21924,8 +21895,8 @@ $multiselect-clear-right: calc( #{$icon-size} + #{$input-padding-y} ) !default;
|
|
|
21924
21895
|
|
|
21925
21896
|
// Token
|
|
21926
21897
|
.k-button {
|
|
21927
|
-
min-height: calc( #{$form-line-height-em} + #{$button-padding-y
|
|
21928
|
-
padding: ($button-padding-y
|
|
21898
|
+
min-height: calc( #{$form-line-height-em} + #{$button-padding-y /2} + 2px );
|
|
21899
|
+
padding: ($button-padding-y / 4) ($button-padding-x / 2);
|
|
21929
21900
|
margin: $padding-y-sm 0 0 $padding-y-sm;
|
|
21930
21901
|
cursor: default;
|
|
21931
21902
|
display: inline-flex;
|
|
@@ -22050,6 +22021,8 @@ $multiselect-clear-right: calc( #{$icon-size} + #{$input-padding-y} ) !default;
|
|
|
22050
22021
|
transition: $transition;
|
|
22051
22022
|
|
|
22052
22023
|
.k-button {
|
|
22024
|
+
padding-top: 2px;
|
|
22025
|
+
padding-bottom: 2px;
|
|
22053
22026
|
margin: calc( #{$padding-y-sm} - 1px ) 0 0 calc( #{$padding-y-sm} - 1px );
|
|
22054
22027
|
|
|
22055
22028
|
&:last-child {
|
|
@@ -22369,6 +22342,16 @@ $treeview-loadmore-focus-shadow: $treeview-item-focused-shadow !default;
|
|
|
22369
22342
|
}
|
|
22370
22343
|
|
|
22371
22344
|
|
|
22345
|
+
// Treeview filter
|
|
22346
|
+
.k-treeview-filter {
|
|
22347
|
+
padding: map-get( $spacing, 1 );
|
|
22348
|
+
box-sizing: border-box;
|
|
22349
|
+
display: block;
|
|
22350
|
+
position: relative;
|
|
22351
|
+
flex: none;
|
|
22352
|
+
}
|
|
22353
|
+
|
|
22354
|
+
|
|
22372
22355
|
// Treeview group
|
|
22373
22356
|
.k-treeview-group,
|
|
22374
22357
|
.k-treeview .k-group {
|
|
@@ -22429,11 +22412,6 @@ $treeview-loadmore-focus-shadow: $treeview-item-focused-shadow !default;
|
|
|
22429
22412
|
.k-treeview .k-i-collapse {
|
|
22430
22413
|
margin-left: -$treeview-indent;
|
|
22431
22414
|
cursor: pointer;
|
|
22432
|
-
|
|
22433
|
-
+ .k-checkbox-wrap,
|
|
22434
|
-
+ .k-checkbox-wrapper {
|
|
22435
|
-
margin-left: $icon-spacing;
|
|
22436
|
-
}
|
|
22437
22415
|
}
|
|
22438
22416
|
|
|
22439
22417
|
|
|
@@ -22446,6 +22424,7 @@ $treeview-loadmore-focus-shadow: $treeview-item-focused-shadow !default;
|
|
|
22446
22424
|
// Checkbox
|
|
22447
22425
|
.k-treeview .k-checkbox-wrap,
|
|
22448
22426
|
.k-treeview .k-checkbox-wrapper {
|
|
22427
|
+
margin-left: $icon-spacing;
|
|
22449
22428
|
margin-right: $icon-spacing;
|
|
22450
22429
|
align-self: center;
|
|
22451
22430
|
}
|
|
@@ -22509,11 +22488,6 @@ $treeview-loadmore-focus-shadow: $treeview-item-focused-shadow !default;
|
|
|
22509
22488
|
.k-treeview-toggle {
|
|
22510
22489
|
margin-left: 0;
|
|
22511
22490
|
margin-right: -$treeview-indent;
|
|
22512
|
-
|
|
22513
|
-
+ .k-checkbox-wrap,
|
|
22514
|
-
+ .k-checkbox-wrapper {
|
|
22515
|
-
margin-right: $icon-spacing;
|
|
22516
|
-
}
|
|
22517
22491
|
}
|
|
22518
22492
|
|
|
22519
22493
|
// Loading
|
|
@@ -22522,13 +22496,6 @@ $treeview-loadmore-focus-shadow: $treeview-item-focused-shadow !default;
|
|
|
22522
22496
|
margin-left: $icon-spacing;
|
|
22523
22497
|
}
|
|
22524
22498
|
|
|
22525
|
-
// Checkbox
|
|
22526
|
-
.k-checkbox-wrap,
|
|
22527
|
-
.k-checkbox-wrapper {
|
|
22528
|
-
margin-right: 0;
|
|
22529
|
-
margin-left: $icon-spacing;
|
|
22530
|
-
}
|
|
22531
|
-
|
|
22532
22499
|
// Treeview leaf
|
|
22533
22500
|
.k-treeview-leaf,
|
|
22534
22501
|
.k-in {
|
|
@@ -22539,8 +22506,8 @@ $treeview-loadmore-focus-shadow: $treeview-item-focused-shadow !default;
|
|
|
22539
22506
|
margin-left: $icon-spacing;
|
|
22540
22507
|
}
|
|
22541
22508
|
}
|
|
22542
|
-
|
|
22543
22509
|
}
|
|
22510
|
+
|
|
22544
22511
|
}
|
|
22545
22512
|
|
|
22546
22513
|
// #endregion
|
|
@@ -26008,10 +25975,10 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
26008
25975
|
margin-top: -($window-inner-padding-y / 2);
|
|
26009
25976
|
}
|
|
26010
25977
|
.k-window-content:first-child {
|
|
26011
|
-
padding-top:
|
|
25978
|
+
padding-top: clamp( #{$window-inner-padding-y}, #{$window-titlebar-padding-y}, #{$window-titlebar-padding-y} );
|
|
26012
25979
|
}
|
|
26013
25980
|
.k-window-content:last-child {
|
|
26014
|
-
padding-bottom:
|
|
25981
|
+
padding-bottom: clamp( #{$window-inner-padding-y}, #{$window-titlebar-padding-y}, #{$window-titlebar-padding-y} );
|
|
26015
25982
|
}
|
|
26016
25983
|
|
|
26017
25984
|
.k-window-iframecontent {
|
|
@@ -29566,7 +29533,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
29566
29533
|
color: inherit;
|
|
29567
29534
|
background-color: transparent;
|
|
29568
29535
|
display: flex;
|
|
29569
|
-
flex-
|
|
29536
|
+
flex-flow: column nowrap;
|
|
29570
29537
|
-webkit-touch-callout: none;
|
|
29571
29538
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
29572
29539
|
|
|
@@ -29659,6 +29626,9 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
29659
29626
|
left: 0;
|
|
29660
29627
|
transition: width .2s linear;
|
|
29661
29628
|
|
|
29629
|
+
// TODO: a better name
|
|
29630
|
+
display: none;
|
|
29631
|
+
|
|
29662
29632
|
&.k-complete {
|
|
29663
29633
|
width: 100%;
|
|
29664
29634
|
border-top-width: 0;
|
|
@@ -29672,6 +29642,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
29672
29642
|
|
|
29673
29643
|
> .k-tabstrip-items {
|
|
29674
29644
|
flex: 1 1 auto;
|
|
29645
|
+
flex-wrap: nowrap;
|
|
29675
29646
|
white-space: nowrap;
|
|
29676
29647
|
overflow: hidden;
|
|
29677
29648
|
}
|
|
@@ -33431,7 +33402,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33431
33402
|
padding: $grid-column-menu-popup-padding-y $grid-column-menu-popup-padding-x;
|
|
33432
33403
|
}
|
|
33433
33404
|
.k-popup > & {
|
|
33434
|
-
width: 100%;
|
|
33405
|
+
max-width: 100%;
|
|
33435
33406
|
}
|
|
33436
33407
|
|
|
33437
33408
|
.k-actions {
|
|
@@ -33675,12 +33646,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33675
33646
|
@include fill( $bg: $grid-sticky-selected-alt-bg );
|
|
33676
33647
|
}
|
|
33677
33648
|
|
|
33678
|
-
// Hovered state
|
|
33679
|
-
.k-state-hover td,
|
|
33680
|
-
tr:hover td {
|
|
33681
|
-
@include fill( $bg: $grid-sticky-hovered-bg );
|
|
33682
|
-
}
|
|
33683
|
-
|
|
33684
33649
|
// Selected hover
|
|
33685
33650
|
.k-state-selected:hover td,
|
|
33686
33651
|
.k-state-selected.k-state-hover td {
|
|
@@ -34449,6 +34414,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34449
34414
|
margin: 0;
|
|
34450
34415
|
}
|
|
34451
34416
|
.k-spreadsheet-tabstrip .k-loading {
|
|
34417
|
+
// TODO: better name
|
|
34452
34418
|
display: none;
|
|
34453
34419
|
}
|
|
34454
34420
|
.k-spreadsheet-tabstrip .k-content,
|
|
@@ -36934,9 +36900,13 @@ $treelist-footer-row-border-width: 1px !default;
|
|
|
36934
36900
|
padding: .4em .6em;
|
|
36935
36901
|
line-height: 1.6em;
|
|
36936
36902
|
|
|
36903
|
+
// TODO: see what this does and use a better name
|
|
36937
36904
|
.k-loading {
|
|
36938
36905
|
vertical-align: baseline;
|
|
36939
36906
|
margin-right: 5px;
|
|
36907
|
+
|
|
36908
|
+
// TODO
|
|
36909
|
+
display: none;
|
|
36940
36910
|
}
|
|
36941
36911
|
}
|
|
36942
36912
|
|
|
@@ -43067,10 +43037,16 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
43067
43037
|
|
|
43068
43038
|
.k-scroll-button {
|
|
43069
43039
|
height: 100%;
|
|
43040
|
+
aspect-ratio: auto;
|
|
43070
43041
|
position: absolute;
|
|
43071
43042
|
z-index: 2;
|
|
43072
43043
|
top: 50%;
|
|
43073
43044
|
transform: translateY(-50%);
|
|
43045
|
+
|
|
43046
|
+
.k-button-icon {
|
|
43047
|
+
min-width: auto;
|
|
43048
|
+
min-height: auto;
|
|
43049
|
+
}
|
|
43074
43050
|
}
|
|
43075
43051
|
.k-scroll-button-left {
|
|
43076
43052
|
left: 0;
|
|
@@ -43373,6 +43349,9 @@ $mediaplayer-titlebar-gradient: rgba( $mediaplayer-text, .7 ), rgba( $mediaplaye
|
|
|
43373
43349
|
padding: 0 (14px / 2);
|
|
43374
43350
|
align-items: center;
|
|
43375
43351
|
}
|
|
43352
|
+
.k-mediaplayer-volume {
|
|
43353
|
+
width: 100px;
|
|
43354
|
+
}
|
|
43376
43355
|
|
|
43377
43356
|
|
|
43378
43357
|
// Seekbar
|
|
@@ -43380,8 +43359,9 @@ $mediaplayer-titlebar-gradient: rgba( $mediaplayer-text, .7 ), rgba( $mediaplaye
|
|
|
43380
43359
|
width: 100%;
|
|
43381
43360
|
position: absolute;
|
|
43382
43361
|
z-index: 3;
|
|
43383
|
-
top:
|
|
43362
|
+
top: 0;
|
|
43384
43363
|
left: 0;
|
|
43364
|
+
transform: translateY( -50% );
|
|
43385
43365
|
}
|
|
43386
43366
|
.k-mediaplayer-seekbar .k-slider-track {
|
|
43387
43367
|
// sass-lint:disable no-important
|
|
@@ -43389,6 +43369,9 @@ $mediaplayer-titlebar-gradient: rgba( $mediaplayer-text, .7 ), rgba( $mediaplaye
|
|
|
43389
43369
|
// sass-lint:enable no-important
|
|
43390
43370
|
border-radius: 0;
|
|
43391
43371
|
}
|
|
43372
|
+
.k-mediaplayer-seekbar .k-slider-selection {
|
|
43373
|
+
border-radius: 0;
|
|
43374
|
+
}
|
|
43392
43375
|
|
|
43393
43376
|
.k-mediaplayer-fullscreen {
|
|
43394
43377
|
z-index: 10000;
|