@progress/kendo-theme-bootstrap 5.0.1 → 5.1.2-dev.0
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 +2 -2
- package/dist/all.scss +65 -62
- 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 +3 -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
|
@@ -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
|
@@ -951,46 +951,8 @@ $gray-700: #495057 !default;
|
|
|
951
951
|
$gray-800: #343a40 !default;
|
|
952
952
|
$gray-900: #212529 !default;
|
|
953
953
|
$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
954
|
// stylelint-enable scss/dollar-variable-colon-space-after
|
|
979
955
|
|
|
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
956
|
$body-bg: $white !default;
|
|
995
957
|
$body-color: contrast-wcag( $body-bg, $gray-900, $gray-100 ) !default;
|
|
996
958
|
|
|
@@ -3180,12 +3142,12 @@ $dark: $dark !default;
|
|
|
3180
3142
|
/// @type Color
|
|
3181
3143
|
$light: $light !default;
|
|
3182
3144
|
|
|
3183
|
-
/// Inverse color of the theme. Depending on the theme luminance dark or
|
|
3145
|
+
/// Inverse color of the theme. Depending on the theme luminance dark or light, it will be light or dark
|
|
3184
3146
|
/// @group color-system
|
|
3185
3147
|
$inverse: if( $dark-theme, $light, $dark ) !default;
|
|
3186
3148
|
|
|
3187
3149
|
|
|
3188
|
-
$theme-colors: (
|
|
3150
|
+
$kendo-theme-colors: (
|
|
3189
3151
|
"primary": $primary,
|
|
3190
3152
|
"secondary": $secondary,
|
|
3191
3153
|
"tertiary": $tertiary,
|
|
@@ -3231,7 +3193,7 @@ $app-border: contrast-wcag( $app-bg, $gray-300, $gray-700 ) !default;
|
|
|
3231
3193
|
|
|
3232
3194
|
// Component
|
|
3233
3195
|
/// 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 !
|
|
3196
|
+
/// Note: do not use this variable directly. Instead derive it as `$component-name-bg` e.g. `$grid-bg: $component-bg !default;`.
|
|
3235
3197
|
/// @group component
|
|
3236
3198
|
$component-bg: $body-bg !default;
|
|
3237
3199
|
/// Text color of a component.
|
|
@@ -5401,7 +5363,7 @@ $utils-border-radius: (
|
|
|
5401
5363
|
0: 0
|
|
5402
5364
|
) !default;
|
|
5403
5365
|
|
|
5404
|
-
$utils-border-color: $theme-colors !default;
|
|
5366
|
+
$utils-border-color: $kendo-theme-colors !default;
|
|
5405
5367
|
|
|
5406
5368
|
$utils-border-radius-sides: (
|
|
5407
5369
|
default: border-radius,
|
|
@@ -6499,7 +6461,7 @@ $utils-border-radius: (
|
|
|
6499
6461
|
|
|
6500
6462
|
.k-color-inherit { color: inherit; }
|
|
6501
6463
|
|
|
6502
|
-
@each $name, $color in $theme-colors {
|
|
6464
|
+
@each $name, $color in $kendo-theme-colors {
|
|
6503
6465
|
.k-text-#{$name},
|
|
6504
6466
|
.k-color-#{$name} {
|
|
6505
6467
|
color: $color !important;
|
|
@@ -6513,7 +6475,7 @@ $utils-border-radius: (
|
|
|
6513
6475
|
|
|
6514
6476
|
// sass-lint:disable-block no-important
|
|
6515
6477
|
|
|
6516
|
-
@each $name, $bg-color in $theme-colors {
|
|
6478
|
+
@each $name, $bg-color in $kendo-theme-colors {
|
|
6517
6479
|
.k-bg-#{$name} {
|
|
6518
6480
|
background-color: $bg-color !important;
|
|
6519
6481
|
}
|
|
@@ -6530,7 +6492,7 @@ $utils-border-radius: (
|
|
|
6530
6492
|
|
|
6531
6493
|
@include exports( "common/decoration/variant" ) {
|
|
6532
6494
|
|
|
6533
|
-
@each $name, $variant in $theme-colors {
|
|
6495
|
+
@each $name, $variant in $kendo-theme-colors {
|
|
6534
6496
|
.k-state-#{$name} {
|
|
6535
6497
|
@include variant( $variant );
|
|
6536
6498
|
}
|
|
@@ -8042,7 +8004,7 @@ $message-box-link-text-decoration: underline !default;
|
|
|
8042
8004
|
// #region @import "~@progress/kendo-theme-default/scss/messagebox/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/messagebox/_theme.scss
|
|
8043
8005
|
@include exports("messagebox/theme") {
|
|
8044
8006
|
|
|
8045
|
-
@each $color-name, $color in $theme-colors {
|
|
8007
|
+
@each $color-name, $color in $kendo-theme-colors {
|
|
8046
8008
|
.k-messagebox-#{$color-name} {
|
|
8047
8009
|
@include fill(
|
|
8048
8010
|
color-level( $color, $message-box-text-level ),
|
|
@@ -9453,7 +9415,7 @@ $listgroup-item-border-width: $listgroup-border-width !default;
|
|
|
9453
9415
|
|
|
9454
9416
|
// Component
|
|
9455
9417
|
// #region @import "_variables.scss"; -> packages/bootstrap/scss/overlay/_variables.scss
|
|
9456
|
-
$overlay-theme-colors: $theme-colors !default;
|
|
9418
|
+
$overlay-theme-colors: $kendo-theme-colors !default;
|
|
9457
9419
|
|
|
9458
9420
|
$overlay-bg: $black !default;
|
|
9459
9421
|
$overlay-opacity: .5 !default;
|
|
@@ -10005,7 +9967,7 @@ $badge-dot-size-lg: 12px !default;
|
|
|
10005
9967
|
@include exports( "badge/theme" ) {
|
|
10006
9968
|
|
|
10007
9969
|
// Solid badges
|
|
10008
|
-
@each $name, $color in $theme-colors {
|
|
9970
|
+
@each $name, $color in $kendo-theme-colors {
|
|
10009
9971
|
.k-badge-solid.k-badge-#{$name} {
|
|
10010
9972
|
border-color: $color;
|
|
10011
9973
|
color: contrast-wcag( $color );
|
|
@@ -10019,7 +9981,7 @@ $badge-dot-size-lg: 12px !default;
|
|
|
10019
9981
|
background-color: $component-bg;
|
|
10020
9982
|
}
|
|
10021
9983
|
|
|
10022
|
-
@each $name, $color in $theme-colors {
|
|
9984
|
+
@each $name, $color in $kendo-theme-colors {
|
|
10023
9985
|
.k-badge-outline.k-badge-#{$name} {
|
|
10024
9986
|
color: $color;
|
|
10025
9987
|
}
|
|
@@ -10107,7 +10069,7 @@ $kendo-button-arrow-padding-y: $kendo-button-padding-y !default;
|
|
|
10107
10069
|
/// Theme colors map for the button.
|
|
10108
10070
|
/// @group button
|
|
10109
10071
|
$kendo-button-theme-colors: map-merge(
|
|
10110
|
-
$theme-colors,
|
|
10072
|
+
$kendo-theme-colors,
|
|
10111
10073
|
( "base": #e4e7eb )
|
|
10112
10074
|
) !default;
|
|
10113
10075
|
|
|
@@ -11021,6 +10983,12 @@ $kendo-input-focus-text: $input-focus-color !default;
|
|
|
11021
10983
|
$kendo-input-focus-border: $input-focus-border-color !default;
|
|
11022
10984
|
$kendo-input-focus-shadow: $input-focus-box-shadow !default;
|
|
11023
10985
|
|
|
10986
|
+
$kendo-input-disabled-bg: null !default;
|
|
10987
|
+
$kendo-input-disabled-text: null !default;
|
|
10988
|
+
$kendo-input-disabled-border: null !default;
|
|
10989
|
+
$kendo-input-disabled-gradient: null !default;
|
|
10990
|
+
$kendo-input-disabled-shadow: null !default;
|
|
10991
|
+
|
|
11024
10992
|
$kendo-picker-bg: $kendo-button-bg !default;
|
|
11025
10993
|
$kendo-picker-text: $kendo-button-text !default;
|
|
11026
10994
|
$kendo-picker-border: $kendo-button-border !default;
|
|
@@ -11039,6 +11007,12 @@ $kendo-picker-focus-border: $kendo-button-focus-border !default;
|
|
|
11039
11007
|
$kendo-picker-focus-gradient: $kendo-button-focus-gradient !default;
|
|
11040
11008
|
$kendo-picker-focus-shadow: $kendo-button-focus-shadow !default;
|
|
11041
11009
|
|
|
11010
|
+
$kendo-picker-disabled-bg: null !default;
|
|
11011
|
+
$kendo-picker-disabled-text: null !default;
|
|
11012
|
+
$kendo-picker-disabled-border: null !default;
|
|
11013
|
+
$kendo-picker-disabled-gradient: null !default;
|
|
11014
|
+
$kendo-picker-disabled-shadow: null !default;
|
|
11015
|
+
|
|
11042
11016
|
$kendo-input-placeholder-text: $input-placeholder-color !default;
|
|
11043
11017
|
$kendo-input-placeholder-opacity: 1 !default;
|
|
11044
11018
|
|
|
@@ -11541,6 +11515,19 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
11541
11515
|
@include box-shadow( $kendo-input-focus-shadow );
|
|
11542
11516
|
}
|
|
11543
11517
|
|
|
11518
|
+
//Disabled
|
|
11519
|
+
&:disabled,
|
|
11520
|
+
&[disabled],
|
|
11521
|
+
&.k-disabled {
|
|
11522
|
+
@include fill(
|
|
11523
|
+
$kendo-input-disabled-text,
|
|
11524
|
+
$kendo-input-disabled-bg,
|
|
11525
|
+
$kendo-input-disabled-border,
|
|
11526
|
+
$kendo-input-disabled-gradient
|
|
11527
|
+
);
|
|
11528
|
+
@include box-shadow( $kendo-input-disabled-shadow );
|
|
11529
|
+
}
|
|
11530
|
+
|
|
11544
11531
|
// Invalid
|
|
11545
11532
|
&.k-invalid,
|
|
11546
11533
|
&.ng-invalid.ng-touched,
|
|
@@ -11604,6 +11591,19 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
11604
11591
|
@include box-shadow( $kendo-picker-focus-shadow );
|
|
11605
11592
|
}
|
|
11606
11593
|
|
|
11594
|
+
//Disabled
|
|
11595
|
+
&:disabled,
|
|
11596
|
+
&[disabled],
|
|
11597
|
+
&.k-disabled {
|
|
11598
|
+
@include fill(
|
|
11599
|
+
$kendo-picker-disabled-text,
|
|
11600
|
+
$kendo-picker-disabled-bg,
|
|
11601
|
+
$kendo-picker-disabled-border,
|
|
11602
|
+
$kendo-picker-disabled-gradient
|
|
11603
|
+
);
|
|
11604
|
+
@include box-shadow( $kendo-picker-disabled-shadow );
|
|
11605
|
+
}
|
|
11606
|
+
|
|
11607
11607
|
// Invalid
|
|
11608
11608
|
&.k-invalid,
|
|
11609
11609
|
&.ng-invalid.ng-touched,
|
|
@@ -12861,7 +12861,7 @@ $kendo-avatar-sizes: (
|
|
|
12861
12861
|
|
|
12862
12862
|
/// Theme colors map of the avatar.
|
|
12863
12863
|
/// @group avatar
|
|
12864
|
-
$kendo-avatar-theme-colors: $theme-colors !default;
|
|
12864
|
+
$kendo-avatar-theme-colors: $kendo-theme-colors !default;
|
|
12865
12865
|
|
|
12866
12866
|
// #endregion
|
|
12867
12867
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/avatar/_layout.scss
|
|
@@ -13065,10 +13065,10 @@ $kendo-chip-base-bg: if( $dark-theme, contrast-wcag($kendo-button-text), $kendo-
|
|
|
13065
13065
|
/// @group chip
|
|
13066
13066
|
$kendo-chip-theme-colors: (
|
|
13067
13067
|
"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" )
|
|
13068
|
+
"error": map-get( $kendo-theme-colors, "error" ),
|
|
13069
|
+
"info": map-get( $kendo-theme-colors, "info" ),
|
|
13070
|
+
"warning": map-get( $kendo-theme-colors, "warning" ),
|
|
13071
|
+
"success": map-get( $kendo-theme-colors, "success" )
|
|
13072
13072
|
) !default;
|
|
13073
13073
|
|
|
13074
13074
|
/// The base background color of solid chip.
|
|
@@ -14114,7 +14114,7 @@ $loader-container-font-size-lg: $font-size-lg !default;
|
|
|
14114
14114
|
// #region @import "~@progress/kendo-theme-default/scss/loader/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/loader/_theme.scss
|
|
14115
14115
|
@include exports( "loader/theme" ) {
|
|
14116
14116
|
|
|
14117
|
-
@each $name, $color in $theme-colors {
|
|
14117
|
+
@each $name, $color in $kendo-theme-colors {
|
|
14118
14118
|
.k-loader-#{$name} {
|
|
14119
14119
|
@if $name == "secondary" {
|
|
14120
14120
|
color: $loader-secondary-bg;
|
|
@@ -20452,6 +20452,7 @@ $coloreditor-views-gap: $coloreditor-spacer !default;
|
|
|
20452
20452
|
// DateTime
|
|
20453
20453
|
$datetime-width: calc( #{$calendar-cell-size * 8} + #{$infinite-calendar-view-padding-x * 2}) !default;
|
|
20454
20454
|
|
|
20455
|
+
|
|
20455
20456
|
// #endregion
|
|
20456
20457
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/datetimepicker/_layout.scss
|
|
20457
20458
|
// #region @import "~@progress/kendo-theme-default/scss/datetimepicker/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/datetimepicker/_layout.scss
|
|
@@ -23447,7 +23448,7 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
|
|
|
23447
23448
|
|
|
23448
23449
|
|
|
23449
23450
|
// AppBar theme colors
|
|
23450
|
-
@each $name, $color in $theme-colors {
|
|
23451
|
+
@each $name, $color in $kendo-theme-colors {
|
|
23451
23452
|
.k-appbar-#{$name} {
|
|
23452
23453
|
@if $name == "light" {
|
|
23453
23454
|
color: $appbar-light-text;
|
|
@@ -23584,7 +23585,7 @@ $kendo-fab-item-icon-height: $kendo-fab-item-icon-width !default;
|
|
|
23584
23585
|
|
|
23585
23586
|
/// Theme colors map for the FAB.
|
|
23586
23587
|
/// @group floating-action-button
|
|
23587
|
-
$kendo-fab-theme-colors: $theme-colors !default;
|
|
23588
|
+
$kendo-fab-theme-colors: $kendo-theme-colors !default;
|
|
23588
23589
|
|
|
23589
23590
|
/// The base shadow of the FAB.
|
|
23590
23591
|
/// @group floating-action-button
|
|
@@ -25083,7 +25084,7 @@ $notification-themes: () !default;
|
|
|
25083
25084
|
// sass-lint:enable indentation
|
|
25084
25085
|
}
|
|
25085
25086
|
|
|
25086
|
-
@each $theme, $props in $theme-colors {
|
|
25087
|
+
@each $theme, $props in $kendo-theme-colors {
|
|
25087
25088
|
$notification-themes: map-merge($notification-themes, ($theme: notification-theme($theme, $props)) );
|
|
25088
25089
|
}
|
|
25089
25090
|
|
|
@@ -25797,7 +25798,7 @@ $card-focus-callout-box-shadow-w: $card-focus-shadow !default;
|
|
|
25797
25798
|
|
|
25798
25799
|
|
|
25799
25800
|
// Card theme colors
|
|
25800
|
-
@each $name, $color in $theme-colors {
|
|
25801
|
+
@each $name, $color in $kendo-theme-colors {
|
|
25801
25802
|
.k-card-#{$name} {
|
|
25802
25803
|
background-color: tint($color, 10);
|
|
25803
25804
|
color: shade($color, 6);
|
|
@@ -26296,7 +26297,7 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
26296
26297
|
@include exports("bottom-navigation/theme") {
|
|
26297
26298
|
|
|
26298
26299
|
// Solid
|
|
26299
|
-
@each $name, $color in $theme-colors {
|
|
26300
|
+
@each $name, $color in $kendo-theme-colors {
|
|
26300
26301
|
.k-bottom-nav-solid.k-bottom-nav-#{$name} {
|
|
26301
26302
|
@include fill(
|
|
26302
26303
|
$color: true-mix( $color, contrast-wcag( $color ), 35%),
|
|
@@ -26329,7 +26330,7 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
26329
26330
|
@include fill( $bg: rgba($bottom-nav-flat-text, .05) );
|
|
26330
26331
|
}
|
|
26331
26332
|
|
|
26332
|
-
@each $name, $color in $theme-colors {
|
|
26333
|
+
@each $name, $color in $kendo-theme-colors {
|
|
26333
26334
|
&.k-bottom-nav-#{$name} .k-bottom-nav-item.k-state-selected {
|
|
26334
26335
|
@if $name == "secondary" or $name == "light" {
|
|
26335
26336
|
@include fill( $color: try-shade($color, 3) );
|
|
@@ -28407,6 +28408,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28407
28408
|
);
|
|
28408
28409
|
}
|
|
28409
28410
|
|
|
28411
|
+
&:active,
|
|
28410
28412
|
&.k-state-active,
|
|
28411
28413
|
&.k-state-selected {
|
|
28412
28414
|
@include fill(
|
|
@@ -28417,6 +28419,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28417
28419
|
);
|
|
28418
28420
|
}
|
|
28419
28421
|
|
|
28422
|
+
&:focus,
|
|
28420
28423
|
&.k-state-focused {
|
|
28421
28424
|
@include box-shadow( $tabstrip-item-focused-shadow );
|
|
28422
28425
|
}
|
|
@@ -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.0
|
|
4
|
+
"version": "5.1.2-dev.0",
|
|
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.0
|
|
52
|
+
"@progress/kendo-theme-default": "^5.1.2-dev.0",
|
|
53
53
|
"bootstrap": "^5.1.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "c492bbaeca2d104534c4b4329c41afd762bb563b"
|
|
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
|
@@ -202,12 +202,12 @@ $dark: $dark !default;
|
|
|
202
202
|
/// @type Color
|
|
203
203
|
$light: $light !default;
|
|
204
204
|
|
|
205
|
-
/// Inverse color of the theme. Depending on the theme luminance dark or
|
|
205
|
+
/// Inverse color of the theme. Depending on the theme luminance dark or light, it will be light or dark
|
|
206
206
|
/// @group color-system
|
|
207
207
|
$inverse: if( $dark-theme, $light, $dark ) !default;
|
|
208
208
|
|
|
209
209
|
|
|
210
|
-
$theme-colors: (
|
|
210
|
+
$kendo-theme-colors: (
|
|
211
211
|
"primary": $primary,
|
|
212
212
|
"secondary": $secondary,
|
|
213
213
|
"tertiary": $tertiary,
|
|
@@ -253,7 +253,7 @@ $app-border: contrast-wcag( $app-bg, $gray-300, $gray-700 ) !default;
|
|
|
253
253
|
|
|
254
254
|
// Component
|
|
255
255
|
/// 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 !
|
|
256
|
+
/// Note: do not use this variable directly. Instead derive it as `$component-name-bg` e.g. `$grid-bg: $component-bg !default;`.
|
|
257
257
|
/// @group component
|
|
258
258
|
$component-bg: $body-bg !default;
|
|
259
259
|
/// 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
|
}
|