@syncfusion/ej2-layouts 19.3.53 → 19.4.38
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/.github/PULL_REQUEST_TEMPLATE/Bug.md +41 -0
- package/.github/PULL_REQUEST_TEMPLATE/Feature.md +27 -0
- package/CHANGELOG.md +1 -9
- package/dist/ej2-layouts.umd.min.js +1 -1
- package/dist/global/ej2-layouts.min.js +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +6 -6
- package/styles/avatar/_fluent-definition.scss +25 -0
- package/styles/avatar/_layout.scss +5 -5
- package/styles/bootstrap-dark.css +8 -2
- package/styles/bootstrap.css +8 -2
- package/styles/bootstrap4.css +8 -2
- package/styles/bootstrap5-dark.css +8 -2
- package/styles/bootstrap5.css +8 -2
- package/styles/card/_bootstrap-dark-definition.scss +1 -0
- package/styles/card/_bootstrap-definition.scss +1 -0
- package/styles/card/_bootstrap5-definition.scss +1 -0
- package/styles/card/_fabric-dark-definition.scss +1 -0
- package/styles/card/_fabric-definition.scss +1 -0
- package/styles/card/_fluent-definition.scss +124 -0
- package/styles/card/_highcontrast-definition.scss +1 -0
- package/styles/card/_highcontrast-light-definition.scss +1 -0
- package/styles/card/_material-dark-definition.scss +1 -0
- package/styles/card/_material-definition.scss +1 -0
- package/styles/card/_tailwind-definition.scss +1 -0
- package/styles/card/_theme.scss +11 -0
- package/styles/dashboard-layout/_fluent-definition.scss +112 -0
- package/styles/dashboard-layout/_layout.scss +1 -1
- package/styles/dashboard-layout/_theme.scss +1 -1
- package/styles/dashboard-layout/icons/_bootstrap5.scss +1 -1
- package/styles/dashboard-layout/icons/_fluent.scss +81 -0
- package/styles/fabric-dark.css +8 -2
- package/styles/fabric.css +8 -2
- package/styles/highcontrast-light.css +8 -2
- package/styles/highcontrast.css +8 -2
- package/styles/material-dark.css +8 -2
- package/styles/material.css +8 -2
- package/styles/splitter/_bootstrap-dark-definition.scss +4 -1
- package/styles/splitter/_bootstrap-definition.scss +4 -1
- package/styles/splitter/_bootstrap4-definition.scss +4 -1
- package/styles/splitter/_bootstrap5-definition.scss +4 -1
- package/styles/splitter/_fabric-dark-definition.scss +4 -1
- package/styles/splitter/_fabric-definition.scss +4 -1
- package/styles/splitter/_fluent-definition.scss +28 -0
- package/styles/splitter/_highcontrast-definition.scss +4 -1
- package/styles/splitter/_highcontrast-light-definition.scss +4 -1
- package/styles/splitter/_layout.scss +2 -1
- package/styles/splitter/_material-dark-definition.scss +4 -1
- package/styles/splitter/_material-definition.scss +4 -1
- package/styles/splitter/_tailwind-definition.scss +4 -1
- package/styles/splitter/_theme.scss +6 -1
- package/styles/splitter/bootstrap-dark.css +8 -2
- package/styles/splitter/bootstrap.css +8 -2
- package/styles/splitter/bootstrap4.css +8 -2
- package/styles/splitter/bootstrap5-dark.css +8 -2
- package/styles/splitter/bootstrap5.css +8 -2
- package/styles/splitter/fabric-dark.css +8 -2
- package/styles/splitter/fabric.css +8 -2
- package/styles/splitter/highcontrast-light.css +8 -2
- package/styles/splitter/highcontrast.css +8 -2
- package/styles/splitter/icons/_fluent.scss +39 -0
- package/styles/splitter/material-dark.css +8 -2
- package/styles/splitter/material.css +8 -2
- package/styles/splitter/tailwind-dark.css +8 -2
- package/styles/splitter/tailwind.css +8 -2
- package/styles/tailwind-dark.css +8 -2
- package/styles/tailwind.css +8 -2
@@ -0,0 +1,41 @@
|
|
1
|
+
### Bug description
|
2
|
+
|
3
|
+
(Clearly and concisely describe the problem.)
|
4
|
+
|
5
|
+
### Root Cause / Analysis
|
6
|
+
|
7
|
+
(Briefly describe root cause/analysis of the problem. If there is an internal discussion on the forum, provide the link.)
|
8
|
+
|
9
|
+
### Reason for not identifying earlier
|
10
|
+
|
11
|
+
(Explain how it was missed to identify in our earlier testing/development.)
|
12
|
+
|
13
|
+
### Is Breaking issue.?
|
14
|
+
|
15
|
+
(If it is a breaking issue, provide the commit detail which caused this break.)
|
16
|
+
|
17
|
+
### Is reported by customer in incident/forum.?
|
18
|
+
|
19
|
+
(If it is reported by customer, provide the incident or forum details.)
|
20
|
+
|
21
|
+
### Solution Description
|
22
|
+
|
23
|
+
(Describe your code changes in detail for reviewers.)
|
24
|
+
|
25
|
+
### Areas affected and ensured
|
26
|
+
|
27
|
+
(List out the areas are affected by your code changes.)
|
28
|
+
|
29
|
+
### E2E report details against this fix
|
30
|
+
|
31
|
+
(Run E2E locally and mention the details with mail attachment.)
|
32
|
+
|
33
|
+
### Did you included unit test cases.?
|
34
|
+
|
35
|
+
(Provide unit testing spec coverage details.)
|
36
|
+
|
37
|
+
### Is there any API name changes.?
|
38
|
+
|
39
|
+
/label ~bug
|
40
|
+
/assign @ScrumMaster
|
41
|
+
/cc @ProductOwner
|
@@ -0,0 +1,27 @@
|
|
1
|
+
### Feature description
|
2
|
+
|
3
|
+
(Clearly and concisely describe the feature.)
|
4
|
+
|
5
|
+
### Analysis / Design
|
6
|
+
|
7
|
+
(Briefly describe analysis of the feature. If there is an internal discussion on the Forum, provide the link.)
|
8
|
+
|
9
|
+
### Solution Description
|
10
|
+
|
11
|
+
(Describe your code changes in detail for reviewers.)
|
12
|
+
|
13
|
+
### Areas affected and ensured
|
14
|
+
|
15
|
+
(List out the areas are affected by your code changes.)
|
16
|
+
|
17
|
+
### Did you included unit test cases.?
|
18
|
+
|
19
|
+
(Provide unit testing spec coverage details.)
|
20
|
+
|
21
|
+
### Is there any API name changes.?
|
22
|
+
|
23
|
+
(Provide new or update of API details)
|
24
|
+
|
25
|
+
/label ~bug
|
26
|
+
/assign @ScrumMaster
|
27
|
+
/cc @ProductOwner
|
package/CHANGELOG.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
## [Unreleased]
|
4
4
|
|
5
|
-
## 19.3.
|
5
|
+
## 19.3.43 (2021-09-30)
|
6
6
|
|
7
7
|
### Splitter
|
8
8
|
|
@@ -10,14 +10,6 @@
|
|
10
10
|
|
11
11
|
- `#I341650` - The issue with "Resize event handler is not properly un-wired, when destroying the splitter component" has been resolved.
|
12
12
|
|
13
|
-
## 19.2.55 (2021-08-11)
|
14
|
-
|
15
|
-
### Dashboard Layout
|
16
|
-
|
17
|
-
#### Bug Fixes
|
18
|
-
|
19
|
-
- `#I306072` - The Floating issue in Dashboard Layout when the scroll bar is in the middle of the page has been resolved.
|
20
|
-
|
21
13
|
## 19.2.48 (2021-07-20)
|
22
14
|
|
23
15
|
### Splitter
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
2
|
* filename: ej2-layouts.umd.min.js
|
3
|
-
* version : 19.
|
3
|
+
* version : 19.4.38
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
5
5
|
* Use of this code is subject to the terms of our license.
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
2
|
* filename: ej2-layouts.min.js
|
3
|
-
* version : 19.
|
3
|
+
* version : 19.4.38
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
5
5
|
* Use of this code is subject to the terms of our license.
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
package/dist/global/index.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
2
|
* filename: index.d.ts
|
3
|
-
* version : 19.
|
3
|
+
* version : 19.4.38
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
5
5
|
* Use of this code is subject to the terms of our license.
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
package/package.json
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
{
|
2
2
|
"_from": "@syncfusion/ej2-layouts@*",
|
3
|
-
"_id": "@syncfusion/ej2-layouts@19.
|
3
|
+
"_id": "@syncfusion/ej2-layouts@19.6.1",
|
4
4
|
"_inBundle": false,
|
5
|
-
"_integrity": "sha512
|
5
|
+
"_integrity": "sha512-yZstbGKh0iOM7GI35dTDE5aGS9VbAjQ6txU9DECtFqvti2S3REdvhp4xNv2+pPEC7d+yYFvB3/wkoNBvhkHwNw==",
|
6
6
|
"_location": "/@syncfusion/ej2-layouts",
|
7
7
|
"_phantomChildren": {},
|
8
8
|
"_requested": {
|
@@ -27,8 +27,8 @@
|
|
27
27
|
"/@syncfusion/ej2-react-layouts",
|
28
28
|
"/@syncfusion/ej2-vue-layouts"
|
29
29
|
],
|
30
|
-
"_resolved": "http://nexus.syncfusion.com/repository/ej2-
|
31
|
-
"_shasum": "
|
30
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-layouts/-/ej2-layouts-19.6.1.tgz",
|
31
|
+
"_shasum": "55c4a2968ce826fb4c44a1761da70d1813dfd349",
|
32
32
|
"_spec": "@syncfusion/ej2-layouts@*",
|
33
33
|
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
34
34
|
"author": {
|
@@ -36,7 +36,7 @@
|
|
36
36
|
},
|
37
37
|
"bundleDependencies": false,
|
38
38
|
"dependencies": {
|
39
|
-
"@syncfusion/ej2-base": "~19.
|
39
|
+
"@syncfusion/ej2-base": "~19.4.38"
|
40
40
|
},
|
41
41
|
"deprecated": false,
|
42
42
|
"description": "A package of Essential JS 2 layout pure CSS components such as card and avatar. The card is used as small container to show content in specific structure, whereas the avatars are icons, initials or figures representing particular person.",
|
@@ -76,6 +76,6 @@
|
|
76
76
|
"url": "https://github.com/syncfusion/ej2-javascript-ui-controls/tree/master/controls/layouts"
|
77
77
|
},
|
78
78
|
"typings": "index.d.ts",
|
79
|
-
"version": "19.
|
79
|
+
"version": "19.4.38",
|
80
80
|
"sideEffects": false
|
81
81
|
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
// Avatar Base
|
2
|
+
$avatar-base-border-radius: 4px !default;
|
3
|
+
$avatar-base-background-color: $content-bg-color-alt3 !default;
|
4
|
+
$avatar-base-font-size: $text-base !default;
|
5
|
+
$avatar-base-width: 40px !default;
|
6
|
+
$avatar-base-height: 40px !default;
|
7
|
+
$avatar-base-line-height: 24px !default;
|
8
|
+
$avatar-base-text-color: $icon-color !default;
|
9
|
+
$avatar-base-font-weight: $font-weight-normal !default;
|
10
|
+
$avatar-base-img-height: 100% !default;
|
11
|
+
|
12
|
+
// Circle Avatar
|
13
|
+
$avatar-circle-border-radius: 50% !default;
|
14
|
+
|
15
|
+
// Avatar size
|
16
|
+
$avatar-xsmall-font-size: $text-xxs !default;
|
17
|
+
$avatar-small-font-size: $text-xs !default;
|
18
|
+
$avatar-large-font-size: $text-xl !default;
|
19
|
+
$avatar-xlarge-font-size: $text-2xl !default;
|
20
|
+
|
21
|
+
// Avatar Line Height
|
22
|
+
$avatar-base-xsmall-line-height: 16px !default;
|
23
|
+
$avatar-base-small-line-height: 18px !default;
|
24
|
+
$avatar-base-large-line-height: 28px !default;
|
25
|
+
$avatar-base-xlarge-line-height: 28px !default;
|
@@ -17,7 +17,7 @@
|
|
17
17
|
overflow: hidden;
|
18
18
|
position: relative;
|
19
19
|
width: $avatar-base-width;
|
20
|
-
@if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'bootstrap5') {
|
20
|
+
@if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
|
21
21
|
line-height: $avatar-base-line-height;
|
22
22
|
}
|
23
23
|
|
@@ -32,7 +32,7 @@
|
|
32
32
|
|
33
33
|
&.e-avatar-xsmall {
|
34
34
|
font-size: $avatar-xsmall-font-size;
|
35
|
-
@if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'bootstrap5') {
|
35
|
+
@if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
|
36
36
|
height: 24px;
|
37
37
|
line-height: $avatar-base-xsmall-line-height;
|
38
38
|
width: 24px;
|
@@ -41,7 +41,7 @@
|
|
41
41
|
|
42
42
|
&.e-avatar-small {
|
43
43
|
font-size: $avatar-small-font-size;
|
44
|
-
@if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'bootstrap5') {
|
44
|
+
@if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
|
45
45
|
height: 32px;
|
46
46
|
line-height: $avatar-base-small-line-height;
|
47
47
|
width: 32px;
|
@@ -50,7 +50,7 @@
|
|
50
50
|
|
51
51
|
&.e-avatar-large {
|
52
52
|
font-size: $avatar-large-font-size;
|
53
|
-
@if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'bootstrap5') {
|
53
|
+
@if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
|
54
54
|
height: 48px;
|
55
55
|
line-height: $avatar-base-large-line-height;
|
56
56
|
width: 48px;
|
@@ -59,7 +59,7 @@
|
|
59
59
|
|
60
60
|
&.e-avatar-xlarge {
|
61
61
|
font-size: $avatar-xlarge-font-size;
|
62
|
-
@if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark'or $skin-name == 'bootstrap5') {
|
62
|
+
@if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark'or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
|
63
63
|
height: 56px;
|
64
64
|
line-height: $avatar-base-xlarge-line-height;
|
65
65
|
width: 56px;
|
@@ -885,7 +885,8 @@
|
|
885
885
|
.e-splitter .e-split-bar.e-split-bar-vertical {
|
886
886
|
-ms-flex-align: center;
|
887
887
|
align-items: center;
|
888
|
-
border: none;
|
888
|
+
border-left: none;
|
889
|
+
border-right: none;
|
889
890
|
display: -ms-flexbox;
|
890
891
|
display: flex;
|
891
892
|
-ms-flex: 0 0 auto;
|
@@ -1073,7 +1074,8 @@
|
|
1073
1074
|
|
1074
1075
|
.e-splitter .e-split-bar.e-split-bar-horizontal {
|
1075
1076
|
background: #484848;
|
1076
|
-
border: none;
|
1077
|
+
border-left: none;
|
1078
|
+
border-right: none;
|
1077
1079
|
}
|
1078
1080
|
|
1079
1081
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler {
|
@@ -1097,6 +1099,8 @@
|
|
1097
1099
|
|
1098
1100
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active {
|
1099
1101
|
background: #0070f0;
|
1102
|
+
border-left: none;
|
1103
|
+
border-right: none;
|
1100
1104
|
}
|
1101
1105
|
|
1102
1106
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover .e-resize-handler, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active .e-resize-handler {
|
@@ -1155,6 +1159,8 @@
|
|
1155
1159
|
|
1156
1160
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-hover, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active {
|
1157
1161
|
background: #0070f0;
|
1162
|
+
border-left: none;
|
1163
|
+
border-right: none;
|
1158
1164
|
}
|
1159
1165
|
|
1160
1166
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-hover .e-navigate-arrow.e-arrow-up, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-hover .e-navigate-arrow.e-arrow-down, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active .e-navigate-arrow.e-arrow-up, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active .e-navigate-arrow.e-arrow-down {
|
package/styles/bootstrap.css
CHANGED
@@ -886,7 +886,8 @@
|
|
886
886
|
.e-splitter .e-split-bar.e-split-bar-vertical {
|
887
887
|
-ms-flex-align: center;
|
888
888
|
align-items: center;
|
889
|
-
border: none;
|
889
|
+
border-left: none;
|
890
|
+
border-right: none;
|
890
891
|
display: -ms-flexbox;
|
891
892
|
display: flex;
|
892
893
|
-ms-flex: 0 0 auto;
|
@@ -1074,7 +1075,8 @@
|
|
1074
1075
|
|
1075
1076
|
.e-splitter .e-split-bar.e-split-bar-horizontal {
|
1076
1077
|
background: #ddd;
|
1077
|
-
border: none;
|
1078
|
+
border-left: none;
|
1079
|
+
border-right: none;
|
1078
1080
|
}
|
1079
1081
|
|
1080
1082
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler {
|
@@ -1098,6 +1100,8 @@
|
|
1098
1100
|
|
1099
1101
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active {
|
1100
1102
|
background: #317ab9;
|
1103
|
+
border-left: none;
|
1104
|
+
border-right: none;
|
1101
1105
|
}
|
1102
1106
|
|
1103
1107
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover .e-resize-handler, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active .e-resize-handler {
|
@@ -1156,6 +1160,8 @@
|
|
1156
1160
|
|
1157
1161
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-hover, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active {
|
1158
1162
|
background: #317ab9;
|
1163
|
+
border-left: none;
|
1164
|
+
border-right: none;
|
1159
1165
|
}
|
1160
1166
|
|
1161
1167
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-hover .e-navigate-arrow.e-arrow-up, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-hover .e-navigate-arrow.e-arrow-down, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active .e-navigate-arrow.e-arrow-up, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active .e-navigate-arrow.e-arrow-down {
|
package/styles/bootstrap4.css
CHANGED
@@ -892,7 +892,8 @@
|
|
892
892
|
.e-splitter .e-split-bar.e-split-bar-vertical {
|
893
893
|
-ms-flex-align: center;
|
894
894
|
align-items: center;
|
895
|
-
border: none;
|
895
|
+
border-left: none;
|
896
|
+
border-right: none;
|
896
897
|
display: -ms-flexbox;
|
897
898
|
display: flex;
|
898
899
|
-ms-flex: 0 0 auto;
|
@@ -1080,7 +1081,8 @@
|
|
1080
1081
|
|
1081
1082
|
.e-splitter .e-split-bar.e-split-bar-horizontal {
|
1082
1083
|
background: #dee2e6;
|
1083
|
-
border: none;
|
1084
|
+
border-left: none;
|
1085
|
+
border-right: none;
|
1084
1086
|
}
|
1085
1087
|
|
1086
1088
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler {
|
@@ -1104,6 +1106,8 @@
|
|
1104
1106
|
|
1105
1107
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active {
|
1106
1108
|
background: #007bff;
|
1109
|
+
border-left: none;
|
1110
|
+
border-right: none;
|
1107
1111
|
}
|
1108
1112
|
|
1109
1113
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover .e-resize-handler, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active .e-resize-handler {
|
@@ -1162,6 +1166,8 @@
|
|
1162
1166
|
|
1163
1167
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-hover, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active {
|
1164
1168
|
background: #007bff;
|
1169
|
+
border-left: none;
|
1170
|
+
border-right: none;
|
1165
1171
|
}
|
1166
1172
|
|
1167
1173
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-hover .e-navigate-arrow.e-arrow-up, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-hover .e-navigate-arrow.e-arrow-down, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active .e-navigate-arrow.e-arrow-up, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active .e-navigate-arrow.e-arrow-down {
|
@@ -887,7 +887,8 @@
|
|
887
887
|
.e-splitter .e-split-bar.e-split-bar-vertical {
|
888
888
|
-ms-flex-align: center;
|
889
889
|
align-items: center;
|
890
|
-
border: none;
|
890
|
+
border-left: none;
|
891
|
+
border-right: none;
|
891
892
|
display: -ms-flexbox;
|
892
893
|
display: flex;
|
893
894
|
-ms-flex: 0 0 auto;
|
@@ -1075,7 +1076,8 @@
|
|
1075
1076
|
|
1076
1077
|
.e-splitter .e-split-bar.e-split-bar-horizontal {
|
1077
1078
|
background: #444c54;
|
1078
|
-
border: none;
|
1079
|
+
border-left: none;
|
1080
|
+
border-right: none;
|
1079
1081
|
}
|
1080
1082
|
|
1081
1083
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler {
|
@@ -1099,6 +1101,8 @@
|
|
1099
1101
|
|
1100
1102
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active {
|
1101
1103
|
background: #0d6efd;
|
1104
|
+
border-left: none;
|
1105
|
+
border-right: none;
|
1102
1106
|
}
|
1103
1107
|
|
1104
1108
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover .e-resize-handler, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active .e-resize-handler {
|
@@ -1157,6 +1161,8 @@
|
|
1157
1161
|
|
1158
1162
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-hover, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active {
|
1159
1163
|
background: #0d6efd;
|
1164
|
+
border-left: none;
|
1165
|
+
border-right: none;
|
1160
1166
|
}
|
1161
1167
|
|
1162
1168
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-hover .e-navigate-arrow.e-arrow-up, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-hover .e-navigate-arrow.e-arrow-down, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active .e-navigate-arrow.e-arrow-up, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active .e-navigate-arrow.e-arrow-down {
|
package/styles/bootstrap5.css
CHANGED
@@ -887,7 +887,8 @@
|
|
887
887
|
.e-splitter .e-split-bar.e-split-bar-vertical {
|
888
888
|
-ms-flex-align: center;
|
889
889
|
align-items: center;
|
890
|
-
border: none;
|
890
|
+
border-left: none;
|
891
|
+
border-right: none;
|
891
892
|
display: -ms-flexbox;
|
892
893
|
display: flex;
|
893
894
|
-ms-flex: 0 0 auto;
|
@@ -1075,7 +1076,8 @@
|
|
1075
1076
|
|
1076
1077
|
.e-splitter .e-split-bar.e-split-bar-horizontal {
|
1077
1078
|
background: #dee2e6;
|
1078
|
-
border: none;
|
1079
|
+
border-left: none;
|
1080
|
+
border-right: none;
|
1079
1081
|
}
|
1080
1082
|
|
1081
1083
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler {
|
@@ -1099,6 +1101,8 @@
|
|
1099
1101
|
|
1100
1102
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active {
|
1101
1103
|
background: #0d6efd;
|
1104
|
+
border-left: none;
|
1105
|
+
border-right: none;
|
1102
1106
|
}
|
1103
1107
|
|
1104
1108
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover .e-resize-handler, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active .e-resize-handler {
|
@@ -1157,6 +1161,8 @@
|
|
1157
1161
|
|
1158
1162
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-hover, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active {
|
1159
1163
|
background: #0d6efd;
|
1164
|
+
border-left: none;
|
1165
|
+
border-right: none;
|
1160
1166
|
}
|
1161
1167
|
|
1162
1168
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-hover .e-navigate-arrow.e-arrow-up, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-hover .e-navigate-arrow.e-arrow-down, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active .e-navigate-arrow.e-arrow-up, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active .e-navigate-arrow.e-arrow-down {
|
@@ -26,6 +26,7 @@ $card-action-btn-font: 14px !default;
|
|
26
26
|
$card-nrml-content-padding: 16px !default;
|
27
27
|
$card-nrml-nested-content-padding: 16px !default;
|
28
28
|
$card-content-font-size: 14px !default;
|
29
|
+
$card-content-bigger-font-size: 16px !default;
|
29
30
|
$card-title-nrml-padding: 8px !default;
|
30
31
|
$card-action-nrml-padding: 8px !default;
|
31
32
|
$card-action-nrml-nested-margin: 8px !default;
|
@@ -11,6 +11,7 @@ $card-title-font: 17px !default;
|
|
11
11
|
$card-action-btn-icon-font: 14px !default;
|
12
12
|
$card-action-btn-font: 14px !default;
|
13
13
|
$card-content-font-size: 14px !default;
|
14
|
+
$card-content-bigger-font-size: 16px !default;
|
14
15
|
$card-header-title-font: 14px !default;
|
15
16
|
$card-header-sub-title-font: 14px !default;
|
16
17
|
|
@@ -9,6 +9,7 @@ $card-title-font: $text-lg !default;
|
|
9
9
|
$card-action-btn-icon-font: $text-sm !default;
|
10
10
|
$card-action-btn-font: $text-sm !default;
|
11
11
|
$card-content-font-size: $text-sm !default;
|
12
|
+
$card-content-bigger-font-size: $text-base !default;
|
12
13
|
$card-header-title-font: $text-base !default;
|
13
14
|
$card-header-sub-title-font: $text-sm !default;
|
14
15
|
// Mouse
|
@@ -27,6 +27,7 @@ $card-action-btn-font: 14px !default;
|
|
27
27
|
$card-nrml-content-padding: 16px !default;
|
28
28
|
$card-nrml-nested-content-padding: 16px !default;
|
29
29
|
$card-content-font-size: 14px !default;
|
30
|
+
$card-content-bigger-font-size: 16px !default;
|
30
31
|
$card-title-nrml-padding: 8px !default;
|
31
32
|
$card-action-nrml-padding: 8px !default;
|
32
33
|
$card-action-nrml-nested-margin: 8px !default;
|
@@ -11,6 +11,7 @@ $card-title-font: 17px !default;
|
|
11
11
|
$card-action-btn-icon-font: 14px !default;
|
12
12
|
$card-action-btn-font: 14px !default;
|
13
13
|
$card-content-font-size: 14px !default;
|
14
|
+
$card-content-bigger-font-size: 16px !default;
|
14
15
|
$card-header-title-font: 14px !default;
|
15
16
|
$card-header-sub-title-font: 14px !default;
|
16
17
|
|
@@ -0,0 +1,124 @@
|
|
1
|
+
$skin-name: 'FluentUI' !default;
|
2
|
+
//Layout Variables Start
|
3
|
+
$card-img-brdr-radious: 50% !default;
|
4
|
+
$card-brdr-radious: $model-radius !default;
|
5
|
+
$card-action-btn-txt-transform: none !default;
|
6
|
+
// Font
|
7
|
+
$card-header-font: $text-base !default;
|
8
|
+
$card-title-font: $text-lg !default;
|
9
|
+
$card-action-btn-icon-font: $text-lg !default;
|
10
|
+
$card-action-btn-font: $text-sm !default;
|
11
|
+
$card-content-font-size: $text-sm !default;
|
12
|
+
$card-content-bigger-font-size: $text-base !default;
|
13
|
+
$card-header-title-font: $text-base !default;
|
14
|
+
$card-header-sub-title-font: $text-xs !default;
|
15
|
+
// Mouse
|
16
|
+
$card-content-line-height: $leading-normal !default;
|
17
|
+
$card-nrml-lheight: 36px !default;
|
18
|
+
$card-nrml-mheight: 36px !default;
|
19
|
+
$card-header-padding: 12px !default;
|
20
|
+
$card-header-lheight: $leading-normal !default;
|
21
|
+
$card-title-nrml-padding: 16px !default;
|
22
|
+
$card-title-nrml-lheight: $leading-normal !default;
|
23
|
+
$card-hor-image-margin: 0 !default;
|
24
|
+
$card-sep-margin: 12px 0 !default;
|
25
|
+
$card-header-minheight: 22.5px !default;
|
26
|
+
$card-header-nrml-padding: 16px 16px 0 16px !default;
|
27
|
+
$card-header-txt-nrml-padding: 0 0 0 12px !default;
|
28
|
+
$card-header-txt-title-lheight: $leading-normal !default;
|
29
|
+
$card-header-txt-title-nrml-padding: 4px 0 0 !default;
|
30
|
+
$card-header-txt-subtitle-lheight: $leading-normal !default;
|
31
|
+
$card-header-image-width: 30px !default;
|
32
|
+
$card-header-image-height: 30px !default;
|
33
|
+
$card-image-mheight: 112.5px !default;
|
34
|
+
$card-image-title-lheight: 30px !default;
|
35
|
+
$card-image-title-mheight: 30px !default;
|
36
|
+
$card-action-nrml-vertical-padding: 12px !default;
|
37
|
+
$card-action-nrml-btn-vertical-margin: 0 0 6px 0 !default;
|
38
|
+
$card-action-btn-nrml-height: 30px !default;
|
39
|
+
$card-action-btn-nrml-margin: 0 0 0 6px !default;
|
40
|
+
$card-action-btn-nrml-padding: 0 6px !default;
|
41
|
+
$card-nrml-content-padding: 16px !default;
|
42
|
+
$card-header-txt-nrml-title-font: $text-base !default;
|
43
|
+
$card-header-txt-nrml-subtitle-font: $text-xs !default;
|
44
|
+
$card-image-title-font: $text-base !default;
|
45
|
+
$card-action-btn-icon-width: 24px !default;
|
46
|
+
$card-action-btn-icon-height: 24px !default;
|
47
|
+
// Touch
|
48
|
+
$card-bigger-lheight: 48px !default;
|
49
|
+
$card-bigger-mheight: 48px !default;
|
50
|
+
$card-header-bigger-padding: 20px 20px 0 20px !default;
|
51
|
+
$card-header-bigger-lheight: $leading-normal !default;
|
52
|
+
$card-title-bigger-margin: 20px !default;
|
53
|
+
$card-title-bigger-lheight: $leading-normal !default;
|
54
|
+
$card-hor-image-bigger-margin: 0 !default;
|
55
|
+
$card-sep-bigger-margin: 16px 0 !default;
|
56
|
+
$card-header-bigger-minheight: 30px !default;
|
57
|
+
$card-header-bigger-padding: 20px 20px 16px 20px !default;
|
58
|
+
$card-header-txt-bigger-padding: 0 0 0 16px !default;
|
59
|
+
$card-header-txt-title-bigger-lheight: $leading-normal !default;
|
60
|
+
$card-header-txt-title-bigger-padding: 8px 0 0 !default;
|
61
|
+
$card-header-txt-subtitle-bigger-lheight: $leading-normal !default;
|
62
|
+
$card-header-image-bigger-width: 40px !default;
|
63
|
+
$card-header-image-bigger-height: 40px !default;
|
64
|
+
$card-image-bigger-mheight: 150px !default;
|
65
|
+
$card-image-title-bigger-lheight: $leading-tight !default;
|
66
|
+
$card-image-title-bigger-mheight: 40px !default;
|
67
|
+
$card-action-bigger-vertical-padding: 16px !default;
|
68
|
+
$card-action-bigger-btn-vertical-margin: 0 0 7px 0 !default;
|
69
|
+
$card-action-btn-bigger-height: 38px !default;
|
70
|
+
$card-action-btn-bigger-margin: 0 0 0 13px !default;
|
71
|
+
$card-action-btn-bigger-padding: 0 6px !default;
|
72
|
+
$card-bigger-content-padding: 20px !default;
|
73
|
+
$card-header-txt-bigger-title-font: $text-lg !default;
|
74
|
+
$card-header-txt-bigger-subtitle-font: $text-sm !default;
|
75
|
+
$card-image-title-bigger-font: $text-lg !default;
|
76
|
+
$card-action-btn-bigger-icon-width: 24px !default;
|
77
|
+
$card-action-btn-bigger-icon-height: 24px !default;
|
78
|
+
$card-image-title-nrml-padding: 8px 16px !default;
|
79
|
+
$card-img-title-bigger-padding: 12px 20px !default;
|
80
|
+
$card-action-nrml-padding: 16px !default;
|
81
|
+
$card-action-bigger-padding: 20px !default;
|
82
|
+
//Layout Variables End
|
83
|
+
|
84
|
+
//Theme Variables Start
|
85
|
+
$card-highlight-color: $primary !default;
|
86
|
+
$card-bg-color: $flyout-bg-color !default;
|
87
|
+
$card-focus-bg-color: $flyout-bg-color !default;
|
88
|
+
$card-hover-bg-color: $flyout-bg-color !default;
|
89
|
+
$card-active-bg-color: $flyout-bg-color !default;
|
90
|
+
$card-focus-brdr-color: $border-light !default;
|
91
|
+
$card-hover-brdr-color: $border-dark !default;
|
92
|
+
$card-active-brdr-color: $primary !default;
|
93
|
+
$card-brdr-size: 0 !default;
|
94
|
+
$card-brdr-type: solid !default;
|
95
|
+
$card-brdr-color: $border-light !default;
|
96
|
+
$card-sep-brdr-size: 1px !default;
|
97
|
+
$card-sep-brdr-type: solid !default;
|
98
|
+
$card-sep-brdr-color: $border-light !default;
|
99
|
+
$card-image-title-color: $white !default;
|
100
|
+
$card-image-title-bg: $overlay-bg-color !default;
|
101
|
+
$card-action-btn-bg-color: $transparent !default;
|
102
|
+
$card-action-btn-font-color: $primary !default;
|
103
|
+
$card-action-btn-border: 1px solid $primary !default;
|
104
|
+
$card-action-btn-hover-bg: $primary !default;
|
105
|
+
$card-action-btn-hover-border: 1px solid $secondary-border-color-hover !default;
|
106
|
+
$card-action-btn-hover-font: $white !default;
|
107
|
+
$card-action-btn-focus-bg: $secondary-bg-color-focus !default;
|
108
|
+
$card-action-btn-focus-border: 1px solid !default;
|
109
|
+
$card-action-btn-focus-font: $secondary-text-color-focus !default;
|
110
|
+
$card-action-btn-pressed-bg: $secondary-bg-color-pressed !default;
|
111
|
+
$card-action-btn-pressed-border: 1px solid $secondary-border-color-pressed !default;
|
112
|
+
$card-action-btn-pressed-font: $secondary-text-color-pressed !default;
|
113
|
+
$card-font-color: $content-text-color !default;
|
114
|
+
$card-header-txt-title-color: $content-text-color !default;
|
115
|
+
$card-header-txt-subtitle-color: $content-text-color-alt2 !default;
|
116
|
+
$card-content-font-color: $content-text-color-alt1 !default;
|
117
|
+
$card-box-shadow: $shadow-sm !default;
|
118
|
+
$card-action-btn-icon-color: $primary !default;
|
119
|
+
$card-hover-box-shadow: $shadow-lg !default;
|
120
|
+
//Theme Variables End
|
121
|
+
|
122
|
+
$card-hover-class-box-shadow: $shadow-lg !default;
|
123
|
+
$card-selection-class-border: 1px solid $border-selected !default;
|
124
|
+
$card-selection-class-box-shadow: $shadow-lg !default;
|
@@ -11,6 +11,7 @@ $card-title-font: 17px !default;
|
|
11
11
|
$card-action-btn-icon-font: 14px !default;
|
12
12
|
$card-action-btn-font: 14px !default;
|
13
13
|
$card-content-font-size: 14px !default;
|
14
|
+
$card-content-bigger-font-size: 16px !default;
|
14
15
|
$card-header-title-font: 14px !default;
|
15
16
|
$card-header-sub-title-font: 14px !default;
|
16
17
|
|
@@ -27,6 +27,7 @@ $card-action-btn-font: 14px !default;
|
|
27
27
|
$card-nrml-content-padding: 16px !default;
|
28
28
|
$card-nrml-nested-content-padding: 16px !default;
|
29
29
|
$card-content-font-size: 14px !default;
|
30
|
+
$card-content-bigger-font-size: 16px !default;
|
30
31
|
$card-title-nrml-padding: 8px !default;
|
31
32
|
$card-action-nrml-padding: 8px !default;
|
32
33
|
$card-action-nrml-nested-margin: 8px !default;
|
@@ -22,6 +22,7 @@ $card-action-btn-font: 14px !default;
|
|
22
22
|
$card-nrml-content-padding: 16px !default;
|
23
23
|
$card-nrml-nested-content-padding: 16px !default;
|
24
24
|
$card-content-font-size: 14px !default;
|
25
|
+
$card-content-bigger-font-size: 16px !default;
|
25
26
|
$card-title-nrml-padding: 8px !default;
|
26
27
|
$card-action-nrml-padding: 8px !default;
|
27
28
|
$card-action-nrml-nested-margin: 8px !default;
|
@@ -11,6 +11,7 @@ $card-title-font: 18px !default;
|
|
11
11
|
$card-action-btn-icon-font: 14px !default;
|
12
12
|
$card-action-btn-font: 14px !default;
|
13
13
|
$card-content-font-size: 14px !default;
|
14
|
+
$card-content-bigger-font-size: 16px !default;
|
14
15
|
$card-header-title-font: 15px !default;
|
15
16
|
$card-header-sub-title-font: 14px !default;
|
16
17
|
|
@@ -9,6 +9,7 @@ $card-title-font: 16px !default;
|
|
9
9
|
$card-action-btn-icon-font: $text-sm !default;
|
10
10
|
$card-action-btn-font: $text-sm !default;
|
11
11
|
$card-content-font-size: $text-sm !default;
|
12
|
+
$card-content-bigger-font-size: $text-base !default;
|
12
13
|
$card-header-title-font: $text-sm !default;
|
13
14
|
$card-header-sub-title-font: $text-sm !default;
|
14
15
|
// Mouse
|
package/styles/card/_theme.scss
CHANGED
@@ -90,4 +90,15 @@
|
|
90
90
|
color: $card-content-font-color;
|
91
91
|
}
|
92
92
|
}
|
93
|
+
|
94
|
+
@if $skin-name == 'FluentUI' {
|
95
|
+
.e-card-hover:hover {
|
96
|
+
box-shadow: $card-hover-class-box-shadow;
|
97
|
+
}
|
98
|
+
|
99
|
+
.e-card-active:active {
|
100
|
+
border: $card-selection-class-border;
|
101
|
+
box-shadow: $card-selection-class-box-shadow;
|
102
|
+
}
|
103
|
+
}
|
93
104
|
}
|