@syncfusion/ej2-layouts 20.1.61 → 20.2.36
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/CHANGELOG.md +2 -0
- 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/helpers/e2e/dashboardHelper.js +112 -96
- package/helpers/e2e/index.js +9 -7
- package/helpers/e2e/splitter-helper.js +74 -58
- package/package.json +6 -6
- package/styles/avatar/_fusionnew-definition.scss +26 -0
- package/styles/avatar/_material3-definition.scss +26 -0
- package/styles/card/_fusionnew-definition.scss +121 -0
- package/styles/card/_material3-definition.scss +121 -0
- package/styles/dashboard-layout/_fusionnew-definition.scss +109 -0
- package/styles/dashboard-layout/_material3-definition.scss +109 -0
- package/styles/dashboard-layout/icons/_fusionnew.scss +81 -0
- package/styles/dashboard-layout/icons/_material3.scss +81 -0
- package/styles/splitter/_fusionnew-definition.scss +30 -0
- package/styles/splitter/_material3-definition.scss +30 -0
- package/styles/splitter/icons/_fusionnew.scss +39 -0
- package/styles/splitter/icons/_material3.scss +39 -0
package/CHANGELOG.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
2
|
* filename: ej2-layouts.umd.min.js
|
3
|
-
* version : 20.
|
3
|
+
* version : 20.2.36
|
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 : 20.
|
3
|
+
* version : 20.2.36
|
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 : 20.
|
3
|
+
* version : 20.2.36
|
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,97 +1,113 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
2
|
+
var extendStatics = function (d, b) {
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
5
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
6
|
+
return extendStatics(d, b);
|
7
|
+
};
|
8
|
+
return function (d, b) {
|
9
|
+
extendStatics(d, b);
|
10
|
+
function __() { this.constructor = d; }
|
11
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
12
|
+
};
|
13
|
+
})();
|
14
|
+
define(["require", "exports", "@syncfusion/ej2-base/helpers/e2e"], function (require, exports, e2e_1) {
|
15
|
+
"use strict";
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
+
var DashboardHelper = /** @class */ (function (_super) {
|
18
|
+
__extends(DashboardHelper, _super);
|
19
|
+
/**
|
20
|
+
* Initialize the Dashboard Layout E2E helpers.
|
21
|
+
* @param id element id of the Dashboard Layout component.
|
22
|
+
* @param wrapperFn pass the wrapper function.
|
23
|
+
*/
|
24
|
+
function DashboardHelper(id, wrapperFn) {
|
25
|
+
var _this = _super.call(this) || this;
|
26
|
+
_this.id = id;
|
27
|
+
if (wrapperFn !== undefined) {
|
28
|
+
_this.wrapperFn = wrapperFn;
|
29
|
+
}
|
30
|
+
return _this;
|
15
31
|
}
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
return
|
95
|
-
}
|
96
|
-
|
97
|
-
|
32
|
+
/**
|
33
|
+
* Gets the selector of the Dashboard Layout component.
|
34
|
+
*/
|
35
|
+
DashboardHelper.prototype.selector = function (arg) {
|
36
|
+
return (this.wrapperFn ? this.wrapperFn(arg) : arg);
|
37
|
+
};
|
38
|
+
/**
|
39
|
+
* Gets root element of the Dashboard Layout component.
|
40
|
+
*/
|
41
|
+
DashboardHelper.prototype.getElement = function () {
|
42
|
+
return this.selector('#' + this.id);
|
43
|
+
};
|
44
|
+
/**
|
45
|
+
* Gets the element of the Dashboard Layout component.
|
46
|
+
*/
|
47
|
+
DashboardHelper.prototype.getDashboardLayout = function () {
|
48
|
+
return this.selector('#' + this.id + '.e-dashboardlayout');
|
49
|
+
};
|
50
|
+
/**
|
51
|
+
* Gets a panel container and its inner elements with the given id from dashboard layout component.
|
52
|
+
*/
|
53
|
+
DashboardHelper.prototype.getPanelContainer = function () {
|
54
|
+
return this.selector('#' + this.id + '.e-dashboardlayout .e-panel-container');
|
55
|
+
};
|
56
|
+
/**
|
57
|
+
* Gets the panel element of Dashboard Layout component which consists the panel container and its inner elements
|
58
|
+
*/
|
59
|
+
DashboardHelper.prototype.getPanelElement = function () {
|
60
|
+
return this.selector('#' + this.id + '.e-dashboardlayout .e-panel');
|
61
|
+
};
|
62
|
+
/**
|
63
|
+
* Used to get the panel header of Dashboard Layout component which contains the header details.
|
64
|
+
*/
|
65
|
+
DashboardHelper.prototype.getPanelHeader = function () {
|
66
|
+
return this.selector('#' + this.id + '.e-dashboardlayout .e-panel-header');
|
67
|
+
};
|
68
|
+
/**
|
69
|
+
* Gets the panel content of Dashboard Layout component which contains the panel content class.
|
70
|
+
*/
|
71
|
+
DashboardHelper.prototype.getPanelContent = function () {
|
72
|
+
return this.selector('#' + this.id + '.e-dashboardlayout .e-panel-content');
|
73
|
+
};
|
74
|
+
/**
|
75
|
+
* Gets the resize icon positioned on the South-East side in panel container.
|
76
|
+
*/
|
77
|
+
DashboardHelper.prototype.getSouthEastResizeIcon = function () {
|
78
|
+
return this.selector('#' + this.id + '.e-dashboardlayout .e-south-east .e-resize');
|
79
|
+
};
|
80
|
+
/**
|
81
|
+
* Gets the resize icon positioned on the North-East side in panel container.
|
82
|
+
*/
|
83
|
+
DashboardHelper.prototype.getNorthEastResizeIcon = function () {
|
84
|
+
return this.selector('#' + this.id + '.e-dashboardlayout .e-north-east .e-resize');
|
85
|
+
};
|
86
|
+
/**
|
87
|
+
* Gets the resize icon positioned on the North-West side in panel container.
|
88
|
+
*/
|
89
|
+
DashboardHelper.prototype.getNorthWestResizeIcon = function () {
|
90
|
+
return this.selector('#' + this.id + '.e-dashboardlayout .e-north-west .e-resize');
|
91
|
+
};
|
92
|
+
/**
|
93
|
+
* Gets the resize icon positioned on the South-West side in panel container.
|
94
|
+
*/
|
95
|
+
DashboardHelper.prototype.getSouthWestResizeIcon = function () {
|
96
|
+
return this.selector('#' + this.id + '.e-dashboardlayout .e-south-west .e-resize');
|
97
|
+
};
|
98
|
+
/**
|
99
|
+
* Gets the clear icon from the panel element.
|
100
|
+
*/
|
101
|
+
DashboardHelper.prototype.getClearIcon = function () {
|
102
|
+
return this.selector('#' + this.id + '.e-dashboardlayout .e-clear-icon');
|
103
|
+
};
|
104
|
+
/**
|
105
|
+
* Gets the transition of panel in Dashboard Layout component which is used to achieve the resizing behavior.
|
106
|
+
*/
|
107
|
+
DashboardHelper.prototype.getPanelTansition = function () {
|
108
|
+
return this.selector('#' + this.id + '.e-dashboardlayout .e-panel-transition');
|
109
|
+
};
|
110
|
+
return DashboardHelper;
|
111
|
+
}(e2e_1.TestHelper));
|
112
|
+
exports.DashboardHelper = DashboardHelper;
|
113
|
+
});
|
package/helpers/e2e/index.js
CHANGED
@@ -1,7 +1,9 @@
|
|
1
|
-
"
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
__export(
|
1
|
+
define(["require", "exports", "./dashboardHelper", "./splitter-helper"], function (require, exports, dashboardHelper_1, splitter_helper_1) {
|
2
|
+
"use strict";
|
3
|
+
function __export(m) {
|
4
|
+
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
5
|
+
}
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
7
|
+
__export(dashboardHelper_1);
|
8
|
+
__export(splitter_helper_1);
|
9
|
+
});
|
@@ -1,59 +1,75 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
2
|
+
var extendStatics = function (d, b) {
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
5
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
6
|
+
return extendStatics(d, b);
|
7
|
+
};
|
8
|
+
return function (d, b) {
|
9
|
+
extendStatics(d, b);
|
10
|
+
function __() { this.constructor = d; }
|
11
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
12
|
+
};
|
13
|
+
})();
|
14
|
+
define(["require", "exports", "@syncfusion/ej2-base/helpers/e2e"], function (require, exports, e2e_1) {
|
15
|
+
"use strict";
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
+
var SplitterHelper = /** @class */ (function (_super) {
|
18
|
+
__extends(SplitterHelper, _super);
|
19
|
+
function SplitterHelper(id, wrapperFn) {
|
20
|
+
var _this = _super.call(this) || this;
|
21
|
+
_this.id = id;
|
22
|
+
if (wrapperFn !== undefined) {
|
23
|
+
_this.wrapperFn = wrapperFn;
|
24
|
+
}
|
25
|
+
return _this;
|
10
26
|
}
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
}
|
58
|
-
|
59
|
-
|
27
|
+
/**
|
28
|
+
* The method which returns Splitter's root element.
|
29
|
+
*/
|
30
|
+
SplitterHelper.prototype.getElement = function () {
|
31
|
+
return this.selector('#' + this.id + ".e-splitter");
|
32
|
+
};
|
33
|
+
/**
|
34
|
+
* The method which returns Splitter's all pane elements.
|
35
|
+
*/
|
36
|
+
SplitterHelper.prototype.getPaneElement = function () {
|
37
|
+
var element = this.selector('#' + this.id + ".e-splitter");
|
38
|
+
var pane = [];
|
39
|
+
return pane.filter.call(element.children, function (ele) { return pane.includes.call(ele.classList, 'e-pane'); });
|
40
|
+
};
|
41
|
+
/**
|
42
|
+
* The method which returns Splitter's separator (split-bar) elements.
|
43
|
+
*/
|
44
|
+
SplitterHelper.prototype.getSplitBar = function () {
|
45
|
+
var element = this.selector('#' + this.id + ".e-splitter");
|
46
|
+
var split = [];
|
47
|
+
return split.filter.call(element.children, function (ele) { return split.includes.call(ele.classList, 'e-split-bar'); });
|
48
|
+
};
|
49
|
+
/**
|
50
|
+
* The getModel method is used to return value of the property.
|
51
|
+
* @param property - Specifies name of the property. It must be string type.
|
52
|
+
*/
|
53
|
+
SplitterHelper.prototype.getModel = function (property) {
|
54
|
+
this.getModel(property);
|
55
|
+
};
|
56
|
+
/**
|
57
|
+
* The setModel method is used to set value for the property. It will accepts two arguments.
|
58
|
+
* @param property - Specifices name of the property which value is to be updated.
|
59
|
+
* @param value - Specifies corresponding value of the property.
|
60
|
+
*/
|
61
|
+
SplitterHelper.prototype.setModel = function (property, value) {
|
62
|
+
this.setModel(property, value);
|
63
|
+
};
|
64
|
+
/**
|
65
|
+
* The invoke method is used to set value for the property. It will accepts two arguments.
|
66
|
+
* @param property - Specifices name of the property which value is to be updated.
|
67
|
+
* @param value - Specifies corresponding value of the property.
|
68
|
+
*/
|
69
|
+
SplitterHelper.prototype.invoke = function (fName, args) {
|
70
|
+
this.invoke(fName, args);
|
71
|
+
};
|
72
|
+
return SplitterHelper;
|
73
|
+
}(e2e_1.TestHelper));
|
74
|
+
exports.SplitterHelper = SplitterHelper;
|
75
|
+
});
|
package/package.json
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
{
|
2
2
|
"_from": "@syncfusion/ej2-layouts@*",
|
3
|
-
"_id": "@syncfusion/ej2-layouts@
|
3
|
+
"_id": "@syncfusion/ej2-layouts@19.7.2",
|
4
4
|
"_inBundle": false,
|
5
|
-
"_integrity": "sha512-
|
5
|
+
"_integrity": "sha512-DQo39Lbsf5i76XqDmlzTLZx0LjV4l7lwC3I7RqmMz4cP3So+ICA0jxT7V+vGEA6ekR5X4ZIOrOLLBp38ltrzMw==",
|
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.7.2.tgz",
|
31
|
+
"_shasum": "f0631fa5b423a32987127c9bd0c04fe2ff8e2d25",
|
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": "~20.
|
39
|
+
"@syncfusion/ej2-base": "~20.2.36"
|
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": "20.
|
79
|
+
"version": "20.2.36",
|
80
80
|
"sideEffects": false
|
81
81
|
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
// Avatar Base
|
2
|
+
$avatar-base-border-radius: 2px !default;
|
3
|
+
$avatar-base-background-color: $content-bg-color-alt3 !default;
|
4
|
+
$avatar-base-font-size: $text-sm !default;
|
5
|
+
$avatar-base-width: 40px !default;
|
6
|
+
$avatar-base-height: 40px !default;
|
7
|
+
$avatar-base-line-height: 22px !default;
|
8
|
+
$avatar-base-text-color: $icon-color !default;
|
9
|
+
$avatar-base-font-weight: $font-weight-medium !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-lg !default;
|
19
|
+
$avatar-xlarge-font-size: $text-xl !default;
|
20
|
+
$avatar-large-border-radius: 4px !default;
|
21
|
+
|
22
|
+
// Avatar Line Height
|
23
|
+
$avatar-base-xsmall-line-height: 16px !default;
|
24
|
+
$avatar-base-small-line-height: 18px !default;
|
25
|
+
$avatar-base-large-line-height: 28px !default;
|
26
|
+
$avatar-base-xlarge-line-height: 28px !default;
|
@@ -0,0 +1,26 @@
|
|
1
|
+
// Avatar Base
|
2
|
+
$avatar-base-border-radius: 2px !default;
|
3
|
+
$avatar-base-background-color: $content-bg-color-alt3 !default;
|
4
|
+
$avatar-base-font-size: $text-sm !default;
|
5
|
+
$avatar-base-width: 40px !default;
|
6
|
+
$avatar-base-height: 40px !default;
|
7
|
+
$avatar-base-line-height: 22px !default;
|
8
|
+
$avatar-base-text-color: $icon-color !default;
|
9
|
+
$avatar-base-font-weight: $font-weight-medium !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-lg !default;
|
19
|
+
$avatar-xlarge-font-size: $text-xl !default;
|
20
|
+
$avatar-large-border-radius: 4px !default;
|
21
|
+
|
22
|
+
// Avatar Line Height
|
23
|
+
$avatar-base-xsmall-line-height: 16px !default;
|
24
|
+
$avatar-base-small-line-height: 18px !default;
|
25
|
+
$avatar-base-large-line-height: 28px !default;
|
26
|
+
$avatar-base-xlarge-line-height: 28px !default;
|
@@ -0,0 +1,121 @@
|
|
1
|
+
$skin-name: 'bootstrap5' !default;
|
2
|
+
//Layout Variables Start
|
3
|
+
$card-img-brdr-radious: 50% !default;
|
4
|
+
$card-brdr-radious: 4px !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-sm !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-sm !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-tight !default;
|
21
|
+
$card-title-nrml-padding: 12px !default;
|
22
|
+
$card-title-nrml-lheight: $leading-normal !default;
|
23
|
+
$card-hor-image-margin: 2px !default;
|
24
|
+
$card-sep-margin: 12px 0 !default;
|
25
|
+
$card-header-minheight: 22.5px !default;
|
26
|
+
$card-header-nrml-padding: 12px !default;
|
27
|
+
$card-header-nrml-padding-bottom: 0 !default;
|
28
|
+
$card-header-txt-nrml-padding: 0 0 0 12px !default;
|
29
|
+
$card-header-txt-title-lheight: $leading-normal !default;
|
30
|
+
$card-header-txt-title-nrml-padding: 4px 0 0 !default;
|
31
|
+
$card-header-txt-subtitle-lheight: $leading-normal !default;
|
32
|
+
$card-header-image-width: 52px !default;
|
33
|
+
$card-header-image-height: 50px !default;
|
34
|
+
$card-image-mheight: 112.5px !default;
|
35
|
+
$card-image-title-lheight: 30px !default;
|
36
|
+
$card-image-title-mheight: 30px !default;
|
37
|
+
$card-action-nrml-vertical-padding: 12px !default;
|
38
|
+
$card-action-nrml-btn-vertical-margin: 0 0 0 8px !default;
|
39
|
+
$card-action-btn-nrml-height: 30px !default;
|
40
|
+
$card-action-btn-nrml-margin: 0 0 0 8px !default;
|
41
|
+
$card-action-btn-nrml-padding: 0 6px !default;
|
42
|
+
$card-nrml-content-padding: 12px !default;
|
43
|
+
$card-header-txt-nrml-title-font: $text-base !default;
|
44
|
+
$card-header-txt-nrml-subtitle-font: $text-sm !default;
|
45
|
+
$card-image-title-font: $text-base !default;
|
46
|
+
$card-action-btn-icon-width: 24px !default;
|
47
|
+
$card-action-btn-icon-height: 24px !default;
|
48
|
+
// Touch
|
49
|
+
$card-bigger-lheight: 48px !default;
|
50
|
+
$card-bigger-mheight: 48px !default;
|
51
|
+
$card-header-bigger-padding: 16px !default;
|
52
|
+
$card-header-bigger-padding-bottom: 0 !default;
|
53
|
+
$card-header-bigger-lheight: $leading-normal !default;
|
54
|
+
$card-title-bigger-margin: 16px !default;
|
55
|
+
$card-title-bigger-lheight: $leading-normal !default;
|
56
|
+
$card-hor-image-bigger-margin: 2px !default;
|
57
|
+
$card-sep-bigger-margin: 16px 0 !default;
|
58
|
+
$card-header-bigger-minheight: 30px !default;
|
59
|
+
$card-header-txt-bigger-padding: 0 0 0 16px !default;
|
60
|
+
$card-header-txt-title-bigger-lheight: $leading-normal !default;
|
61
|
+
$card-header-txt-title-bigger-padding: 8px 0 0 !default;
|
62
|
+
$card-header-txt-subtitle-bigger-lheight: $leading-normal !default;
|
63
|
+
$card-header-image-bigger-width: 55px !default;
|
64
|
+
$card-header-image-bigger-height: 60px !default;
|
65
|
+
$card-image-bigger-mheight: 150px !default;
|
66
|
+
$card-image-title-bigger-lheight: $leading-tight !default;
|
67
|
+
$card-image-title-bigger-mheight: 40px !default;
|
68
|
+
$card-img-title-bigger-padding: 12px 16px !default;
|
69
|
+
$card-action-bigger-padding: 16px !default;
|
70
|
+
$card-action-bigger-vertical-padding: 16px 20px !default;
|
71
|
+
$card-action-bigger-btn-vertical-margin: 0 0 7px 0 !default;
|
72
|
+
$card-action-btn-bigger-height: 38px !default;
|
73
|
+
$card-action-btn-bigger-margin: 0 0 0 13px !default;
|
74
|
+
$card-action-btn-bigger-padding: 0 8px !default;
|
75
|
+
$card-bigger-content-padding: 16px !default;
|
76
|
+
$card-header-txt-bigger-title-font: $text-xl !default;
|
77
|
+
$card-header-txt-bigger-subtitle-font: $text-base !default;
|
78
|
+
$card-image-title-bigger-font: 18px !default;
|
79
|
+
$card-action-btn-bigger-icon-width: 24px !default;
|
80
|
+
$card-action-btn-bigger-icon-height: 24px !default;
|
81
|
+
$card-image-title-nrml-padding: 12px 16px !default;
|
82
|
+
$card-action-nrml-padding: 12px !default;
|
83
|
+
//Layout Variables End
|
84
|
+
|
85
|
+
//Theme Variables Start
|
86
|
+
$card-highlight-color: $primary !default;
|
87
|
+
$card-bg-color: $content-bg-color !default;
|
88
|
+
$card-focus-bg-color: $content-bg-color !default;
|
89
|
+
$card-hover-bg-color: $content-bg-color !default;
|
90
|
+
$card-active-bg-color: $content-bg-color !default;
|
91
|
+
$card-focus-brdr-color: $border-light !default;
|
92
|
+
$card-hover-brdr-color: $border-dark !default;
|
93
|
+
$card-active-brdr-color: $primary !default;
|
94
|
+
$card-brdr-size: 1px !default;
|
95
|
+
$card-brdr-type: solid !default;
|
96
|
+
$card-brdr-color: $border-light !default;
|
97
|
+
$card-sep-brdr-size: 1px !default;
|
98
|
+
$card-sep-brdr-type: solid !default;
|
99
|
+
$card-sep-brdr-color: $border-light !default;
|
100
|
+
$card-image-title-color: $white !default;
|
101
|
+
$card-image-title-bg: $overlay-bg-color !default;
|
102
|
+
$card-action-btn-bg-color: $transparent !default;
|
103
|
+
$card-action-btn-font-color: $primary !default;
|
104
|
+
$card-action-btn-border: 1px solid $primary !default;
|
105
|
+
$card-action-btn-hover-bg: $primary !default;
|
106
|
+
$card-action-btn-hover-border: 1px solid $secondary-border-color-hover !default;
|
107
|
+
$card-action-btn-hover-font: $white !default;
|
108
|
+
$card-action-btn-focus-bg: $secondary-bg-color-focus !default;
|
109
|
+
$card-action-btn-focus-border: 1px solid !default;
|
110
|
+
$card-action-btn-focus-font: $secondary-text-color-focus !default;
|
111
|
+
$card-action-btn-pressed-bg: $secondary-bg-color-pressed !default;
|
112
|
+
$card-action-btn-pressed-border: 1px solid $secondary-border-color-pressed !default;
|
113
|
+
$card-action-btn-pressed-font: $secondary-text-color-pressed !default;
|
114
|
+
$card-font-color: $content-text-color !default;
|
115
|
+
$card-header-txt-title-color: $content-text-color !default;
|
116
|
+
$card-header-txt-subtitle-color: $content-text-color-alt2 !default;
|
117
|
+
$card-content-font-color: $content-text-color-alt1 !default;
|
118
|
+
$card-box-shadow: none !default;
|
119
|
+
$card-action-btn-icon-color: $primary !default;
|
120
|
+
$card-hover-box-shadow: none !default;
|
121
|
+
//Theme Variables End
|
@@ -0,0 +1,121 @@
|
|
1
|
+
$skin-name: 'bootstrap5' !default;
|
2
|
+
//Layout Variables Start
|
3
|
+
$card-img-brdr-radious: 50% !default;
|
4
|
+
$card-brdr-radious: 4px !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-sm !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-sm !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-tight !default;
|
21
|
+
$card-title-nrml-padding: 12px !default;
|
22
|
+
$card-title-nrml-lheight: $leading-normal !default;
|
23
|
+
$card-hor-image-margin: 2px !default;
|
24
|
+
$card-sep-margin: 12px 0 !default;
|
25
|
+
$card-header-minheight: 22.5px !default;
|
26
|
+
$card-header-nrml-padding: 12px !default;
|
27
|
+
$card-header-nrml-padding-bottom: 0 !default;
|
28
|
+
$card-header-txt-nrml-padding: 0 0 0 12px !default;
|
29
|
+
$card-header-txt-title-lheight: $leading-normal !default;
|
30
|
+
$card-header-txt-title-nrml-padding: 4px 0 0 !default;
|
31
|
+
$card-header-txt-subtitle-lheight: $leading-normal !default;
|
32
|
+
$card-header-image-width: 52px !default;
|
33
|
+
$card-header-image-height: 50px !default;
|
34
|
+
$card-image-mheight: 112.5px !default;
|
35
|
+
$card-image-title-lheight: 30px !default;
|
36
|
+
$card-image-title-mheight: 30px !default;
|
37
|
+
$card-action-nrml-vertical-padding: 12px !default;
|
38
|
+
$card-action-nrml-btn-vertical-margin: 0 0 0 8px !default;
|
39
|
+
$card-action-btn-nrml-height: 30px !default;
|
40
|
+
$card-action-btn-nrml-margin: 0 0 0 8px !default;
|
41
|
+
$card-action-btn-nrml-padding: 0 6px !default;
|
42
|
+
$card-nrml-content-padding: 12px !default;
|
43
|
+
$card-header-txt-nrml-title-font: $text-base !default;
|
44
|
+
$card-header-txt-nrml-subtitle-font: $text-sm !default;
|
45
|
+
$card-image-title-font: $text-base !default;
|
46
|
+
$card-action-btn-icon-width: 24px !default;
|
47
|
+
$card-action-btn-icon-height: 24px !default;
|
48
|
+
// Touch
|
49
|
+
$card-bigger-lheight: 48px !default;
|
50
|
+
$card-bigger-mheight: 48px !default;
|
51
|
+
$card-header-bigger-padding: 16px !default;
|
52
|
+
$card-header-bigger-padding-bottom: 0 !default;
|
53
|
+
$card-header-bigger-lheight: $leading-normal !default;
|
54
|
+
$card-title-bigger-margin: 16px !default;
|
55
|
+
$card-title-bigger-lheight: $leading-normal !default;
|
56
|
+
$card-hor-image-bigger-margin: 2px !default;
|
57
|
+
$card-sep-bigger-margin: 16px 0 !default;
|
58
|
+
$card-header-bigger-minheight: 30px !default;
|
59
|
+
$card-header-txt-bigger-padding: 0 0 0 16px !default;
|
60
|
+
$card-header-txt-title-bigger-lheight: $leading-normal !default;
|
61
|
+
$card-header-txt-title-bigger-padding: 8px 0 0 !default;
|
62
|
+
$card-header-txt-subtitle-bigger-lheight: $leading-normal !default;
|
63
|
+
$card-header-image-bigger-width: 55px !default;
|
64
|
+
$card-header-image-bigger-height: 60px !default;
|
65
|
+
$card-image-bigger-mheight: 150px !default;
|
66
|
+
$card-image-title-bigger-lheight: $leading-tight !default;
|
67
|
+
$card-image-title-bigger-mheight: 40px !default;
|
68
|
+
$card-img-title-bigger-padding: 12px 16px !default;
|
69
|
+
$card-action-bigger-padding: 16px !default;
|
70
|
+
$card-action-bigger-vertical-padding: 16px 20px !default;
|
71
|
+
$card-action-bigger-btn-vertical-margin: 0 0 7px 0 !default;
|
72
|
+
$card-action-btn-bigger-height: 38px !default;
|
73
|
+
$card-action-btn-bigger-margin: 0 0 0 13px !default;
|
74
|
+
$card-action-btn-bigger-padding: 0 8px !default;
|
75
|
+
$card-bigger-content-padding: 16px !default;
|
76
|
+
$card-header-txt-bigger-title-font: $text-xl !default;
|
77
|
+
$card-header-txt-bigger-subtitle-font: $text-base !default;
|
78
|
+
$card-image-title-bigger-font: 18px !default;
|
79
|
+
$card-action-btn-bigger-icon-width: 24px !default;
|
80
|
+
$card-action-btn-bigger-icon-height: 24px !default;
|
81
|
+
$card-image-title-nrml-padding: 12px 16px !default;
|
82
|
+
$card-action-nrml-padding: 12px !default;
|
83
|
+
//Layout Variables End
|
84
|
+
|
85
|
+
//Theme Variables Start
|
86
|
+
$card-highlight-color: $primary !default;
|
87
|
+
$card-bg-color: $content-bg-color !default;
|
88
|
+
$card-focus-bg-color: $content-bg-color !default;
|
89
|
+
$card-hover-bg-color: $content-bg-color !default;
|
90
|
+
$card-active-bg-color: $content-bg-color !default;
|
91
|
+
$card-focus-brdr-color: $border-light !default;
|
92
|
+
$card-hover-brdr-color: $border-dark !default;
|
93
|
+
$card-active-brdr-color: $primary !default;
|
94
|
+
$card-brdr-size: 1px !default;
|
95
|
+
$card-brdr-type: solid !default;
|
96
|
+
$card-brdr-color: $border-light !default;
|
97
|
+
$card-sep-brdr-size: 1px !default;
|
98
|
+
$card-sep-brdr-type: solid !default;
|
99
|
+
$card-sep-brdr-color: $border-light !default;
|
100
|
+
$card-image-title-color: $white !default;
|
101
|
+
$card-image-title-bg: $overlay-bg-color !default;
|
102
|
+
$card-action-btn-bg-color: $transparent !default;
|
103
|
+
$card-action-btn-font-color: $primary !default;
|
104
|
+
$card-action-btn-border: 1px solid $primary !default;
|
105
|
+
$card-action-btn-hover-bg: $primary !default;
|
106
|
+
$card-action-btn-hover-border: 1px solid $secondary-border-color-hover !default;
|
107
|
+
$card-action-btn-hover-font: $white !default;
|
108
|
+
$card-action-btn-focus-bg: $secondary-bg-color-focus !default;
|
109
|
+
$card-action-btn-focus-border: 1px solid !default;
|
110
|
+
$card-action-btn-focus-font: $secondary-text-color-focus !default;
|
111
|
+
$card-action-btn-pressed-bg: $secondary-bg-color-pressed !default;
|
112
|
+
$card-action-btn-pressed-border: 1px solid $secondary-border-color-pressed !default;
|
113
|
+
$card-action-btn-pressed-font: $secondary-text-color-pressed !default;
|
114
|
+
$card-font-color: $content-text-color !default;
|
115
|
+
$card-header-txt-title-color: $content-text-color !default;
|
116
|
+
$card-header-txt-subtitle-color: $content-text-color-alt2 !default;
|
117
|
+
$card-content-font-color: $content-text-color-alt1 !default;
|
118
|
+
$card-box-shadow: none !default;
|
119
|
+
$card-action-btn-icon-color: $primary !default;
|
120
|
+
$card-hover-box-shadow: none !default;
|
121
|
+
//Theme Variables End
|
@@ -0,0 +1,109 @@
|
|
1
|
+
/*! component's theme wise override tailwind-definitions and variables */
|
2
|
+
|
3
|
+
// Generic
|
4
|
+
$icon-zero: 0 !default;
|
5
|
+
$icon-border-radius: 50% !default;
|
6
|
+
$grid-layout-position: relative !default;
|
7
|
+
$panel-position: absolute !default;
|
8
|
+
$panel-box-sizing: border-box !default;
|
9
|
+
|
10
|
+
// Header styles
|
11
|
+
|
12
|
+
// Mouse
|
13
|
+
$panel-header-height: 38px !default;
|
14
|
+
$panel-header-padding: 8px 18px !default;
|
15
|
+
$panel-header-line-height: 22px !default;
|
16
|
+
$panel-header-border-radius: 4px !default;
|
17
|
+
$panel-header-color: $content-text-color !default;
|
18
|
+
$panel-header-font-size: $text-sm !default;
|
19
|
+
$panel-header-bg-color: $content-bg-color-alt1 !default;
|
20
|
+
$panel-header-font-weight: $font-weight-medium !default;
|
21
|
+
$panel-header-border-bottom: 1px solid $border-light !default;
|
22
|
+
$panel-header-font-family: $font-family !default;
|
23
|
+
$panel-header-white-space: nowrap !default;
|
24
|
+
$panel-header-overflow: hidden !default;
|
25
|
+
$panel-header-text-overflow: ellipsis !default;
|
26
|
+
|
27
|
+
// Touch
|
28
|
+
$panel-bigger-header-height: 40px !default;
|
29
|
+
$panel-bigger-header-padding: 8px 18px !default;
|
30
|
+
$panel-bigger-header-line-height: 24px !default;
|
31
|
+
$panel-bigger-header-color: $content-text-color !default;
|
32
|
+
$panel-bigger-header-font-size: $text-base !default;
|
33
|
+
$panel-bigger-header-font-weight: $font-weight-medium !default;
|
34
|
+
|
35
|
+
// Panel styles
|
36
|
+
$panel-border: 1px solid $border-light !default;
|
37
|
+
$panel-border-radius: 4px !default;
|
38
|
+
$panel-full-height: 100% !default;
|
39
|
+
$panel-full-width: 100% !default;
|
40
|
+
$panel-hover-border: 1px solid $border-dark !default;
|
41
|
+
$panel-active-border: 1px solid $primary-border-color !default;
|
42
|
+
|
43
|
+
// icons styles
|
44
|
+
$panel-resize-one-dimensional-icon-height: 8px !default;
|
45
|
+
$panel-resize-one-dimensional-icon-width: 8px !default;
|
46
|
+
$panel-resize-one-dimensional-icon-background: none !default;
|
47
|
+
$panel-resize-one-dimensional-icon-border: none !default;
|
48
|
+
$panel-resize-one-dimensional-icon-shadow: none !default;
|
49
|
+
|
50
|
+
$panel-resize-two-dimensional-icon-height: 8px !default;
|
51
|
+
$panel-resize-two-dimensional-icon-width: 8px !default;
|
52
|
+
$panel-resize-two-dimensional-inner-icon-height: 8px !default;
|
53
|
+
$panel-resize-two-dimensional-inner-icon-width: 8px !default;
|
54
|
+
$panel-resize-two-dimensional-icon-background: none !default;
|
55
|
+
$panel-resize-two-dimensional-icon-color: $icon-color-disabled !default;
|
56
|
+
$panel-resize-two-dimensional-icon-border: none !default;
|
57
|
+
$panel-resize-two-dimensional-icon-shadow: none !default;
|
58
|
+
|
59
|
+
// south-east-icon-styles
|
60
|
+
$panel-south-east-icon-right: 2px !default;
|
61
|
+
$panel-south-east-icon-bottom: 2px !default;
|
62
|
+
|
63
|
+
// south-west-icon-style
|
64
|
+
$panel-south-west-icon-left: 2px !default;
|
65
|
+
$panel-south-west-icon-bottom: 2px !default;
|
66
|
+
|
67
|
+
// north-east-icon-styles
|
68
|
+
$panel-north-east-icon-right: 2px !default;
|
69
|
+
$panel-north-east-icon-top: 2px !default;
|
70
|
+
|
71
|
+
// north-west-icon-styles
|
72
|
+
$panel-north-west-icon-left: 2px !default;
|
73
|
+
$panel-north-west-icon-top: 2px !default;
|
74
|
+
|
75
|
+
// droppable area border
|
76
|
+
$panel-drop-border-radius: 4px !default;
|
77
|
+
|
78
|
+
// dragging element style
|
79
|
+
$panel-dragging-cursor: move !default;
|
80
|
+
$panel-drag-prevent: none !default;
|
81
|
+
|
82
|
+
// Blazor ContentTemplate styles
|
83
|
+
$panel-content-template-height: inherit !default;
|
84
|
+
$panel-content-template-width: inherit !default;
|
85
|
+
|
86
|
+
// sass-lint:disable-all
|
87
|
+
$panel-dragging-zindex: 1111 !important !default;
|
88
|
+
$panel-drag-prevent: none !default;
|
89
|
+
|
90
|
+
// sass-lint:disable-all
|
91
|
+
$element-width-complete: 100% !important !default;
|
92
|
+
|
93
|
+
// colors
|
94
|
+
|
95
|
+
// Panel styles
|
96
|
+
$panel-active-background: $flyout-bg-color !default;
|
97
|
+
$panel-hover-box-shadow: $shadow !default;
|
98
|
+
$panel-active-drag-box-shadow: $shadow !default;
|
99
|
+
$panel-background: $flyout-bg-color !default;
|
100
|
+
$panel-box-shadow: $shadow-sm;
|
101
|
+
|
102
|
+
// droppable area border
|
103
|
+
$panel-drop-background: $primary-lighter !default;
|
104
|
+
$panel-drop-border: 1px $primary-border-color dashed !default;
|
105
|
+
|
106
|
+
//gridlines
|
107
|
+
$gridline-background: $content-bg-color-alt1 !default;
|
108
|
+
$gridline-border: $border-dark !default;
|
109
|
+
$gridline-border-radius: 6px !default;
|
@@ -0,0 +1,109 @@
|
|
1
|
+
/*! component's theme wise override tailwind-definitions and variables */
|
2
|
+
|
3
|
+
// Generic
|
4
|
+
$icon-zero: 0 !default;
|
5
|
+
$icon-border-radius: 50% !default;
|
6
|
+
$grid-layout-position: relative !default;
|
7
|
+
$panel-position: absolute !default;
|
8
|
+
$panel-box-sizing: border-box !default;
|
9
|
+
|
10
|
+
// Header styles
|
11
|
+
|
12
|
+
// Mouse
|
13
|
+
$panel-header-height: 38px !default;
|
14
|
+
$panel-header-padding: 8px 18px !default;
|
15
|
+
$panel-header-line-height: 22px !default;
|
16
|
+
$panel-header-border-radius: 4px !default;
|
17
|
+
$panel-header-color: $content-text-color !default;
|
18
|
+
$panel-header-font-size: $text-sm !default;
|
19
|
+
$panel-header-bg-color: $content-bg-color-alt1 !default;
|
20
|
+
$panel-header-font-weight: $font-weight-medium !default;
|
21
|
+
$panel-header-border-bottom: 1px solid $border-light !default;
|
22
|
+
$panel-header-font-family: $font-family !default;
|
23
|
+
$panel-header-white-space: nowrap !default;
|
24
|
+
$panel-header-overflow: hidden !default;
|
25
|
+
$panel-header-text-overflow: ellipsis !default;
|
26
|
+
|
27
|
+
// Touch
|
28
|
+
$panel-bigger-header-height: 40px !default;
|
29
|
+
$panel-bigger-header-padding: 8px 18px !default;
|
30
|
+
$panel-bigger-header-line-height: 24px !default;
|
31
|
+
$panel-bigger-header-color: $content-text-color !default;
|
32
|
+
$panel-bigger-header-font-size: $text-base !default;
|
33
|
+
$panel-bigger-header-font-weight: $font-weight-medium !default;
|
34
|
+
|
35
|
+
// Panel styles
|
36
|
+
$panel-border: 1px solid $border-light !default;
|
37
|
+
$panel-border-radius: 4px !default;
|
38
|
+
$panel-full-height: 100% !default;
|
39
|
+
$panel-full-width: 100% !default;
|
40
|
+
$panel-hover-border: 1px solid $border-dark !default;
|
41
|
+
$panel-active-border: 1px solid $primary-border-color !default;
|
42
|
+
|
43
|
+
// icons styles
|
44
|
+
$panel-resize-one-dimensional-icon-height: 8px !default;
|
45
|
+
$panel-resize-one-dimensional-icon-width: 8px !default;
|
46
|
+
$panel-resize-one-dimensional-icon-background: none !default;
|
47
|
+
$panel-resize-one-dimensional-icon-border: none !default;
|
48
|
+
$panel-resize-one-dimensional-icon-shadow: none !default;
|
49
|
+
|
50
|
+
$panel-resize-two-dimensional-icon-height: 8px !default;
|
51
|
+
$panel-resize-two-dimensional-icon-width: 8px !default;
|
52
|
+
$panel-resize-two-dimensional-inner-icon-height: 8px !default;
|
53
|
+
$panel-resize-two-dimensional-inner-icon-width: 8px !default;
|
54
|
+
$panel-resize-two-dimensional-icon-background: none !default;
|
55
|
+
$panel-resize-two-dimensional-icon-color: $icon-color-disabled !default;
|
56
|
+
$panel-resize-two-dimensional-icon-border: none !default;
|
57
|
+
$panel-resize-two-dimensional-icon-shadow: none !default;
|
58
|
+
|
59
|
+
// south-east-icon-styles
|
60
|
+
$panel-south-east-icon-right: 2px !default;
|
61
|
+
$panel-south-east-icon-bottom: 2px !default;
|
62
|
+
|
63
|
+
// south-west-icon-style
|
64
|
+
$panel-south-west-icon-left: 2px !default;
|
65
|
+
$panel-south-west-icon-bottom: 2px !default;
|
66
|
+
|
67
|
+
// north-east-icon-styles
|
68
|
+
$panel-north-east-icon-right: 2px !default;
|
69
|
+
$panel-north-east-icon-top: 2px !default;
|
70
|
+
|
71
|
+
// north-west-icon-styles
|
72
|
+
$panel-north-west-icon-left: 2px !default;
|
73
|
+
$panel-north-west-icon-top: 2px !default;
|
74
|
+
|
75
|
+
// droppable area border
|
76
|
+
$panel-drop-border-radius: 4px !default;
|
77
|
+
|
78
|
+
// dragging element style
|
79
|
+
$panel-dragging-cursor: move !default;
|
80
|
+
$panel-drag-prevent: none !default;
|
81
|
+
|
82
|
+
// Blazor ContentTemplate styles
|
83
|
+
$panel-content-template-height: inherit !default;
|
84
|
+
$panel-content-template-width: inherit !default;
|
85
|
+
|
86
|
+
// sass-lint:disable-all
|
87
|
+
$panel-dragging-zindex: 1111 !important !default;
|
88
|
+
$panel-drag-prevent: none !default;
|
89
|
+
|
90
|
+
// sass-lint:disable-all
|
91
|
+
$element-width-complete: 100% !important !default;
|
92
|
+
|
93
|
+
// colors
|
94
|
+
|
95
|
+
// Panel styles
|
96
|
+
$panel-active-background: $flyout-bg-color !default;
|
97
|
+
$panel-hover-box-shadow: $shadow !default;
|
98
|
+
$panel-active-drag-box-shadow: $shadow !default;
|
99
|
+
$panel-background: $flyout-bg-color !default;
|
100
|
+
$panel-box-shadow: $shadow-sm;
|
101
|
+
|
102
|
+
// droppable area border
|
103
|
+
$panel-drop-background: $primary-lighter !default;
|
104
|
+
$panel-drop-border: 1px $primary-border-color dashed !default;
|
105
|
+
|
106
|
+
//gridlines
|
107
|
+
$gridline-background: $content-bg-color-alt1 !default;
|
108
|
+
$gridline-border: $border-dark !default;
|
109
|
+
$gridline-border-radius: 6px !default;
|
@@ -0,0 +1,81 @@
|
|
1
|
+
@include export-module('dashboardlayout-fusionnew-icons') {
|
2
|
+
.e-dashboardlayout.e-control {
|
3
|
+
& .e-panel {
|
4
|
+
|
5
|
+
& .e-resize.e-single,
|
6
|
+
& .e-resize.e-double {
|
7
|
+
&.e-east {
|
8
|
+
height: 100%;
|
9
|
+
padding: 20px 0;
|
10
|
+
right: 1px;
|
11
|
+
top: 0;
|
12
|
+
width: 12px;
|
13
|
+
|
14
|
+
}
|
15
|
+
|
16
|
+
&.e-west {
|
17
|
+
height: 100%;
|
18
|
+
left: 0;
|
19
|
+
padding: 20px 0;
|
20
|
+
top: 0;
|
21
|
+
width: 12px;
|
22
|
+
}
|
23
|
+
|
24
|
+
&.e-north {
|
25
|
+
height: 12px;
|
26
|
+
padding: 0 20px;
|
27
|
+
top: 1px;
|
28
|
+
width: 100%;
|
29
|
+
}
|
30
|
+
|
31
|
+
&.e-south {
|
32
|
+
bottom: 1px;
|
33
|
+
height: 12px;
|
34
|
+
padding: 0 20px;
|
35
|
+
width: 100%;
|
36
|
+
}
|
37
|
+
|
38
|
+
&.e-south-east {
|
39
|
+
bottom: 0;
|
40
|
+
right: 1px;
|
41
|
+
z-index: 10;
|
42
|
+
}
|
43
|
+
|
44
|
+
&.e-north-west {
|
45
|
+
left: 2px;
|
46
|
+
top: 2px;
|
47
|
+
z-index: 10;
|
48
|
+
}
|
49
|
+
|
50
|
+
&.e-north-east {
|
51
|
+
right: 2px;
|
52
|
+
top: 2px;
|
53
|
+
z-index: 10;
|
54
|
+
}
|
55
|
+
|
56
|
+
&.e-south-west {
|
57
|
+
bottom: 1px;
|
58
|
+
left: 1px;
|
59
|
+
z-index: 10;
|
60
|
+
}
|
61
|
+
|
62
|
+
&.e-south-east::before {
|
63
|
+
bottom: 4px;
|
64
|
+
content: '\e761';
|
65
|
+
font-size: 12px;
|
66
|
+
position: absolute;
|
67
|
+
right: 4px;
|
68
|
+
}
|
69
|
+
|
70
|
+
&.e-south-west::before {
|
71
|
+
bottom: 4px;
|
72
|
+
content: '\e761';
|
73
|
+
font-size: 12px;
|
74
|
+
left: 4px;
|
75
|
+
position: absolute;
|
76
|
+
transform: rotateY(180deg);
|
77
|
+
}
|
78
|
+
}
|
79
|
+
}
|
80
|
+
}
|
81
|
+
}
|
@@ -0,0 +1,81 @@
|
|
1
|
+
@include export-module('dashboardlayout-material3-icons') {
|
2
|
+
.e-dashboardlayout.e-control {
|
3
|
+
& .e-panel {
|
4
|
+
|
5
|
+
& .e-resize.e-single,
|
6
|
+
& .e-resize.e-double {
|
7
|
+
&.e-east {
|
8
|
+
height: 100%;
|
9
|
+
padding: 20px 0;
|
10
|
+
right: 1px;
|
11
|
+
top: 0;
|
12
|
+
width: 12px;
|
13
|
+
|
14
|
+
}
|
15
|
+
|
16
|
+
&.e-west {
|
17
|
+
height: 100%;
|
18
|
+
left: 0;
|
19
|
+
padding: 20px 0;
|
20
|
+
top: 0;
|
21
|
+
width: 12px;
|
22
|
+
}
|
23
|
+
|
24
|
+
&.e-north {
|
25
|
+
height: 12px;
|
26
|
+
padding: 0 20px;
|
27
|
+
top: 1px;
|
28
|
+
width: 100%;
|
29
|
+
}
|
30
|
+
|
31
|
+
&.e-south {
|
32
|
+
bottom: 1px;
|
33
|
+
height: 12px;
|
34
|
+
padding: 0 20px;
|
35
|
+
width: 100%;
|
36
|
+
}
|
37
|
+
|
38
|
+
&.e-south-east {
|
39
|
+
bottom: 0;
|
40
|
+
right: 1px;
|
41
|
+
z-index: 10;
|
42
|
+
}
|
43
|
+
|
44
|
+
&.e-north-west {
|
45
|
+
left: 2px;
|
46
|
+
top: 2px;
|
47
|
+
z-index: 10;
|
48
|
+
}
|
49
|
+
|
50
|
+
&.e-north-east {
|
51
|
+
right: 2px;
|
52
|
+
top: 2px;
|
53
|
+
z-index: 10;
|
54
|
+
}
|
55
|
+
|
56
|
+
&.e-south-west {
|
57
|
+
bottom: 1px;
|
58
|
+
left: 1px;
|
59
|
+
z-index: 10;
|
60
|
+
}
|
61
|
+
|
62
|
+
&.e-south-east::before {
|
63
|
+
bottom: 4px;
|
64
|
+
content: '\e761';
|
65
|
+
font-size: 12px;
|
66
|
+
position: absolute;
|
67
|
+
right: 4px;
|
68
|
+
}
|
69
|
+
|
70
|
+
&.e-south-west::before {
|
71
|
+
bottom: 4px;
|
72
|
+
content: '\e761';
|
73
|
+
font-size: 12px;
|
74
|
+
left: 4px;
|
75
|
+
position: absolute;
|
76
|
+
transform: rotateY(180deg);
|
77
|
+
}
|
78
|
+
}
|
79
|
+
}
|
80
|
+
}
|
81
|
+
}
|
@@ -0,0 +1,30 @@
|
|
1
|
+
$skin-name: 'bootstrap' !default;
|
2
|
+
//Layout Variables Start
|
3
|
+
$splitpane-font-size: $text-sm !default;
|
4
|
+
$splitpane-font-weight: $font-weight-normal !default;
|
5
|
+
$splitpane-font-family: $font-family !default;
|
6
|
+
$splitbar-icon-size: 14px !default;
|
7
|
+
$splitbar-icon-gap: 18px !default;
|
8
|
+
$bigger-splitbar-icon-gap: 20px !default;
|
9
|
+
$bigger-splitpane-font-size: $text-base !default;
|
10
|
+
$bigger-splitbar-icon-size: 16px !default;
|
11
|
+
//Layout Variables End
|
12
|
+
|
13
|
+
//Theme Variables Start
|
14
|
+
$navigation-arrow-background: $transparent !default;
|
15
|
+
$navigation-icon-background-hover: $primary !default;
|
16
|
+
$navigation-icon-border-hover: $primary !default;
|
17
|
+
$splitter-border-color: $border-light !default;
|
18
|
+
$splitter-background-color: $primary-text-color !default;
|
19
|
+
$splitpane-font-color: $content-text-color !default;
|
20
|
+
$splitbar-border-color: $border-light !default;
|
21
|
+
$splitbar-hover-border-color: $primary !default;
|
22
|
+
$resize-icon-hover-color: $splitbar-hover-border-color !default;
|
23
|
+
$splitbar-icon-color: $icon-color !default;
|
24
|
+
$collapse-icon-bg-color: $primary-text-color !default;
|
25
|
+
$resize-icon-bg-color: $content-bg-color !default;
|
26
|
+
$split-bar-border-left: none !default;
|
27
|
+
$split-bar-border-right: none !default;
|
28
|
+
$split-bar-hover-border-left: none !default;
|
29
|
+
$split-bar-hover-border-right: none !default;
|
30
|
+
//Theme Variables End
|
@@ -0,0 +1,30 @@
|
|
1
|
+
$skin-name: 'bootstrap' !default;
|
2
|
+
//Layout Variables Start
|
3
|
+
$splitpane-font-size: $text-sm !default;
|
4
|
+
$splitpane-font-weight: $font-weight-normal !default;
|
5
|
+
$splitpane-font-family: $font-family !default;
|
6
|
+
$splitbar-icon-size: 14px !default;
|
7
|
+
$splitbar-icon-gap: 18px !default;
|
8
|
+
$bigger-splitbar-icon-gap: 20px !default;
|
9
|
+
$bigger-splitpane-font-size: $text-base !default;
|
10
|
+
$bigger-splitbar-icon-size: 16px !default;
|
11
|
+
//Layout Variables End
|
12
|
+
|
13
|
+
//Theme Variables Start
|
14
|
+
$navigation-arrow-background: $transparent !default;
|
15
|
+
$navigation-icon-background-hover: $primary !default;
|
16
|
+
$navigation-icon-border-hover: $primary !default;
|
17
|
+
$splitter-border-color: $border-light !default;
|
18
|
+
$splitter-background-color: $primary-text-color !default;
|
19
|
+
$splitpane-font-color: $content-text-color !default;
|
20
|
+
$splitbar-border-color: $border-light !default;
|
21
|
+
$splitbar-hover-border-color: $primary !default;
|
22
|
+
$resize-icon-hover-color: $splitbar-hover-border-color !default;
|
23
|
+
$splitbar-icon-color: $icon-color !default;
|
24
|
+
$collapse-icon-bg-color: $primary-text-color !default;
|
25
|
+
$resize-icon-bg-color: $content-bg-color !default;
|
26
|
+
$split-bar-border-left: none !default;
|
27
|
+
$split-bar-border-right: none !default;
|
28
|
+
$split-bar-hover-border-left: none !default;
|
29
|
+
$split-bar-hover-border-right: none !default;
|
30
|
+
//Theme Variables End
|
@@ -0,0 +1,39 @@
|
|
1
|
+
@include export-module('splitter-material-icons') {
|
2
|
+
.e-splitter {
|
3
|
+
.e-split-bar {
|
4
|
+
&.e-split-bar-horizontal {
|
5
|
+
.e-resize-handler::before {
|
6
|
+
content: '\e7e3';
|
7
|
+
font-family: 'e-icons';
|
8
|
+
font-size: $splitbar-icon-size;
|
9
|
+
}
|
10
|
+
}
|
11
|
+
|
12
|
+
&.e-split-bar-vertical {
|
13
|
+
& .e-resize-handler::before {
|
14
|
+
content: '\e7fd';
|
15
|
+
font-family: 'e-icons';
|
16
|
+
font-size: $splitbar-icon-size;
|
17
|
+
}
|
18
|
+
}
|
19
|
+
}
|
20
|
+
}
|
21
|
+
|
22
|
+
.e-bigger {
|
23
|
+
.e-splitter {
|
24
|
+
.e-split-bar {
|
25
|
+
.e-resize-handler::before {
|
26
|
+
font-size: $bigger-splitbar-icon-size;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
}
|
30
|
+
|
31
|
+
&.e-splitter {
|
32
|
+
.e-split-bar {
|
33
|
+
.e-resize-handler::before {
|
34
|
+
font-size: $bigger-splitbar-icon-size;
|
35
|
+
}
|
36
|
+
}
|
37
|
+
}
|
38
|
+
}
|
39
|
+
}
|
@@ -0,0 +1,39 @@
|
|
1
|
+
@include export-module('splitter-material-icons') {
|
2
|
+
.e-splitter {
|
3
|
+
.e-split-bar {
|
4
|
+
&.e-split-bar-horizontal {
|
5
|
+
.e-resize-handler::before {
|
6
|
+
content: '\e7e3';
|
7
|
+
font-family: 'e-icons';
|
8
|
+
font-size: $splitbar-icon-size;
|
9
|
+
}
|
10
|
+
}
|
11
|
+
|
12
|
+
&.e-split-bar-vertical {
|
13
|
+
& .e-resize-handler::before {
|
14
|
+
content: '\e7fd';
|
15
|
+
font-family: 'e-icons';
|
16
|
+
font-size: $splitbar-icon-size;
|
17
|
+
}
|
18
|
+
}
|
19
|
+
}
|
20
|
+
}
|
21
|
+
|
22
|
+
.e-bigger {
|
23
|
+
.e-splitter {
|
24
|
+
.e-split-bar {
|
25
|
+
.e-resize-handler::before {
|
26
|
+
font-size: $bigger-splitbar-icon-size;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
}
|
30
|
+
|
31
|
+
&.e-splitter {
|
32
|
+
.e-split-bar {
|
33
|
+
.e-resize-handler::before {
|
34
|
+
font-size: $bigger-splitbar-icon-size;
|
35
|
+
}
|
36
|
+
}
|
37
|
+
}
|
38
|
+
}
|
39
|
+
}
|