@progress/kendo-theme-bootstrap 5.0.2-dev.0 → 5.1.2-dev.1
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 +4 -4
- package/dist/all.scss +69 -64
- package/dist/bootstrap-3-dark.scss +3 -3
- package/dist/bootstrap-3.scss +3 -3
- package/dist/bootstrap-4-dark.scss +2 -2
- package/dist/bootstrap-4.scss +2 -2
- package/dist/bootstrap-main-dark.scss +2 -2
- package/dist/bootstrap-main.scss +2 -2
- package/dist/bootstrap-nordic.scss +2 -2
- package/dist/bootstrap-turquoise-dark.scss +2 -2
- package/dist/bootstrap-turquoise.scss +2 -2
- package/dist/bootstrap-urban.scss +2 -2
- package/dist/bootstrap-vintage.scss +2 -2
- package/lib/swatches/bootstrap-3-dark.json +3 -3
- package/lib/swatches/bootstrap-3.json +3 -3
- package/lib/swatches/bootstrap-4-dark.json +2 -2
- package/lib/swatches/bootstrap-4.json +2 -2
- package/lib/swatches/bootstrap-main-dark.json +2 -2
- package/lib/swatches/bootstrap-main.json +2 -2
- package/lib/swatches/bootstrap-nordic.json +2 -2
- package/lib/swatches/bootstrap-turquoise-dark.json +2 -2
- package/lib/swatches/bootstrap-turquoise.json +2 -2
- package/lib/swatches/bootstrap-urban.json +2 -2
- package/lib/swatches/bootstrap-vintage.json +2 -2
- package/package.json +3 -3
- package/scss/_bootstrap-overrides.scss +0 -38
- package/scss/_variables.scss +4 -3
- package/scss/avatar/_variables.scss +1 -1
- package/scss/button/_variables.scss +1 -1
- package/scss/chip/_variables.scss +4 -4
- package/scss/datetimepicker/_variables.scss +1 -0
- package/scss/fab/_variables.scss +1 -1
- package/scss/input/_variables.scss +12 -0
- package/scss/notification/_variables.scss +1 -1
- package/scss/overlay/_variables.scss +1 -1
package/dist/all.css
CHANGED
|
@@ -13198,11 +13198,11 @@ textarea.k-input-inner {
|
|
|
13198
13198
|
}
|
|
13199
13199
|
|
|
13200
13200
|
.k-input-spinner .k-spinner-increase .k-icon {
|
|
13201
|
-
bottom:
|
|
13201
|
+
bottom: auto;
|
|
13202
13202
|
}
|
|
13203
13203
|
|
|
13204
13204
|
.k-input-spinner .k-spinner-decrease .k-icon {
|
|
13205
|
-
top:
|
|
13205
|
+
top: auto;
|
|
13206
13206
|
}
|
|
13207
13207
|
|
|
13208
13208
|
.k-searchbar {
|
|
@@ -24097,13 +24097,13 @@ kendo-card-footer {
|
|
|
24097
24097
|
color: #0a58ca;
|
|
24098
24098
|
}
|
|
24099
24099
|
|
|
24100
|
-
.k-tabstrip-items-wrapper .k-item.k-state-active, .k-tabstrip-items-wrapper .k-item.k-state-selected {
|
|
24100
|
+
.k-tabstrip-items-wrapper .k-item:active, .k-tabstrip-items-wrapper .k-item.k-state-active, .k-tabstrip-items-wrapper .k-item.k-state-selected {
|
|
24101
24101
|
border-color: #dee2e6;
|
|
24102
24102
|
color: #212529;
|
|
24103
24103
|
background-color: #ffffff;
|
|
24104
24104
|
}
|
|
24105
24105
|
|
|
24106
|
-
.k-tabstrip-items-wrapper .k-item.k-state-focused {
|
|
24106
|
+
.k-tabstrip-items-wrapper .k-item:focus, .k-tabstrip-items-wrapper .k-item.k-state-focused {
|
|
24107
24107
|
box-shadow: inset 0 0 0 3px rgba(33, 37, 41, 0.15);
|
|
24108
24108
|
}
|
|
24109
24109
|
|
package/dist/all.scss
CHANGED
|
@@ -458,6 +458,7 @@ $wcag-light: white !default;
|
|
|
458
458
|
// #endregion
|
|
459
459
|
// #region @import "_misc.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/core/functions/_misc.scss
|
|
460
460
|
$svg-escaped-characters: (
|
|
461
|
+
("%", "%25"),
|
|
461
462
|
("<", "%3c"),
|
|
462
463
|
(">", "%3e"),
|
|
463
464
|
("#", "%23"),
|
|
@@ -951,46 +952,8 @@ $gray-700: #495057 !default;
|
|
|
951
952
|
$gray-800: #343a40 !default;
|
|
952
953
|
$gray-900: #212529 !default;
|
|
953
954
|
$black: #000000 !default;
|
|
954
|
-
|
|
955
|
-
$blue: #0d6efd !default;
|
|
956
|
-
$indigo: #6610f2 !default;
|
|
957
|
-
$purple: #6f42c1 !default;
|
|
958
|
-
$pink: #d63384 !default;
|
|
959
|
-
$red: #dc3545 !default;
|
|
960
|
-
$orange: #fd7e14 !default;
|
|
961
|
-
$yellow: #ffc107 !default;
|
|
962
|
-
$green: #198754 !default;
|
|
963
|
-
$teal: #20c997 !default;
|
|
964
|
-
$cyan: #0dcaf0 !default;
|
|
965
|
-
|
|
966
|
-
$primary: $blue !default;
|
|
967
|
-
$secondary: $gray-600 !default;
|
|
968
|
-
$tertiary: $purple !default;
|
|
969
|
-
$success: $green !default;
|
|
970
|
-
$info: $cyan !default;
|
|
971
|
-
$warning: $yellow !default;
|
|
972
|
-
$danger: $red !default;
|
|
973
|
-
$light: $gray-100 !default;
|
|
974
|
-
$dark: $gray-900 !default;
|
|
975
|
-
|
|
976
|
-
$error: $danger !default;
|
|
977
|
-
$inverse: if( $dark-theme, $light, $dark ) !default;
|
|
978
955
|
// stylelint-enable scss/dollar-variable-colon-space-after
|
|
979
956
|
|
|
980
|
-
|
|
981
|
-
$theme-colors: (
|
|
982
|
-
"primary": $primary,
|
|
983
|
-
"secondary": $secondary,
|
|
984
|
-
"tertiary": $tertiary,
|
|
985
|
-
"info": $info,
|
|
986
|
-
"success": $success,
|
|
987
|
-
"warning": $warning,
|
|
988
|
-
"error": $error,
|
|
989
|
-
"dark": $dark,
|
|
990
|
-
"light": $light,
|
|
991
|
-
"inverse": $inverse
|
|
992
|
-
) !default;
|
|
993
|
-
|
|
994
957
|
$body-bg: $white !default;
|
|
995
958
|
$body-color: contrast-wcag( $body-bg, $gray-900, $gray-100 ) !default;
|
|
996
959
|
|
|
@@ -2993,6 +2956,7 @@ $enable-grid-classes: true !default;
|
|
|
2993
2956
|
$use-calc-badge-size: true !default;
|
|
2994
2957
|
$use-input-button-width: false !default;
|
|
2995
2958
|
$use-input-spinner-width: false !default;
|
|
2959
|
+
$use-input-spinner-icon-offset: false !default;
|
|
2996
2960
|
$use-picker-select-width: false !default;
|
|
2997
2961
|
|
|
2998
2962
|
|
|
@@ -3180,12 +3144,12 @@ $dark: $dark !default;
|
|
|
3180
3144
|
/// @type Color
|
|
3181
3145
|
$light: $light !default;
|
|
3182
3146
|
|
|
3183
|
-
/// Inverse color of the theme. Depending on the theme luminance dark or
|
|
3147
|
+
/// Inverse color of the theme. Depending on the theme luminance dark or light, it will be light or dark
|
|
3184
3148
|
/// @group color-system
|
|
3185
3149
|
$inverse: if( $dark-theme, $light, $dark ) !default;
|
|
3186
3150
|
|
|
3187
3151
|
|
|
3188
|
-
$theme-colors: (
|
|
3152
|
+
$kendo-theme-colors: (
|
|
3189
3153
|
"primary": $primary,
|
|
3190
3154
|
"secondary": $secondary,
|
|
3191
3155
|
"tertiary": $tertiary,
|
|
@@ -3231,7 +3195,7 @@ $app-border: contrast-wcag( $app-bg, $gray-300, $gray-700 ) !default;
|
|
|
3231
3195
|
|
|
3232
3196
|
// Component
|
|
3233
3197
|
/// Background color of a component.
|
|
3234
|
-
/// Note: do not use this variable directly. Instead derive it as `$component-name-bg` e.g. `$grid-bg: $component-bg !
|
|
3198
|
+
/// Note: do not use this variable directly. Instead derive it as `$component-name-bg` e.g. `$grid-bg: $component-bg !default;`.
|
|
3235
3199
|
/// @group component
|
|
3236
3200
|
$component-bg: $body-bg !default;
|
|
3237
3201
|
/// Text color of a component.
|
|
@@ -5401,7 +5365,7 @@ $utils-border-radius: (
|
|
|
5401
5365
|
0: 0
|
|
5402
5366
|
) !default;
|
|
5403
5367
|
|
|
5404
|
-
$utils-border-color: $theme-colors !default;
|
|
5368
|
+
$utils-border-color: $kendo-theme-colors !default;
|
|
5405
5369
|
|
|
5406
5370
|
$utils-border-radius-sides: (
|
|
5407
5371
|
default: border-radius,
|
|
@@ -6499,7 +6463,7 @@ $utils-border-radius: (
|
|
|
6499
6463
|
|
|
6500
6464
|
.k-color-inherit { color: inherit; }
|
|
6501
6465
|
|
|
6502
|
-
@each $name, $color in $theme-colors {
|
|
6466
|
+
@each $name, $color in $kendo-theme-colors {
|
|
6503
6467
|
.k-text-#{$name},
|
|
6504
6468
|
.k-color-#{$name} {
|
|
6505
6469
|
color: $color !important;
|
|
@@ -6513,7 +6477,7 @@ $utils-border-radius: (
|
|
|
6513
6477
|
|
|
6514
6478
|
// sass-lint:disable-block no-important
|
|
6515
6479
|
|
|
6516
|
-
@each $name, $bg-color in $theme-colors {
|
|
6480
|
+
@each $name, $bg-color in $kendo-theme-colors {
|
|
6517
6481
|
.k-bg-#{$name} {
|
|
6518
6482
|
background-color: $bg-color !important;
|
|
6519
6483
|
}
|
|
@@ -6530,7 +6494,7 @@ $utils-border-radius: (
|
|
|
6530
6494
|
|
|
6531
6495
|
@include exports( "common/decoration/variant" ) {
|
|
6532
6496
|
|
|
6533
|
-
@each $name, $variant in $theme-colors {
|
|
6497
|
+
@each $name, $variant in $kendo-theme-colors {
|
|
6534
6498
|
.k-state-#{$name} {
|
|
6535
6499
|
@include variant( $variant );
|
|
6536
6500
|
}
|
|
@@ -8042,7 +8006,7 @@ $message-box-link-text-decoration: underline !default;
|
|
|
8042
8006
|
// #region @import "~@progress/kendo-theme-default/scss/messagebox/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/messagebox/_theme.scss
|
|
8043
8007
|
@include exports("messagebox/theme") {
|
|
8044
8008
|
|
|
8045
|
-
@each $color-name, $color in $theme-colors {
|
|
8009
|
+
@each $color-name, $color in $kendo-theme-colors {
|
|
8046
8010
|
.k-messagebox-#{$color-name} {
|
|
8047
8011
|
@include fill(
|
|
8048
8012
|
color-level( $color, $message-box-text-level ),
|
|
@@ -9453,7 +9417,7 @@ $listgroup-item-border-width: $listgroup-border-width !default;
|
|
|
9453
9417
|
|
|
9454
9418
|
// Component
|
|
9455
9419
|
// #region @import "_variables.scss"; -> packages/bootstrap/scss/overlay/_variables.scss
|
|
9456
|
-
$overlay-theme-colors: $theme-colors !default;
|
|
9420
|
+
$overlay-theme-colors: $kendo-theme-colors !default;
|
|
9457
9421
|
|
|
9458
9422
|
$overlay-bg: $black !default;
|
|
9459
9423
|
$overlay-opacity: .5 !default;
|
|
@@ -10005,7 +9969,7 @@ $badge-dot-size-lg: 12px !default;
|
|
|
10005
9969
|
@include exports( "badge/theme" ) {
|
|
10006
9970
|
|
|
10007
9971
|
// Solid badges
|
|
10008
|
-
@each $name, $color in $theme-colors {
|
|
9972
|
+
@each $name, $color in $kendo-theme-colors {
|
|
10009
9973
|
.k-badge-solid.k-badge-#{$name} {
|
|
10010
9974
|
border-color: $color;
|
|
10011
9975
|
color: contrast-wcag( $color );
|
|
@@ -10019,7 +9983,7 @@ $badge-dot-size-lg: 12px !default;
|
|
|
10019
9983
|
background-color: $component-bg;
|
|
10020
9984
|
}
|
|
10021
9985
|
|
|
10022
|
-
@each $name, $color in $theme-colors {
|
|
9986
|
+
@each $name, $color in $kendo-theme-colors {
|
|
10023
9987
|
.k-badge-outline.k-badge-#{$name} {
|
|
10024
9988
|
color: $color;
|
|
10025
9989
|
}
|
|
@@ -10107,7 +10071,7 @@ $kendo-button-arrow-padding-y: $kendo-button-padding-y !default;
|
|
|
10107
10071
|
/// Theme colors map for the button.
|
|
10108
10072
|
/// @group button
|
|
10109
10073
|
$kendo-button-theme-colors: map-merge(
|
|
10110
|
-
$theme-colors,
|
|
10074
|
+
$kendo-theme-colors,
|
|
10111
10075
|
( "base": #e4e7eb )
|
|
10112
10076
|
) !default;
|
|
10113
10077
|
|
|
@@ -11021,6 +10985,12 @@ $kendo-input-focus-text: $input-focus-color !default;
|
|
|
11021
10985
|
$kendo-input-focus-border: $input-focus-border-color !default;
|
|
11022
10986
|
$kendo-input-focus-shadow: $input-focus-box-shadow !default;
|
|
11023
10987
|
|
|
10988
|
+
$kendo-input-disabled-bg: null !default;
|
|
10989
|
+
$kendo-input-disabled-text: null !default;
|
|
10990
|
+
$kendo-input-disabled-border: null !default;
|
|
10991
|
+
$kendo-input-disabled-gradient: null !default;
|
|
10992
|
+
$kendo-input-disabled-shadow: null !default;
|
|
10993
|
+
|
|
11024
10994
|
$kendo-picker-bg: $kendo-button-bg !default;
|
|
11025
10995
|
$kendo-picker-text: $kendo-button-text !default;
|
|
11026
10996
|
$kendo-picker-border: $kendo-button-border !default;
|
|
@@ -11039,6 +11009,12 @@ $kendo-picker-focus-border: $kendo-button-focus-border !default;
|
|
|
11039
11009
|
$kendo-picker-focus-gradient: $kendo-button-focus-gradient !default;
|
|
11040
11010
|
$kendo-picker-focus-shadow: $kendo-button-focus-shadow !default;
|
|
11041
11011
|
|
|
11012
|
+
$kendo-picker-disabled-bg: null !default;
|
|
11013
|
+
$kendo-picker-disabled-text: null !default;
|
|
11014
|
+
$kendo-picker-disabled-border: null !default;
|
|
11015
|
+
$kendo-picker-disabled-gradient: null !default;
|
|
11016
|
+
$kendo-picker-disabled-shadow: null !default;
|
|
11017
|
+
|
|
11042
11018
|
$kendo-input-placeholder-text: $input-placeholder-color !default;
|
|
11043
11019
|
$kendo-input-placeholder-opacity: 1 !default;
|
|
11044
11020
|
|
|
@@ -11341,10 +11317,10 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
11341
11317
|
}
|
|
11342
11318
|
}
|
|
11343
11319
|
.k-spinner-increase .k-icon {
|
|
11344
|
-
bottom:
|
|
11320
|
+
bottom: if( $use-input-spinner-icon-offset, calc( -1 * #{$kendo-input-spinner-icon-offset}), auto );
|
|
11345
11321
|
}
|
|
11346
11322
|
.k-spinner-decrease .k-icon {
|
|
11347
|
-
top:
|
|
11323
|
+
top: if( $use-input-spinner-icon-offset, calc( -1 * #{$kendo-input-spinner-icon-offset}), auto );
|
|
11348
11324
|
}
|
|
11349
11325
|
}
|
|
11350
11326
|
|
|
@@ -11541,6 +11517,19 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
11541
11517
|
@include box-shadow( $kendo-input-focus-shadow );
|
|
11542
11518
|
}
|
|
11543
11519
|
|
|
11520
|
+
//Disabled
|
|
11521
|
+
&:disabled,
|
|
11522
|
+
&[disabled],
|
|
11523
|
+
&.k-disabled {
|
|
11524
|
+
@include fill(
|
|
11525
|
+
$kendo-input-disabled-text,
|
|
11526
|
+
$kendo-input-disabled-bg,
|
|
11527
|
+
$kendo-input-disabled-border,
|
|
11528
|
+
$kendo-input-disabled-gradient
|
|
11529
|
+
);
|
|
11530
|
+
@include box-shadow( $kendo-input-disabled-shadow );
|
|
11531
|
+
}
|
|
11532
|
+
|
|
11544
11533
|
// Invalid
|
|
11545
11534
|
&.k-invalid,
|
|
11546
11535
|
&.ng-invalid.ng-touched,
|
|
@@ -11604,6 +11593,19 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
11604
11593
|
@include box-shadow( $kendo-picker-focus-shadow );
|
|
11605
11594
|
}
|
|
11606
11595
|
|
|
11596
|
+
//Disabled
|
|
11597
|
+
&:disabled,
|
|
11598
|
+
&[disabled],
|
|
11599
|
+
&.k-disabled {
|
|
11600
|
+
@include fill(
|
|
11601
|
+
$kendo-picker-disabled-text,
|
|
11602
|
+
$kendo-picker-disabled-bg,
|
|
11603
|
+
$kendo-picker-disabled-border,
|
|
11604
|
+
$kendo-picker-disabled-gradient
|
|
11605
|
+
);
|
|
11606
|
+
@include box-shadow( $kendo-picker-disabled-shadow );
|
|
11607
|
+
}
|
|
11608
|
+
|
|
11607
11609
|
// Invalid
|
|
11608
11610
|
&.k-invalid,
|
|
11609
11611
|
&.ng-invalid.ng-touched,
|
|
@@ -12861,7 +12863,7 @@ $kendo-avatar-sizes: (
|
|
|
12861
12863
|
|
|
12862
12864
|
/// Theme colors map of the avatar.
|
|
12863
12865
|
/// @group avatar
|
|
12864
|
-
$kendo-avatar-theme-colors: $theme-colors !default;
|
|
12866
|
+
$kendo-avatar-theme-colors: $kendo-theme-colors !default;
|
|
12865
12867
|
|
|
12866
12868
|
// #endregion
|
|
12867
12869
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/avatar/_layout.scss
|
|
@@ -13065,10 +13067,10 @@ $kendo-chip-base-bg: if( $dark-theme, contrast-wcag($kendo-button-text), $kendo-
|
|
|
13065
13067
|
/// @group chip
|
|
13066
13068
|
$kendo-chip-theme-colors: (
|
|
13067
13069
|
"base": $kendo-chip-base-bg,
|
|
13068
|
-
"error": map-get( $theme-colors, "error" ),
|
|
13069
|
-
"info": map-get( $theme-colors, "info" ),
|
|
13070
|
-
"warning": map-get( $theme-colors, "warning" ),
|
|
13071
|
-
"success": map-get( $theme-colors, "success" )
|
|
13070
|
+
"error": map-get( $kendo-theme-colors, "error" ),
|
|
13071
|
+
"info": map-get( $kendo-theme-colors, "info" ),
|
|
13072
|
+
"warning": map-get( $kendo-theme-colors, "warning" ),
|
|
13073
|
+
"success": map-get( $kendo-theme-colors, "success" )
|
|
13072
13074
|
) !default;
|
|
13073
13075
|
|
|
13074
13076
|
/// The base background color of solid chip.
|
|
@@ -14114,7 +14116,7 @@ $loader-container-font-size-lg: $font-size-lg !default;
|
|
|
14114
14116
|
// #region @import "~@progress/kendo-theme-default/scss/loader/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/loader/_theme.scss
|
|
14115
14117
|
@include exports( "loader/theme" ) {
|
|
14116
14118
|
|
|
14117
|
-
@each $name, $color in $theme-colors {
|
|
14119
|
+
@each $name, $color in $kendo-theme-colors {
|
|
14118
14120
|
.k-loader-#{$name} {
|
|
14119
14121
|
@if $name == "secondary" {
|
|
14120
14122
|
color: $loader-secondary-bg;
|
|
@@ -20452,6 +20454,7 @@ $coloreditor-views-gap: $coloreditor-spacer !default;
|
|
|
20452
20454
|
// DateTime
|
|
20453
20455
|
$datetime-width: calc( #{$calendar-cell-size * 8} + #{$infinite-calendar-view-padding-x * 2}) !default;
|
|
20454
20456
|
|
|
20457
|
+
|
|
20455
20458
|
// #endregion
|
|
20456
20459
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/datetimepicker/_layout.scss
|
|
20457
20460
|
// #region @import "~@progress/kendo-theme-default/scss/datetimepicker/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/datetimepicker/_layout.scss
|
|
@@ -23447,7 +23450,7 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
|
|
|
23447
23450
|
|
|
23448
23451
|
|
|
23449
23452
|
// AppBar theme colors
|
|
23450
|
-
@each $name, $color in $theme-colors {
|
|
23453
|
+
@each $name, $color in $kendo-theme-colors {
|
|
23451
23454
|
.k-appbar-#{$name} {
|
|
23452
23455
|
@if $name == "light" {
|
|
23453
23456
|
color: $appbar-light-text;
|
|
@@ -23584,7 +23587,7 @@ $kendo-fab-item-icon-height: $kendo-fab-item-icon-width !default;
|
|
|
23584
23587
|
|
|
23585
23588
|
/// Theme colors map for the FAB.
|
|
23586
23589
|
/// @group floating-action-button
|
|
23587
|
-
$kendo-fab-theme-colors: $theme-colors !default;
|
|
23590
|
+
$kendo-fab-theme-colors: $kendo-theme-colors !default;
|
|
23588
23591
|
|
|
23589
23592
|
/// The base shadow of the FAB.
|
|
23590
23593
|
/// @group floating-action-button
|
|
@@ -25083,7 +25086,7 @@ $notification-themes: () !default;
|
|
|
25083
25086
|
// sass-lint:enable indentation
|
|
25084
25087
|
}
|
|
25085
25088
|
|
|
25086
|
-
@each $theme, $props in $theme-colors {
|
|
25089
|
+
@each $theme, $props in $kendo-theme-colors {
|
|
25087
25090
|
$notification-themes: map-merge($notification-themes, ($theme: notification-theme($theme, $props)) );
|
|
25088
25091
|
}
|
|
25089
25092
|
|
|
@@ -25797,7 +25800,7 @@ $card-focus-callout-box-shadow-w: $card-focus-shadow !default;
|
|
|
25797
25800
|
|
|
25798
25801
|
|
|
25799
25802
|
// Card theme colors
|
|
25800
|
-
@each $name, $color in $theme-colors {
|
|
25803
|
+
@each $name, $color in $kendo-theme-colors {
|
|
25801
25804
|
.k-card-#{$name} {
|
|
25802
25805
|
background-color: tint($color, 10);
|
|
25803
25806
|
color: shade($color, 6);
|
|
@@ -26296,7 +26299,7 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
26296
26299
|
@include exports("bottom-navigation/theme") {
|
|
26297
26300
|
|
|
26298
26301
|
// Solid
|
|
26299
|
-
@each $name, $color in $theme-colors {
|
|
26302
|
+
@each $name, $color in $kendo-theme-colors {
|
|
26300
26303
|
.k-bottom-nav-solid.k-bottom-nav-#{$name} {
|
|
26301
26304
|
@include fill(
|
|
26302
26305
|
$color: true-mix( $color, contrast-wcag( $color ), 35%),
|
|
@@ -26329,7 +26332,7 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
26329
26332
|
@include fill( $bg: rgba($bottom-nav-flat-text, .05) );
|
|
26330
26333
|
}
|
|
26331
26334
|
|
|
26332
|
-
@each $name, $color in $theme-colors {
|
|
26335
|
+
@each $name, $color in $kendo-theme-colors {
|
|
26333
26336
|
&.k-bottom-nav-#{$name} .k-bottom-nav-item.k-state-selected {
|
|
26334
26337
|
@if $name == "secondary" or $name == "light" {
|
|
26335
26338
|
@include fill( $color: try-shade($color, 3) );
|
|
@@ -28407,6 +28410,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28407
28410
|
);
|
|
28408
28411
|
}
|
|
28409
28412
|
|
|
28413
|
+
&:active,
|
|
28410
28414
|
&.k-state-active,
|
|
28411
28415
|
&.k-state-selected {
|
|
28412
28416
|
@include fill(
|
|
@@ -28417,6 +28421,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28417
28421
|
);
|
|
28418
28422
|
}
|
|
28419
28423
|
|
|
28424
|
+
&:focus,
|
|
28420
28425
|
&.k-state-focused {
|
|
28421
28426
|
@include box-shadow( $tabstrip-item-focused-shadow );
|
|
28422
28427
|
}
|
|
@@ -29,9 +29,9 @@ $hovered-text: #ffffff;
|
|
|
29
29
|
$hovered-bg: #333333;
|
|
30
30
|
$selected-text: #ffffff;
|
|
31
31
|
$selected-bg: #337ab7;
|
|
32
|
-
$button-text: #ffffff;
|
|
33
|
-
$button-bg: #222222;
|
|
34
|
-
$button-border: #333333;
|
|
32
|
+
$kendo-button-text: #ffffff;
|
|
33
|
+
$kendo-button-bg: #222222;
|
|
34
|
+
$kendo-button-border: #333333;
|
|
35
35
|
$link-text: #337ab7;
|
|
36
36
|
$link-hover-text: #23527c;
|
|
37
37
|
$series-a: #0275d8;
|
package/dist/bootstrap-3.scss
CHANGED
|
@@ -28,9 +28,9 @@ $hovered-text: #333333;
|
|
|
28
28
|
$hovered-bg: #eeeeee;
|
|
29
29
|
$selected-text: #ffffff;
|
|
30
30
|
$selected-bg: #337ab7;
|
|
31
|
-
$button-text: #333333;
|
|
32
|
-
$button-bg: #ffffff;
|
|
33
|
-
$button-border: #dddddd;
|
|
31
|
+
$kendo-button-text: #333333;
|
|
32
|
+
$kendo-button-bg: #ffffff;
|
|
33
|
+
$kendo-button-border: #dddddd;
|
|
34
34
|
$link-text: #337ab7;
|
|
35
35
|
$link-hover-text: #23527c;
|
|
36
36
|
$series-a: #0275d8;
|
|
@@ -20,8 +20,8 @@ $hovered-text: #ffffff;
|
|
|
20
20
|
$hovered-bg: #343a40;
|
|
21
21
|
$selected-text: #ffffff;
|
|
22
22
|
$selected-bg: #007bff;
|
|
23
|
-
$button-text: #ffffff;
|
|
24
|
-
$button-bg: #343a40;
|
|
23
|
+
$kendo-button-text: #ffffff;
|
|
24
|
+
$kendo-button-bg: #343a40;
|
|
25
25
|
$link-text: #007bff;
|
|
26
26
|
$link-hover-text: #0056b3;
|
|
27
27
|
$series-a: #0275d8;
|
package/dist/bootstrap-4.scss
CHANGED
|
@@ -19,8 +19,8 @@ $hovered-text: #16181b;
|
|
|
19
19
|
$hovered-bg: #e9ecef;
|
|
20
20
|
$selected-text: #ffffff;
|
|
21
21
|
$selected-bg: #007bff;
|
|
22
|
-
$button-text: #212529;
|
|
23
|
-
$button-bg: #e4e7eb;
|
|
22
|
+
$kendo-button-text: #212529;
|
|
23
|
+
$kendo-button-bg: #e4e7eb;
|
|
24
24
|
$link-text: #007bff;
|
|
25
25
|
$link-hover-text: #0056b3;
|
|
26
26
|
$series-a: #0275d8;
|
|
@@ -20,8 +20,8 @@ $hovered-text: #ffffff;
|
|
|
20
20
|
$hovered-bg: #343a40;
|
|
21
21
|
$selected-text: #ffffff;
|
|
22
22
|
$selected-bg: #0d6efd;
|
|
23
|
-
$button-text: #ffffff;
|
|
24
|
-
$button-bg: #343a40;
|
|
23
|
+
$kendo-button-text: #ffffff;
|
|
24
|
+
$kendo-button-bg: #343a40;
|
|
25
25
|
$link-text: #0d6efd;
|
|
26
26
|
$link-hover-text: #0a58ca;
|
|
27
27
|
$series-a: #0d6efd;
|
package/dist/bootstrap-main.scss
CHANGED
|
@@ -19,8 +19,8 @@ $hovered-text: #16181b;
|
|
|
19
19
|
$hovered-bg: #e9ecef;
|
|
20
20
|
$selected-text: #ffffff;
|
|
21
21
|
$selected-bg: #0d6efd;
|
|
22
|
-
$button-text: #212529;
|
|
23
|
-
$button-bg: #e4e7eb;
|
|
22
|
+
$kendo-button-text: #212529;
|
|
23
|
+
$kendo-button-bg: #e4e7eb;
|
|
24
24
|
$link-text: #0d6efd;
|
|
25
25
|
$link-hover-text: #0a58ca;
|
|
26
26
|
$series-a: #0d6efd;
|
|
@@ -18,8 +18,8 @@ $hovered-text: #212529;
|
|
|
18
18
|
$hovered-bg: #e4e7eb;
|
|
19
19
|
$selected-text: #ffffff;
|
|
20
20
|
$selected-bg: #e7607b;
|
|
21
|
-
$button-text: #212529;
|
|
22
|
-
$button-bg: #d6e5e9;
|
|
21
|
+
$kendo-button-text: #212529;
|
|
22
|
+
$kendo-button-bg: #d6e5e9;
|
|
23
23
|
$link-text: #e7607b;
|
|
24
24
|
$link-hover-text: #da2146;
|
|
25
25
|
$series-a: #e7607b;
|
|
@@ -19,8 +19,8 @@ $hovered-text: #1eb97b;
|
|
|
19
19
|
$hovered-bg: #eeeff0;
|
|
20
20
|
$selected-text: #ffffff;
|
|
21
21
|
$selected-bg: #34d293;
|
|
22
|
-
$button-text: #ffffff;
|
|
23
|
-
$button-bg: #363940;
|
|
22
|
+
$kendo-button-text: #ffffff;
|
|
23
|
+
$kendo-button-bg: #363940;
|
|
24
24
|
$link-text: #10c4b2;
|
|
25
25
|
$link-hover-text: #0c9587;
|
|
26
26
|
$series-a: #34d293;
|
|
@@ -18,8 +18,8 @@ $hovered-text: #1eb97b;
|
|
|
18
18
|
$hovered-bg: #eeeff0;
|
|
19
19
|
$selected-text: #ffffff;
|
|
20
20
|
$selected-bg: #34d293;
|
|
21
|
-
$button-text: #212529;
|
|
22
|
-
$button-bg: #f1f4f1;
|
|
21
|
+
$kendo-button-text: #212529;
|
|
22
|
+
$kendo-button-bg: #f1f4f1;
|
|
23
23
|
$link-text: #34d293;
|
|
24
24
|
$link-hover-text: #229869;
|
|
25
25
|
$series-a: #34d293;
|
|
@@ -18,8 +18,8 @@ $hovered-text: #16181b;
|
|
|
18
18
|
$hovered-bg: #cfdee6;
|
|
19
19
|
$selected-text: #ffffff;
|
|
20
20
|
$selected-bg: #ff5c1a;
|
|
21
|
-
$button-text: #ffffff;
|
|
22
|
-
$button-bg: #5798be;
|
|
21
|
+
$kendo-button-text: #ffffff;
|
|
22
|
+
$kendo-button-bg: #5798be;
|
|
23
23
|
$link-text: #ff5c1a;
|
|
24
24
|
$link-hover-text: #e65317;
|
|
25
25
|
$series-a: #ff7943;
|
|
@@ -18,8 +18,8 @@ $hovered-text: #494138;
|
|
|
18
18
|
$hovered-bg: #dfdcd5;
|
|
19
19
|
$selected-text: #ffffff;
|
|
20
20
|
$selected-bg: #744662;
|
|
21
|
-
$button-text: #212529;
|
|
22
|
-
$button-bg: #dad2bd;
|
|
21
|
+
$kendo-button-text: #212529;
|
|
22
|
+
$kendo-button-bg: #dad2bd;
|
|
23
23
|
$link-text: #744662;
|
|
24
24
|
$link-hover-text: #44293a;
|
|
25
25
|
$series-a: #c67eab;
|
|
@@ -199,17 +199,17 @@
|
|
|
199
199
|
{
|
|
200
200
|
"name": "Button",
|
|
201
201
|
"variables": {
|
|
202
|
-
"button-text": {
|
|
202
|
+
"kendo-button-text": {
|
|
203
203
|
"name": "Button text color",
|
|
204
204
|
"type": "color",
|
|
205
205
|
"value": "#ffffff"
|
|
206
206
|
},
|
|
207
|
-
"button-bg": {
|
|
207
|
+
"kendo-button-bg": {
|
|
208
208
|
"name": "Button background",
|
|
209
209
|
"type": "color",
|
|
210
210
|
"value": "#222222"
|
|
211
211
|
},
|
|
212
|
-
"button-border": {
|
|
212
|
+
"kendo-button-border": {
|
|
213
213
|
"name": "Button background",
|
|
214
214
|
"type": "color",
|
|
215
215
|
"value": "#333333"
|
|
@@ -189,17 +189,17 @@
|
|
|
189
189
|
{
|
|
190
190
|
"name": "Button",
|
|
191
191
|
"variables": {
|
|
192
|
-
"button-text": {
|
|
192
|
+
"kendo-button-text": {
|
|
193
193
|
"name": "Button text color",
|
|
194
194
|
"type": "color",
|
|
195
195
|
"value": "#333333"
|
|
196
196
|
},
|
|
197
|
-
"button-bg": {
|
|
197
|
+
"kendo-button-bg": {
|
|
198
198
|
"name": "Button background",
|
|
199
199
|
"type": "color",
|
|
200
200
|
"value": "#ffffff"
|
|
201
201
|
},
|
|
202
|
-
"button-border": {
|
|
202
|
+
"kendo-button-border": {
|
|
203
203
|
"name": "Button background",
|
|
204
204
|
"type": "color",
|
|
205
205
|
"value": "#dddddd"
|
|
@@ -149,12 +149,12 @@
|
|
|
149
149
|
{
|
|
150
150
|
"name": "Button",
|
|
151
151
|
"variables": {
|
|
152
|
-
"button-text": {
|
|
152
|
+
"kendo-button-text": {
|
|
153
153
|
"name": "Button text color",
|
|
154
154
|
"type": "color",
|
|
155
155
|
"value": "#ffffff"
|
|
156
156
|
},
|
|
157
|
-
"button-bg": {
|
|
157
|
+
"kendo-button-bg": {
|
|
158
158
|
"name": "Button background",
|
|
159
159
|
"type": "color",
|
|
160
160
|
"value": "#343a40"
|
|
@@ -139,12 +139,12 @@
|
|
|
139
139
|
{
|
|
140
140
|
"name": "Button",
|
|
141
141
|
"variables": {
|
|
142
|
-
"button-text": {
|
|
142
|
+
"kendo-button-text": {
|
|
143
143
|
"name": "Button text color",
|
|
144
144
|
"type": "color",
|
|
145
145
|
"value": "#212529"
|
|
146
146
|
},
|
|
147
|
-
"button-bg": {
|
|
147
|
+
"kendo-button-bg": {
|
|
148
148
|
"name": "Button background",
|
|
149
149
|
"type": "color",
|
|
150
150
|
"value": "#e4e7eb"
|
|
@@ -149,12 +149,12 @@
|
|
|
149
149
|
{
|
|
150
150
|
"name": "Button",
|
|
151
151
|
"variables": {
|
|
152
|
-
"button-text": {
|
|
152
|
+
"kendo-button-text": {
|
|
153
153
|
"name": "Button text color",
|
|
154
154
|
"type": "color",
|
|
155
155
|
"value": "#ffffff"
|
|
156
156
|
},
|
|
157
|
-
"button-bg": {
|
|
157
|
+
"kendo-button-bg": {
|
|
158
158
|
"name": "Button background",
|
|
159
159
|
"type": "color",
|
|
160
160
|
"value": "#343a40"
|
|
@@ -139,12 +139,12 @@
|
|
|
139
139
|
{
|
|
140
140
|
"name": "Button",
|
|
141
141
|
"variables": {
|
|
142
|
-
"button-text": {
|
|
142
|
+
"kendo-button-text": {
|
|
143
143
|
"name": "Button text color",
|
|
144
144
|
"type": "color",
|
|
145
145
|
"value": "#212529"
|
|
146
146
|
},
|
|
147
|
-
"button-bg": {
|
|
147
|
+
"kendo-button-bg": {
|
|
148
148
|
"name": "Button background",
|
|
149
149
|
"type": "color",
|
|
150
150
|
"value": "#e4e7eb"
|
|
@@ -134,12 +134,12 @@
|
|
|
134
134
|
{
|
|
135
135
|
"name": "Button",
|
|
136
136
|
"variables": {
|
|
137
|
-
"button-text": {
|
|
137
|
+
"kendo-button-text": {
|
|
138
138
|
"name": "Button text color",
|
|
139
139
|
"type": "color",
|
|
140
140
|
"value": "#212529"
|
|
141
141
|
},
|
|
142
|
-
"button-bg": {
|
|
142
|
+
"kendo-button-bg": {
|
|
143
143
|
"name": "Button background",
|
|
144
144
|
"type": "color",
|
|
145
145
|
"value": "#d6e5e9"
|
|
@@ -144,12 +144,12 @@
|
|
|
144
144
|
{
|
|
145
145
|
"name": "Button",
|
|
146
146
|
"variables": {
|
|
147
|
-
"button-text": {
|
|
147
|
+
"kendo-button-text": {
|
|
148
148
|
"name": "Button text color",
|
|
149
149
|
"type": "color",
|
|
150
150
|
"value": "#ffffff"
|
|
151
151
|
},
|
|
152
|
-
"button-bg": {
|
|
152
|
+
"kendo-button-bg": {
|
|
153
153
|
"name": "Button background",
|
|
154
154
|
"type": "color",
|
|
155
155
|
"value": "#363940"
|
|
@@ -134,12 +134,12 @@
|
|
|
134
134
|
{
|
|
135
135
|
"name": "Button",
|
|
136
136
|
"variables": {
|
|
137
|
-
"button-text": {
|
|
137
|
+
"kendo-button-text": {
|
|
138
138
|
"name": "Button text color",
|
|
139
139
|
"type": "color",
|
|
140
140
|
"value": "#212529"
|
|
141
141
|
},
|
|
142
|
-
"button-bg": {
|
|
142
|
+
"kendo-button-bg": {
|
|
143
143
|
"name": "Button background",
|
|
144
144
|
"type": "color",
|
|
145
145
|
"value": "#f1f4f1"
|
|
@@ -134,12 +134,12 @@
|
|
|
134
134
|
{
|
|
135
135
|
"name": "Button",
|
|
136
136
|
"variables": {
|
|
137
|
-
"button-text": {
|
|
137
|
+
"kendo-button-text": {
|
|
138
138
|
"name": "Button text color",
|
|
139
139
|
"type": "color",
|
|
140
140
|
"value": "#ffffff"
|
|
141
141
|
},
|
|
142
|
-
"button-bg": {
|
|
142
|
+
"kendo-button-bg": {
|
|
143
143
|
"name": "Button background",
|
|
144
144
|
"type": "color",
|
|
145
145
|
"value": "#5798be"
|
|
@@ -134,12 +134,12 @@
|
|
|
134
134
|
{
|
|
135
135
|
"name": "Button",
|
|
136
136
|
"variables": {
|
|
137
|
-
"button-text": {
|
|
137
|
+
"kendo-button-text": {
|
|
138
138
|
"name": "Button text color",
|
|
139
139
|
"type": "color",
|
|
140
140
|
"value": "#212529"
|
|
141
141
|
},
|
|
142
|
-
"button-bg": {
|
|
142
|
+
"kendo-button-bg": {
|
|
143
143
|
"name": "Button background",
|
|
144
144
|
"type": "color",
|
|
145
145
|
"value": "#dad2bd"
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-bootstrap",
|
|
3
3
|
"description": "Bootstrap theme for Kendo UI",
|
|
4
|
-
"version": "5.
|
|
4
|
+
"version": "5.1.2-dev.1",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"postpublish": "echo 'no postpublish for bootstrap theme'"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@progress/kendo-theme-default": "^5.
|
|
52
|
+
"@progress/kendo-theme-default": "^5.1.2-dev.1",
|
|
53
53
|
"bootstrap": "^5.1.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "9adacd86a177c1376aba105dd03af3f38a4dcaff"
|
|
56
56
|
}
|
|
@@ -18,46 +18,8 @@ $gray-700: #495057 !default;
|
|
|
18
18
|
$gray-800: #343a40 !default;
|
|
19
19
|
$gray-900: #212529 !default;
|
|
20
20
|
$black: #000000 !default;
|
|
21
|
-
|
|
22
|
-
$blue: #0d6efd !default;
|
|
23
|
-
$indigo: #6610f2 !default;
|
|
24
|
-
$purple: #6f42c1 !default;
|
|
25
|
-
$pink: #d63384 !default;
|
|
26
|
-
$red: #dc3545 !default;
|
|
27
|
-
$orange: #fd7e14 !default;
|
|
28
|
-
$yellow: #ffc107 !default;
|
|
29
|
-
$green: #198754 !default;
|
|
30
|
-
$teal: #20c997 !default;
|
|
31
|
-
$cyan: #0dcaf0 !default;
|
|
32
|
-
|
|
33
|
-
$primary: $blue !default;
|
|
34
|
-
$secondary: $gray-600 !default;
|
|
35
|
-
$tertiary: $purple !default;
|
|
36
|
-
$success: $green !default;
|
|
37
|
-
$info: $cyan !default;
|
|
38
|
-
$warning: $yellow !default;
|
|
39
|
-
$danger: $red !default;
|
|
40
|
-
$light: $gray-100 !default;
|
|
41
|
-
$dark: $gray-900 !default;
|
|
42
|
-
|
|
43
|
-
$error: $danger !default;
|
|
44
|
-
$inverse: if( $dark-theme, $light, $dark ) !default;
|
|
45
21
|
// stylelint-enable scss/dollar-variable-colon-space-after
|
|
46
22
|
|
|
47
|
-
|
|
48
|
-
$theme-colors: (
|
|
49
|
-
"primary": $primary,
|
|
50
|
-
"secondary": $secondary,
|
|
51
|
-
"tertiary": $tertiary,
|
|
52
|
-
"info": $info,
|
|
53
|
-
"success": $success,
|
|
54
|
-
"warning": $warning,
|
|
55
|
-
"error": $error,
|
|
56
|
-
"dark": $dark,
|
|
57
|
-
"light": $light,
|
|
58
|
-
"inverse": $inverse
|
|
59
|
-
) !default;
|
|
60
|
-
|
|
61
23
|
$body-bg: $white !default;
|
|
62
24
|
$body-color: contrast-wcag( $body-bg, $gray-900, $gray-100 ) !default;
|
|
63
25
|
|
package/scss/_variables.scss
CHANGED
|
@@ -15,6 +15,7 @@ $enable-grid-classes: true !default;
|
|
|
15
15
|
$use-calc-badge-size: true !default;
|
|
16
16
|
$use-input-button-width: false !default;
|
|
17
17
|
$use-input-spinner-width: false !default;
|
|
18
|
+
$use-input-spinner-icon-offset: false !default;
|
|
18
19
|
$use-picker-select-width: false !default;
|
|
19
20
|
|
|
20
21
|
|
|
@@ -202,12 +203,12 @@ $dark: $dark !default;
|
|
|
202
203
|
/// @type Color
|
|
203
204
|
$light: $light !default;
|
|
204
205
|
|
|
205
|
-
/// Inverse color of the theme. Depending on the theme luminance dark or
|
|
206
|
+
/// Inverse color of the theme. Depending on the theme luminance dark or light, it will be light or dark
|
|
206
207
|
/// @group color-system
|
|
207
208
|
$inverse: if( $dark-theme, $light, $dark ) !default;
|
|
208
209
|
|
|
209
210
|
|
|
210
|
-
$theme-colors: (
|
|
211
|
+
$kendo-theme-colors: (
|
|
211
212
|
"primary": $primary,
|
|
212
213
|
"secondary": $secondary,
|
|
213
214
|
"tertiary": $tertiary,
|
|
@@ -253,7 +254,7 @@ $app-border: contrast-wcag( $app-bg, $gray-300, $gray-700 ) !default;
|
|
|
253
254
|
|
|
254
255
|
// Component
|
|
255
256
|
/// Background color of a component.
|
|
256
|
-
/// Note: do not use this variable directly. Instead derive it as `$component-name-bg` e.g. `$grid-bg: $component-bg !
|
|
257
|
+
/// Note: do not use this variable directly. Instead derive it as `$component-name-bg` e.g. `$grid-bg: $component-bg !default;`.
|
|
257
258
|
/// @group component
|
|
258
259
|
$component-bg: $body-bg !default;
|
|
259
260
|
/// Text color of a component.
|
|
@@ -66,10 +66,10 @@ $kendo-chip-base-bg: if( $dark-theme, contrast-wcag($kendo-button-text), $kendo-
|
|
|
66
66
|
/// @group chip
|
|
67
67
|
$kendo-chip-theme-colors: (
|
|
68
68
|
"base": $kendo-chip-base-bg,
|
|
69
|
-
"error": map-get( $theme-colors, "error" ),
|
|
70
|
-
"info": map-get( $theme-colors, "info" ),
|
|
71
|
-
"warning": map-get( $theme-colors, "warning" ),
|
|
72
|
-
"success": map-get( $theme-colors, "success" )
|
|
69
|
+
"error": map-get( $kendo-theme-colors, "error" ),
|
|
70
|
+
"info": map-get( $kendo-theme-colors, "info" ),
|
|
71
|
+
"warning": map-get( $kendo-theme-colors, "warning" ),
|
|
72
|
+
"success": map-get( $kendo-theme-colors, "success" )
|
|
73
73
|
) !default;
|
|
74
74
|
|
|
75
75
|
/// The base background color of solid chip.
|
package/scss/fab/_variables.scss
CHANGED
|
@@ -87,7 +87,7 @@ $kendo-fab-item-icon-height: $kendo-fab-item-icon-width !default;
|
|
|
87
87
|
|
|
88
88
|
/// Theme colors map for the FAB.
|
|
89
89
|
/// @group floating-action-button
|
|
90
|
-
$kendo-fab-theme-colors: $theme-colors !default;
|
|
90
|
+
$kendo-fab-theme-colors: $kendo-theme-colors !default;
|
|
91
91
|
|
|
92
92
|
/// The base shadow of the FAB.
|
|
93
93
|
/// @group floating-action-button
|
|
@@ -71,6 +71,12 @@ $kendo-input-focus-text: $input-focus-color !default;
|
|
|
71
71
|
$kendo-input-focus-border: $input-focus-border-color !default;
|
|
72
72
|
$kendo-input-focus-shadow: $input-focus-box-shadow !default;
|
|
73
73
|
|
|
74
|
+
$kendo-input-disabled-bg: null !default;
|
|
75
|
+
$kendo-input-disabled-text: null !default;
|
|
76
|
+
$kendo-input-disabled-border: null !default;
|
|
77
|
+
$kendo-input-disabled-gradient: null !default;
|
|
78
|
+
$kendo-input-disabled-shadow: null !default;
|
|
79
|
+
|
|
74
80
|
$kendo-picker-bg: $kendo-button-bg !default;
|
|
75
81
|
$kendo-picker-text: $kendo-button-text !default;
|
|
76
82
|
$kendo-picker-border: $kendo-button-border !default;
|
|
@@ -89,6 +95,12 @@ $kendo-picker-focus-border: $kendo-button-focus-border !default;
|
|
|
89
95
|
$kendo-picker-focus-gradient: $kendo-button-focus-gradient !default;
|
|
90
96
|
$kendo-picker-focus-shadow: $kendo-button-focus-shadow !default;
|
|
91
97
|
|
|
98
|
+
$kendo-picker-disabled-bg: null !default;
|
|
99
|
+
$kendo-picker-disabled-text: null !default;
|
|
100
|
+
$kendo-picker-disabled-border: null !default;
|
|
101
|
+
$kendo-picker-disabled-gradient: null !default;
|
|
102
|
+
$kendo-picker-disabled-shadow: null !default;
|
|
103
|
+
|
|
92
104
|
$kendo-input-placeholder-text: $input-placeholder-color !default;
|
|
93
105
|
$kendo-input-placeholder-opacity: 1 !default;
|
|
94
106
|
|
|
@@ -29,6 +29,6 @@ $notification-themes: () !default;
|
|
|
29
29
|
// sass-lint:enable indentation
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
@each $theme, $props in $theme-colors {
|
|
32
|
+
@each $theme, $props in $kendo-theme-colors {
|
|
33
33
|
$notification-themes: map-merge($notification-themes, ($theme: notification-theme($theme, $props)) );
|
|
34
34
|
}
|