@progress/kendo-theme-bootstrap 4.41.2-dev.0 → 4.41.3-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 +95 -123
- package/dist/all.scss +90 -115
- package/lib/swatches/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +3 -3
- package/lib/swatches/bootstrap-nordic.json +4 -4
- package/lib/swatches/bootstrap-urban.json +3 -3
- package/lib/swatches/bootstrap-vintage.json +3 -3
- package/modules/@progress/kendo-theme-default/lib/swatches/default-main-dark.json +4 -4
- package/modules/@progress/kendo-theme-default/package.json +2 -6
- package/modules/@progress/kendo-theme-default/scss/_variables.scss +1 -1
- package/modules/@progress/kendo-theme-default/scss/button/_layout.scss +2 -2
- package/modules/@progress/kendo-theme-default/scss/button/_theme.scss +1 -1
- package/modules/@progress/kendo-theme-default/scss/button/_variables.scss +2 -2
- package/modules/@progress/kendo-theme-default/scss/chat/_layout.scss +5 -0
- package/modules/@progress/kendo-theme-default/scss/chat/_theme.scss +3 -0
- package/modules/@progress/kendo-theme-default/scss/common/_selection.scss +2 -0
- package/modules/@progress/kendo-theme-default/scss/dataviz/_layout.scss +1 -15
- package/modules/@progress/kendo-theme-default/scss/dataviz/_theme.scss +2 -10
- package/modules/@progress/kendo-theme-default/scss/dataviz/_variables.scss +12 -13
- package/modules/@progress/kendo-theme-default/scss/datetime/_layout.scss +0 -17
- package/modules/@progress/kendo-theme-default/scss/input/_variables.scss +2 -2
- package/modules/@progress/kendo-theme-default/scss/maskedtextbox/_layout.scss +0 -5
- package/modules/@progress/kendo-theme-default/scss/notification/_layout.scss +2 -2
- package/modules/@progress/kendo-theme-default/scss/numerictextbox/_theme.scss +4 -0
- package/modules/@progress/kendo-theme-default/scss/pager/_theme.scss +2 -1
- package/modules/@progress/kendo-theme-default/scss/pivotgrid/_layout.scss +3 -3
- package/modules/@progress/kendo-theme-default/scss/popover/_layout.scss +1 -0
- package/modules/@progress/kendo-theme-default/scss/skeleton/_variables.scss +1 -1
- package/modules/@progress/kendo-theme-default/scss/spreadsheet/_layout.scss +12 -15
- package/modules/@progress/kendo-theme-default/scss/tabstrip/_layout.scss +15 -18
- package/modules/@progress/kendo-theme-default/scss/textarea/_variables.scss +1 -1
- package/package.json +4 -8
- package/scss/_bootstrap-overrides.scss +10 -0
- package/scss/_variables.scss +2 -2
- package/scss/button/_variables.scss +2 -2
- package/scss/dataviz/_variables.scss +10 -13
- package/scss/grid/_variables.scss +4 -4
- package/scss/input/_variables.scss +1 -1
- package/scss/popover/_variables.scss +2 -0
- package/scss/skeleton/_variables.scss +1 -1
- package/scss/taskboard/_variables.scss +2 -2
- package/scss/textarea/_variables.scss +1 -1
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"base": "@progress/kendo-theme-default",
|
|
6
6
|
"previewColors": [
|
|
7
7
|
"#000000",
|
|
8
|
-
"#
|
|
8
|
+
"#151515",
|
|
9
9
|
"#ff6358",
|
|
10
10
|
"#eb5b51",
|
|
11
11
|
"#ffffff"
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
"component-bg": {
|
|
108
108
|
"name": "Component background",
|
|
109
109
|
"type": "color",
|
|
110
|
-
"value": "#
|
|
110
|
+
"value": "#101010"
|
|
111
111
|
},
|
|
112
112
|
"base-text": {
|
|
113
113
|
"name": "Header text color",
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
"base-bg": {
|
|
118
118
|
"name": "Header background",
|
|
119
119
|
"type": "color",
|
|
120
|
-
"value": "#
|
|
120
|
+
"value": "#151515"
|
|
121
121
|
},
|
|
122
122
|
"hovered-text": {
|
|
123
123
|
"name": "Hover text color",
|
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
"hovered-bg": {
|
|
128
128
|
"name": "Hover background",
|
|
129
129
|
"type": "color",
|
|
130
|
-
"value": "#
|
|
130
|
+
"value": "#202020"
|
|
131
131
|
},
|
|
132
132
|
"selected-text": {
|
|
133
133
|
"name": "Selected text color",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-default",
|
|
3
3
|
"description": "SASS resources for the default Kendo UI theme",
|
|
4
|
-
"version": "4.41.
|
|
4
|
+
"version": "4.41.3-dev.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -45,11 +45,7 @@
|
|
|
45
45
|
"dart:watch": "gulp dart:watch",
|
|
46
46
|
"dart:swatches": "gulp dart:swatches",
|
|
47
47
|
"dart:flat": "gulp dart:flat",
|
|
48
|
-
"twbs-compat": "gulp sass --file ./build/twbs-compat.scss",
|
|
49
48
|
"prepublishOnly": "echo 'no prebublish for default theme'"
|
|
50
49
|
},
|
|
51
|
-
"
|
|
52
|
-
"bootstrap": "^5.0.2"
|
|
53
|
-
},
|
|
54
|
-
"gitHead": "1987b103aba532e62c9bb4a63b957d7bfdc200a4"
|
|
50
|
+
"gitHead": "4c5f70ca87b87ff582d9b0968b78fd01eddbc07a"
|
|
55
51
|
}
|
|
@@ -251,7 +251,7 @@ $component-text: $body-text !default;
|
|
|
251
251
|
/// Border color of a component.
|
|
252
252
|
/// Note: do not use this variable directly. Instead derive it as `$component-name-border` e.g. `$grid-border: component-border !default;`.
|
|
253
253
|
/// @group component
|
|
254
|
-
$component-border: rgba( black, .08 ) !default;
|
|
254
|
+
$component-border: rgba( if( $dark-theme, $white, $black ), .08 ) !default;
|
|
255
255
|
|
|
256
256
|
|
|
257
257
|
/// The background of the components' chrome area.
|
|
@@ -306,11 +306,11 @@
|
|
|
306
306
|
|
|
307
307
|
// k-button
|
|
308
308
|
> .k-button:first-child {
|
|
309
|
-
@include border-
|
|
309
|
+
@include border-right-radius( $button-border-radius );
|
|
310
310
|
}
|
|
311
311
|
> .k-split-button-arrow,
|
|
312
312
|
> .k-button:last-child {
|
|
313
|
-
@include border-
|
|
313
|
+
@include border-left-radius( $button-border-radius );
|
|
314
314
|
}
|
|
315
315
|
}
|
|
316
316
|
}
|
|
@@ -127,6 +127,6 @@ $flat-button-focus-opacity: null !default;
|
|
|
127
127
|
$flat-button-active-opacity: .16 !default;
|
|
128
128
|
$flat-button-selected-opacity: .2 !default;
|
|
129
129
|
|
|
130
|
-
$clear-button-text:
|
|
131
|
-
$clear-button-hover-text:
|
|
130
|
+
$clear-button-text: inherit !default;
|
|
131
|
+
$clear-button-hover-text: inherit !default;
|
|
132
132
|
$clear-button-focused-opacity: .1 !default;
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
position: absolute;
|
|
5
5
|
z-index: 100000;
|
|
6
6
|
}
|
|
7
|
+
|
|
7
8
|
.k-marquee-color,
|
|
8
9
|
.k-marquee-text {
|
|
9
10
|
position: absolute;
|
|
@@ -12,6 +13,7 @@
|
|
|
12
13
|
width: 100%;
|
|
13
14
|
height: 100%;
|
|
14
15
|
}
|
|
16
|
+
|
|
15
17
|
.k-marquee-color {
|
|
16
18
|
color: $selected-text;
|
|
17
19
|
background-color: $selected-bg;
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
font-size: $chart-font-size;
|
|
40
40
|
line-height: $chart-line-height;
|
|
41
41
|
-webkit-touch-callout: none;
|
|
42
|
-
-webkit-tap-highlight-color: $
|
|
42
|
+
-webkit-tap-highlight-color: $rgba-transparent;
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
.k-chart,
|
|
@@ -180,20 +180,6 @@
|
|
|
180
180
|
height: 100%;
|
|
181
181
|
}
|
|
182
182
|
|
|
183
|
-
.k-marquee {
|
|
184
|
-
position: absolute;
|
|
185
|
-
z-index: 100000;
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
.k-marquee-color,
|
|
189
|
-
.k-marquee-text {
|
|
190
|
-
position: absolute;
|
|
191
|
-
top: 0;
|
|
192
|
-
left: 0;
|
|
193
|
-
width: 100%;
|
|
194
|
-
height: 100%;
|
|
195
|
-
}
|
|
196
|
-
|
|
197
183
|
// Navigator hint
|
|
198
184
|
.k-navigator-hint div {
|
|
199
185
|
position: absolute;
|
|
@@ -63,10 +63,10 @@
|
|
|
63
63
|
// Tooltip
|
|
64
64
|
// TODO
|
|
65
65
|
.k-chart-tooltip {
|
|
66
|
-
color: $
|
|
66
|
+
color: $white;
|
|
67
67
|
}
|
|
68
68
|
.k-chart-tooltip-inverse {
|
|
69
|
-
color:
|
|
69
|
+
color: $black;
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
.k-chart-crosshair-tooltip,
|
|
@@ -112,14 +112,6 @@
|
|
|
112
112
|
background-color: $component-bg;
|
|
113
113
|
opacity: .8;
|
|
114
114
|
}
|
|
115
|
-
|
|
116
|
-
.k-marquee-color {
|
|
117
|
-
background-color: $chart-selection-marque-background;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
.k-marquee-color {
|
|
121
|
-
opacity: .6;
|
|
122
|
-
}
|
|
123
115
|
}
|
|
124
116
|
|
|
125
117
|
|
|
@@ -95,12 +95,14 @@ $chart-pane-title-font-size: $chart-label-font-size !default;
|
|
|
95
95
|
$chart-pane-title-font-weight: $font-weight-normal !default;
|
|
96
96
|
|
|
97
97
|
$chart-inactive: rgba( $body-text, .5 ) !default;
|
|
98
|
+
|
|
98
99
|
/// The color of the Chart grid lines (major).
|
|
99
100
|
/// @group charts
|
|
100
|
-
$chart-major-lines: rgba(
|
|
101
|
+
$chart-major-lines: rgba( if( $dark-theme, $white, $black ), .08 ) !default;
|
|
102
|
+
|
|
101
103
|
/// The color of the Chart grid lines (minor).
|
|
102
104
|
/// @group charts
|
|
103
|
-
$chart-minor-lines: rgba(
|
|
105
|
+
$chart-minor-lines: rgba( if( $dark-theme, $white, $black ), .04 ) !default;
|
|
104
106
|
|
|
105
107
|
$chart-area-opacity: .6 !default;
|
|
106
108
|
$chart-area-inactive-opacity: .1 !default;
|
|
@@ -110,23 +112,20 @@ $chart-bg: $component-bg !default;
|
|
|
110
112
|
$chart-text: $component-text !default;
|
|
111
113
|
$chart-border: $component-border !default;
|
|
112
114
|
|
|
113
|
-
$chart-
|
|
114
|
-
|
|
115
|
-
$chart-crosshair-background: rgba(0, 0, 0, .5) !default;
|
|
115
|
+
$chart-crosshair-background: rgba( if( $dark-theme, $white, $black ), .5 ) !default;
|
|
116
116
|
$chart-crosshair-shared-tooltip-color: $chart-text !default;
|
|
117
117
|
$chart-crosshair-shared-tooltip-background: try-shade( $chart-bg, 1 ) !default;
|
|
118
|
-
$chart-crosshair-shared-tooltip-border: rgba(
|
|
118
|
+
$chart-crosshair-shared-tooltip-border: rgba( if( $dark-theme, $white, $black ), .08) !default;
|
|
119
119
|
|
|
120
|
-
$chart-notes-background: rgba(
|
|
121
|
-
$chart-notes-border: rgba(
|
|
122
|
-
$chart-notes-lines: rgba(
|
|
120
|
+
$chart-notes-background: rgba( if( $dark-theme, $white, $black ), .5 ) !default;
|
|
121
|
+
$chart-notes-border: rgba( if( $dark-theme, $white, $black ), .5 ) !default;
|
|
122
|
+
$chart-notes-lines: rgba( if( $dark-theme, $white, $black ), .5 ) !default;
|
|
123
123
|
|
|
124
|
-
$error-bars-background: rgba(
|
|
124
|
+
$error-bars-background: rgba( if( $dark-theme, $white, $black ), .5 ) !default;
|
|
125
125
|
|
|
126
|
-
$chart-selection-marque-background: $series-a !default;
|
|
127
126
|
$selection-handle-size: 22px !default;
|
|
128
|
-
$selection-border-color: rgba(
|
|
129
|
-
$selection-shadow: inset 0 1px 7px rgba(
|
|
127
|
+
$selection-border-color: rgba( if( $dark-theme, $white, $black ), .08 ) !default;
|
|
128
|
+
$selection-shadow: inset 0 1px 7px rgba( if( $dark-theme, $white, $black ), .15) !default;
|
|
130
129
|
|
|
131
130
|
|
|
132
131
|
// TreeMap
|
|
@@ -79,17 +79,12 @@
|
|
|
79
79
|
|
|
80
80
|
// Validation icon
|
|
81
81
|
.k-i-warning {
|
|
82
|
-
display: none;
|
|
83
82
|
position: absolute;
|
|
84
83
|
right: $padding-x;
|
|
85
84
|
top: 50%;
|
|
86
85
|
transform: translateY(-50%);
|
|
87
86
|
overflow: visible;
|
|
88
87
|
}
|
|
89
|
-
&.k-invalid .k-i-warning,
|
|
90
|
-
&.k-state-invalid .k-i-warning {
|
|
91
|
-
display: inline-block;
|
|
92
|
-
}
|
|
93
88
|
|
|
94
89
|
|
|
95
90
|
// RTL
|
|
@@ -191,18 +186,12 @@
|
|
|
191
186
|
|
|
192
187
|
// Validation icon
|
|
193
188
|
.k-i-warning {
|
|
194
|
-
display: none;
|
|
195
189
|
position: absolute;
|
|
196
190
|
top: 50%;
|
|
197
191
|
right: calc( #{ $button-inner-calc-size } + #{ $input-padding-x-sm });
|
|
198
192
|
transform: translateY(-50%);
|
|
199
193
|
overflow: visible;
|
|
200
194
|
}
|
|
201
|
-
.k-state-invalid {
|
|
202
|
-
.k-i-warning {
|
|
203
|
-
display: inline-block;
|
|
204
|
-
}
|
|
205
|
-
}
|
|
206
195
|
|
|
207
196
|
|
|
208
197
|
// RTL
|
|
@@ -292,18 +281,12 @@
|
|
|
292
281
|
|
|
293
282
|
// Validation icon
|
|
294
283
|
.k-i-warning {
|
|
295
|
-
display: none;
|
|
296
284
|
position: absolute;
|
|
297
285
|
top: 50%;
|
|
298
286
|
right: calc( #{ $button-inner-calc-size } * 2 + #{ $input-padding-x-sm });
|
|
299
287
|
transform: translateY(-50%);
|
|
300
288
|
overflow: visible;
|
|
301
289
|
}
|
|
302
|
-
.k-state-invalid {
|
|
303
|
-
.k-i-warning {
|
|
304
|
-
display: inline-block;
|
|
305
|
-
}
|
|
306
|
-
}
|
|
307
290
|
|
|
308
291
|
|
|
309
292
|
// RTL
|
|
@@ -54,8 +54,8 @@ $input-focused-shadow: 0 0 0 2px rgba( $input-focused-border, .08 ) !default;
|
|
|
54
54
|
$input-placeholder-text: $subtle-text !default;
|
|
55
55
|
$input-placeholder-opacity: 1 !default;
|
|
56
56
|
|
|
57
|
-
$input-selected-text: $primary-contrast !default;
|
|
58
57
|
$input-selected-bg: $primary !default;
|
|
58
|
+
$input-selected-text: $primary-contrast !default;
|
|
59
59
|
|
|
60
60
|
$input-clear-button-focused-background: $base-text !default;
|
|
61
61
|
$input-clear-button-focused-opacity: .2 !default;
|
|
@@ -93,5 +93,5 @@ $input-icon-opacity: null !default;
|
|
|
93
93
|
|
|
94
94
|
|
|
95
95
|
// Input separator
|
|
96
|
-
$input-separator-color: $
|
|
96
|
+
$input-separator-color: $input-text !default;
|
|
97
97
|
$input-separator-opacity: .5 !default;
|
|
@@ -44,13 +44,13 @@
|
|
|
44
44
|
> .k-icon {
|
|
45
45
|
margin-top: $notification-icon-offset;
|
|
46
46
|
margin-right: $notification-icon-spacing;
|
|
47
|
-
flex:
|
|
47
|
+
flex: none;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
> .k-i-close {
|
|
51
51
|
margin-right: 0;
|
|
52
52
|
margin-left: $notification-icon-spacing;
|
|
53
|
-
flex:
|
|
53
|
+
flex: none;
|
|
54
54
|
cursor: pointer;
|
|
55
55
|
}
|
|
56
56
|
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
display: inline-flex;
|
|
48
48
|
flex-direction: row;
|
|
49
49
|
position: absolute;
|
|
50
|
-
z-index:
|
|
50
|
+
z-index: 2;
|
|
51
51
|
top: 0;
|
|
52
52
|
left: 0;
|
|
53
53
|
|
|
@@ -64,6 +64,11 @@
|
|
|
64
64
|
// Tabstrip
|
|
65
65
|
.k-spreadsheet-tabstrip {
|
|
66
66
|
padding-top: $toolbar-padding-y;
|
|
67
|
+
position: relative;
|
|
68
|
+
z-index: 1;
|
|
69
|
+
}
|
|
70
|
+
.k-spreadsheet-tabstrip .k-tabstrip-items-wrapper {
|
|
71
|
+
margin: 0;
|
|
67
72
|
}
|
|
68
73
|
.k-spreadsheet-tabstrip .k-loading {
|
|
69
74
|
display: none;
|
|
@@ -217,17 +222,17 @@
|
|
|
217
222
|
|
|
218
223
|
// Sheets bar
|
|
219
224
|
.k-spreadsheet-sheets-bar {
|
|
220
|
-
padding: 0 $
|
|
225
|
+
padding: 0 0 map-get( $spacing, 1 ) map-get( $spacing, 1 );
|
|
221
226
|
border-width: 1px 0 0;
|
|
222
227
|
border-style: solid;
|
|
223
228
|
border-color: inherit;
|
|
224
229
|
display: flex;
|
|
225
230
|
flex-direction: row;
|
|
226
|
-
align-items:
|
|
231
|
+
align-items: flex-start;
|
|
227
232
|
position: relative;
|
|
228
233
|
}
|
|
229
234
|
.k-spreadsheet-sheets-bar-add {
|
|
230
|
-
|
|
235
|
+
align-self: center;
|
|
231
236
|
|
|
232
237
|
&:not(:hover) {
|
|
233
238
|
border-color: transparent;
|
|
@@ -236,22 +241,13 @@
|
|
|
236
241
|
}
|
|
237
242
|
}
|
|
238
243
|
.k-spreadsheet-sheets-items {
|
|
239
|
-
margin-top: -1px;
|
|
240
244
|
flex: 1;
|
|
241
245
|
overflow: hidden;
|
|
242
246
|
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
margin: 0 $button-calc-size !important;
|
|
247
|
+
.k-tabstrip-items-wrapper {
|
|
248
|
+
margin: 0;
|
|
246
249
|
border-width: 0;
|
|
247
250
|
}
|
|
248
|
-
.k-tabstrip-prev {
|
|
249
|
-
left: 0 !important;
|
|
250
|
-
}
|
|
251
|
-
.k-tabstrip-next {
|
|
252
|
-
right: 0 !important;
|
|
253
|
-
}
|
|
254
|
-
// sass-lint:enable no-important
|
|
255
251
|
|
|
256
252
|
.k-item {
|
|
257
253
|
.k-link {
|
|
@@ -266,6 +262,7 @@
|
|
|
266
262
|
display: inline-flex;
|
|
267
263
|
flex-direction: row;
|
|
268
264
|
vertical-align: middle;
|
|
265
|
+
align-self: center;
|
|
269
266
|
}
|
|
270
267
|
}
|
|
271
268
|
}
|
|
@@ -32,6 +32,8 @@
|
|
|
32
32
|
border-width: 0;
|
|
33
33
|
border-style: solid;
|
|
34
34
|
border-color: inherit;
|
|
35
|
+
position: relative;
|
|
36
|
+
z-index: 2;
|
|
35
37
|
}
|
|
36
38
|
|
|
37
39
|
.k-tabstrip-items {
|
|
@@ -39,7 +41,6 @@
|
|
|
39
41
|
display: flex;
|
|
40
42
|
flex-direction: row;
|
|
41
43
|
flex: 0 0 auto;
|
|
42
|
-
position: relative;
|
|
43
44
|
|
|
44
45
|
.k-item {
|
|
45
46
|
margin: 0;
|
|
@@ -83,6 +84,8 @@
|
|
|
83
84
|
display: none;
|
|
84
85
|
overflow: auto;
|
|
85
86
|
flex: 1 1 auto;
|
|
87
|
+
position: relative;
|
|
88
|
+
z-index: 1;
|
|
86
89
|
|
|
87
90
|
&.k-state-active {
|
|
88
91
|
display: block;
|
|
@@ -117,9 +120,8 @@
|
|
|
117
120
|
|
|
118
121
|
|
|
119
122
|
// Scrolling
|
|
120
|
-
.k-tabstrip
|
|
123
|
+
.k-tabstrip-scrollable {
|
|
121
124
|
> .k-tabstrip-items-wrapper {
|
|
122
|
-
border-width: 0;
|
|
123
125
|
|
|
124
126
|
> .k-tabstrip-items {
|
|
125
127
|
flex: 1 1 auto;
|
|
@@ -144,11 +146,6 @@
|
|
|
144
146
|
}
|
|
145
147
|
}
|
|
146
148
|
}
|
|
147
|
-
|
|
148
|
-
> .k-content,
|
|
149
|
-
> .k-tabstrip-content {
|
|
150
|
-
border-width: $tabstrip-content-border-width;
|
|
151
|
-
}
|
|
152
149
|
}
|
|
153
150
|
|
|
154
151
|
|
|
@@ -156,6 +153,7 @@
|
|
|
156
153
|
.k-tabstrip-top {
|
|
157
154
|
> .k-tabstrip-items-wrapper {
|
|
158
155
|
border-bottom-width: $tabstrip-border-width;
|
|
156
|
+
margin-bottom: -$tabstrip-content-border-width;
|
|
159
157
|
|
|
160
158
|
.k-item {
|
|
161
159
|
@include border-top-radius( $tabstrip-item-border-radius );
|
|
@@ -174,12 +172,13 @@
|
|
|
174
172
|
> .k-content,
|
|
175
173
|
> .k-tabstrip-content {
|
|
176
174
|
@include border-bottom-radius( $tabstrip-item-border-radius );
|
|
177
|
-
border-top-
|
|
175
|
+
border-top-color: transparent !important; // sass-lint:disable-line no-important
|
|
178
176
|
}
|
|
179
177
|
}
|
|
180
178
|
.k-tabstrip-bottom {
|
|
181
179
|
> .k-tabstrip-items-wrapper {
|
|
182
180
|
border-top-width: $tabstrip-border-width;
|
|
181
|
+
margin-top: -$tabstrip-content-border-width;
|
|
183
182
|
|
|
184
183
|
.k-item {
|
|
185
184
|
@include border-bottom-radius( $tabstrip-item-border-radius );
|
|
@@ -198,7 +197,7 @@
|
|
|
198
197
|
> .k-content,
|
|
199
198
|
> .k-tabstrip-content {
|
|
200
199
|
@include border-top-radius( $tabstrip-item-border-radius );
|
|
201
|
-
border-bottom-
|
|
200
|
+
border-bottom-color: transparent !important; // sass-lint:disable-line no-important
|
|
202
201
|
}
|
|
203
202
|
}
|
|
204
203
|
.k-tabstrip-left {
|
|
@@ -206,6 +205,7 @@
|
|
|
206
205
|
|
|
207
206
|
> .k-tabstrip-items-wrapper {
|
|
208
207
|
border-right-width: $tabstrip-border-width;
|
|
208
|
+
margin-right: -$tabstrip-content-border-width;
|
|
209
209
|
|
|
210
210
|
> .k-tabstrip-items {
|
|
211
211
|
display: inline-flex;
|
|
@@ -229,10 +229,8 @@
|
|
|
229
229
|
> .k-content,
|
|
230
230
|
> .k-tabstrip-content {
|
|
231
231
|
@include border-right-radius( $tabstrip-item-border-radius );
|
|
232
|
-
// sass-lint:disable no-important
|
|
233
|
-
|
|
234
|
-
// sass-lint:enable no-important
|
|
235
|
-
border-left-width: 0;
|
|
232
|
+
margin: 0 !important; // sass-lint:disable-line no-important
|
|
233
|
+
border-left-color: transparent !important; // sass-lint:disable-line no-important
|
|
236
234
|
}
|
|
237
235
|
|
|
238
236
|
}
|
|
@@ -241,6 +239,7 @@
|
|
|
241
239
|
|
|
242
240
|
> .k-tabstrip-items-wrapper {
|
|
243
241
|
border-left-width: $tabstrip-border-width;
|
|
242
|
+
margin-left: -$tabstrip-content-border-width;
|
|
244
243
|
|
|
245
244
|
> .k-tabstrip-items {
|
|
246
245
|
display: inline-flex;
|
|
@@ -264,10 +263,8 @@
|
|
|
264
263
|
> .k-content,
|
|
265
264
|
> .k-tabstrip-content {
|
|
266
265
|
@include border-left-radius( $tabstrip-item-border-radius );
|
|
267
|
-
// sass-lint:disable no-important
|
|
268
|
-
|
|
269
|
-
// sass-lint:enable no-important
|
|
270
|
-
border-right-width: 0;
|
|
266
|
+
margin: 0 !important; // sass-lint:disable-line no-important
|
|
267
|
+
border-right-color: transparent !important; // sass-lint:disable-line no-important
|
|
271
268
|
}
|
|
272
269
|
}
|
|
273
270
|
|
|
@@ -48,7 +48,7 @@ $textarea-focus-shadow: $input-focused-shadow !default;
|
|
|
48
48
|
$textarea-placeholder-text: $input-placeholder-text !default;
|
|
49
49
|
$textarea-placeholder-opacity: $input-placeholder-opacity !default;
|
|
50
50
|
|
|
51
|
-
$textarea-selected-text: $input-selected-text !default;
|
|
52
51
|
$textarea-selected-bg: $input-selected-bg !default;
|
|
52
|
+
$textarea-selected-text: $input-selected-text !default;
|
|
53
53
|
|
|
54
54
|
$textarea-invalid-focus-shadow: $invalid-shadow !default;
|
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": "4.41.
|
|
4
|
+
"version": "4.41.3-dev.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -49,13 +49,9 @@
|
|
|
49
49
|
"prepublishOnly": "./build/embed-dependencies 'bootstrap' '@progress/kendo-theme-default'",
|
|
50
50
|
"postpublish": "rm -rf modules && git checkout scss"
|
|
51
51
|
},
|
|
52
|
-
"
|
|
53
|
-
"@progress/kendo-theme-default": "^4.41.0",
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"@progress/kendo-theme-default": "^4.41.3-dev.0",
|
|
54
54
|
"bootstrap": "^5.1.0"
|
|
55
55
|
},
|
|
56
|
-
"
|
|
57
|
-
"@progress/kendo-theme-default": "^4.41.2-dev.0",
|
|
58
|
-
"bootstrap": "^5.1.0"
|
|
59
|
-
},
|
|
60
|
-
"gitHead": "1987b103aba532e62c9bb4a63b957d7bfdc200a4"
|
|
56
|
+
"gitHead": "4c5f70ca87b87ff582d9b0968b78fd01eddbc07a"
|
|
61
57
|
}
|