@syncfusion/ej2-base 24.2.7 → 25.1.35-579988
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/.eslintrc.json +2 -1
- package/CHANGELOG.md +641 -677
- package/{README.md → ReadMe.md} +100 -100
- package/dist/ej2-base.umd.min.js +1 -10
- package/dist/ej2-base.umd.min.js.map +1 -1
- package/dist/es6/ej2-base.es2015.js +178 -1025
- package/dist/es6/ej2-base.es2015.js.map +1 -1
- package/dist/es6/ej2-base.es5.js +226 -934
- package/dist/es6/ej2-base.es5.js.map +1 -1
- package/dist/global/ej2-base.min.js +1 -10
- package/dist/global/ej2-base.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/dist/ts/ajax.ts +236 -0
- package/dist/ts/animation.ts +544 -0
- package/dist/ts/base.ts +357 -0
- package/dist/ts/browser.ts +387 -0
- package/dist/ts/child-property.ts +192 -0
- package/dist/ts/component.ts +519 -0
- package/dist/ts/dom.ts +488 -0
- package/dist/ts/draggable.ts +1155 -0
- package/dist/ts/droppable.ts +172 -0
- package/dist/ts/event-handler.ts +169 -0
- package/dist/ts/internationalization.ts +369 -0
- package/dist/ts/intl/date-formatter.ts +317 -0
- package/dist/ts/intl/date-parser.ts +426 -0
- package/dist/ts/intl/intl-base.ts +1104 -0
- package/dist/ts/intl/number-formatter.ts +411 -0
- package/dist/ts/intl/number-parser.ts +158 -0
- package/dist/ts/intl/parser-base.ts +394 -0
- package/dist/ts/keyboard.ts +238 -0
- package/dist/ts/l10n.ts +94 -0
- package/dist/ts/module-loader.ts +149 -0
- package/dist/ts/notify-property-change.ts +726 -0
- package/dist/ts/observer.ts +236 -0
- package/dist/ts/sanitize-helper.ts +224 -0
- package/dist/ts/template-engine.ts +191 -0
- package/dist/ts/template.ts +329 -0
- package/dist/ts/touch.ts +544 -0
- package/dist/ts/util.ts +523 -0
- package/dist/ts/validate-lic.ts +0 -0
- package/e2e/crypto.js +16 -16
- package/e2e/m.protractor.config.js +286 -286
- package/e2e/modified-protractor/protractor.config.js +316 -316
- package/e2e/protractor.config.js +389 -332
- package/helpers/e2e/index.js +3 -3
- package/license +10 -10
- package/package.json +225 -174
- package/src/ajax.d.ts +1 -1
- package/src/ajax.js +3 -8
- package/src/animation-model.d.ts +41 -41
- package/src/animation.d.ts +6 -6
- package/src/animation.js +25 -25
- package/src/base.d.ts +2 -1
- package/src/base.js +9 -7
- package/src/component-model.d.ts +16 -16
- package/src/component.d.ts +9 -3
- package/src/component.js +50 -38
- package/src/draggable-model.d.ts +113 -113
- package/src/draggable.d.ts +2 -0
- package/src/draggable.js +45 -29
- package/src/droppable-model.d.ts +23 -23
- package/src/droppable.js +19 -19
- package/src/event-handler.js +2 -1
- package/src/index.d.ts +0 -3
- package/src/index.js +0 -3
- package/src/intl/date-formatter.js +2 -6
- package/src/intl/date-parser.js +1 -20
- package/src/intl/intl-base.js +1 -164
- package/src/intl/number-formatter.d.ts +3 -0
- package/src/intl/number-formatter.js +7 -7
- package/src/intl/number-parser.js +1 -0
- package/src/keyboard-model.d.ts +16 -16
- package/src/keyboard.js +19 -19
- package/src/module-loader.d.ts +12 -0
- package/src/module-loader.js +11 -0
- package/src/notify-property-change.js +3 -2
- package/src/observer.js +2 -0
- package/src/sanitize-helper.js +5 -0
- package/src/template-engine.js +1 -0
- package/src/template.js +3 -2
- package/src/touch-model.d.ts +39 -39
- package/src/touch.js +19 -19
- package/src/validate-lic.d.ts +0 -11
- package/src/validate-lic.js +1 -259
- package/styles/_all.scss +2 -2
- package/styles/_bds-dark-definition.scss +15 -0
- package/styles/_bds-definition.scss +15 -0
- package/styles/_bootstrap-dark-definition.scss +42 -42
- package/styles/_bootstrap-definition.scss +42 -42
- package/styles/_bootstrap4-definition.scss +11 -11
- package/styles/_bootstrap5-dark-definition.scss +9 -9
- package/styles/_bootstrap5-definition.scss +8 -8
- package/styles/_fabric-dark-definition.scss +42 -42
- package/styles/_fabric-definition.scss +42 -42
- package/styles/_fluent-dark-definition.scss +9 -9
- package/styles/_fluent-definition.scss +9 -9
- package/styles/_fluent2-definition.scss +9 -0
- package/styles/_fusionnew-dark-definition.scss +8 -8
- package/styles/_fusionnew-definition.scss +8 -8
- package/styles/_highcontrast-definition.scss +42 -42
- package/styles/_highcontrast-light-definition.scss +42 -42
- package/styles/_material-dark-definition.scss +48 -48
- package/styles/_material-definition.scss +49 -49
- package/styles/_material3-dark-definition.scss +14 -14
- package/styles/_material3-definition.scss +15 -15
- package/styles/_tailwind-dark-definition.scss +15 -15
- package/styles/_tailwind-definition.scss +15 -15
- package/styles/animation/_all.scss +560 -560
- package/styles/bootstrap-dark.css +10 -1
- package/styles/bootstrap.css +10 -1
- package/styles/bootstrap4.css +10 -1
- package/styles/bootstrap5-dark.css +10 -1
- package/styles/bootstrap5.css +10 -1
- package/styles/common/_all.scss +2 -2
- package/styles/common/_core.scss +117 -117
- package/styles/common/_mixin.scss +9 -9
- package/styles/definition/_bds-dark.scss +1179 -0
- package/styles/definition/_bds.scss +1474 -0
- package/styles/definition/_bootstrap-dark.scss +219 -219
- package/styles/definition/_bootstrap.scss +215 -215
- package/styles/definition/_bootstrap4.scss +167 -167
- package/styles/definition/_bootstrap5-dark.scss +493 -493
- package/styles/definition/_bootstrap5.scss +494 -494
- package/styles/definition/_fabric-dark.scss +200 -200
- package/styles/definition/_fabric.scss +198 -198
- package/styles/definition/_fluent-dark.scss +557 -557
- package/styles/definition/_fluent.scss +558 -558
- package/styles/definition/_fluent2.scss +2198 -0
- package/styles/definition/_fusionnew-dark.scss +362 -362
- package/styles/definition/_fusionnew.scss +363 -363
- package/styles/definition/_highcontrast-light.scss +193 -193
- package/styles/definition/_highcontrast.scss +195 -195
- package/styles/definition/_material-dark.scss +198 -198
- package/styles/definition/_material.scss +192 -192
- package/styles/definition/_material3-dark.scss +710 -710
- package/styles/definition/_material3.scss +792 -792
- package/styles/definition/_tailwind-dark.scss +488 -488
- package/styles/definition/_tailwind.scss +485 -485
- package/styles/fabric-dark.css +10 -1
- package/styles/fabric.css +10 -1
- package/styles/fluent-dark.css +10 -1
- package/styles/fluent.css +10 -1
- package/styles/highcontrast-light.css +10 -1
- package/styles/highcontrast.css +10 -1
- package/styles/material-dark.css +10 -1
- package/styles/material.css +10 -1
- package/styles/material3-dark.css +10 -1
- package/styles/material3.css +10 -1
- package/styles/offline-theme/material-dark.css +10 -1
- package/styles/offline-theme/material.css +10 -1
- package/styles/offline-theme/tailwind-dark.css +10 -1
- package/styles/offline-theme/tailwind.css +10 -1
- package/styles/tailwind-dark.css +10 -1
- package/styles/tailwind.css +10 -1
- package/.github/PULL_REQUEST_TEMPLATE/Bug.md +0 -60
- package/.github/PULL_REQUEST_TEMPLATE/feature.md +0 -42
- package/bin/syncfusion-license.js +0 -2
- package/dist/ej2-base.min.js +0 -10
- package/e2e/index.d.ts +0 -27
- package/src/fetch.d.ts +0 -114
- package/src/fetch.js +0 -116
- package/src/hijri-parser.d.ts +0 -19
- package/src/hijri-parser.js +0 -204
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
@import 'definition/bootstrap5.scss';
|
|
2
|
-
|
|
3
|
-
$font-size: 12px !default;
|
|
4
|
-
$font-weight: 400 !default;
|
|
5
|
-
$error-font-color: $danger !default;
|
|
6
|
-
$warning-font-color: $yellow !default;
|
|
7
|
-
$success-font-color: #198754 !default;
|
|
8
|
-
$information-font-color: #0dcaf0 !default;
|
|
1
|
+
@import 'definition/bootstrap5.scss';
|
|
2
|
+
|
|
3
|
+
$font-size: 12px !default;
|
|
4
|
+
$font-weight: 400 !default;
|
|
5
|
+
$error-font-color: $danger !default;
|
|
6
|
+
$warning-font-color: $yellow !default;
|
|
7
|
+
$success-font-color: #198754 !default;
|
|
8
|
+
$information-font-color: #0dcaf0 !default;
|
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
@import 'definition/fabric-dark.scss';
|
|
2
|
-
|
|
3
|
-
$font-family: 'Segoe UI', 'GeezaPro', 'DejaVu Serif', sans-serif, '-apple-system', 'BlinkMacSystemFont' !default;
|
|
4
|
-
$font-size: 14px !default;
|
|
5
|
-
$font-weight: normal !default;
|
|
6
|
-
$font-path: 'common-images' !default;
|
|
7
|
-
$header-bg-color: $theme-primary !default;
|
|
8
|
-
$header-gradient-color: none !default;
|
|
9
|
-
$header-border-color: $theme-primary !default;
|
|
10
|
-
$header-font-color: $theme-primary-font !default;
|
|
11
|
-
$header-icon-color: $theme-primary-font !default;
|
|
12
|
-
$content-bg-color: $neutral-white !default;
|
|
13
|
-
$content-border-color: $neutral-white !default;
|
|
14
|
-
$content-font-color: $base-font !default;
|
|
15
|
-
$default-bg-color: $neutral-white !default;
|
|
16
|
-
$default-gradient-color: none !default;
|
|
17
|
-
$default-border-color: $neutral-white !default;
|
|
18
|
-
$default-font-color: $base-font !default;
|
|
19
|
-
$default-icon-color: $base-font !default;
|
|
20
|
-
$hover-bg-color: $neutral-light !default;
|
|
21
|
-
$hover-gradient-color: none !default;
|
|
22
|
-
$hover-border-color: $neutral-light !default;
|
|
23
|
-
$hover-font-color: $neutral-light-font !default;
|
|
24
|
-
$hover-icon-color: $neutral-light-font !default;
|
|
25
|
-
$active-bg-color: $theme-light !default;
|
|
26
|
-
$active-gradient-color: none !default;
|
|
27
|
-
$active-border-color: $theme-light !default;
|
|
28
|
-
$active-font-color: $theme-light-font !default;
|
|
29
|
-
$active-icon-color: $theme-light-font !default;
|
|
30
|
-
$error-font-color: $error-font !default;
|
|
31
|
-
$warning-font-color: $alert-font !default;
|
|
32
|
-
$success-font-color: $success-font !default;
|
|
33
|
-
$information-font-color: $message-font !default;
|
|
34
|
-
$overlay-bg-color: #383838 !default;
|
|
35
|
-
$shadow-color: rgba(0, 0, 0, .4) !default;
|
|
36
|
-
$border-size: 1px !default;
|
|
37
|
-
$border-type: solid !default;
|
|
38
|
-
$border-radius: 0 !default;
|
|
39
|
-
$border-left-radius: 0 !default;
|
|
40
|
-
$border-right-radius: 0 !default;
|
|
41
|
-
$border-top-radius: 0 !default;
|
|
42
|
-
$border-bottom-radius: 0 !default;
|
|
1
|
+
@import 'definition/fabric-dark.scss';
|
|
2
|
+
|
|
3
|
+
$font-family: 'Segoe UI', 'GeezaPro', 'DejaVu Serif', sans-serif, '-apple-system', 'BlinkMacSystemFont' !default;
|
|
4
|
+
$font-size: 14px !default;
|
|
5
|
+
$font-weight: normal !default;
|
|
6
|
+
$font-path: 'common-images' !default;
|
|
7
|
+
$header-bg-color: $theme-primary !default;
|
|
8
|
+
$header-gradient-color: none !default;
|
|
9
|
+
$header-border-color: $theme-primary !default;
|
|
10
|
+
$header-font-color: $theme-primary-font !default;
|
|
11
|
+
$header-icon-color: $theme-primary-font !default;
|
|
12
|
+
$content-bg-color: $neutral-white !default;
|
|
13
|
+
$content-border-color: $neutral-white !default;
|
|
14
|
+
$content-font-color: $base-font !default;
|
|
15
|
+
$default-bg-color: $neutral-white !default;
|
|
16
|
+
$default-gradient-color: none !default;
|
|
17
|
+
$default-border-color: $neutral-white !default;
|
|
18
|
+
$default-font-color: $base-font !default;
|
|
19
|
+
$default-icon-color: $base-font !default;
|
|
20
|
+
$hover-bg-color: $neutral-light !default;
|
|
21
|
+
$hover-gradient-color: none !default;
|
|
22
|
+
$hover-border-color: $neutral-light !default;
|
|
23
|
+
$hover-font-color: $neutral-light-font !default;
|
|
24
|
+
$hover-icon-color: $neutral-light-font !default;
|
|
25
|
+
$active-bg-color: $theme-light !default;
|
|
26
|
+
$active-gradient-color: none !default;
|
|
27
|
+
$active-border-color: $theme-light !default;
|
|
28
|
+
$active-font-color: $theme-light-font !default;
|
|
29
|
+
$active-icon-color: $theme-light-font !default;
|
|
30
|
+
$error-font-color: $error-font !default;
|
|
31
|
+
$warning-font-color: $alert-font !default;
|
|
32
|
+
$success-font-color: $success-font !default;
|
|
33
|
+
$information-font-color: $message-font !default;
|
|
34
|
+
$overlay-bg-color: #383838 !default;
|
|
35
|
+
$shadow-color: rgba(0, 0, 0, .4) !default;
|
|
36
|
+
$border-size: 1px !default;
|
|
37
|
+
$border-type: solid !default;
|
|
38
|
+
$border-radius: 0 !default;
|
|
39
|
+
$border-left-radius: 0 !default;
|
|
40
|
+
$border-right-radius: 0 !default;
|
|
41
|
+
$border-top-radius: 0 !default;
|
|
42
|
+
$border-bottom-radius: 0 !default;
|
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
@import 'definition/fabric.scss';
|
|
2
|
-
|
|
3
|
-
$font-family: 'Segoe UI', 'GeezaPro', 'DejaVu Serif', sans-serif, '-apple-system', 'BlinkMacSystemFont' !default;
|
|
4
|
-
$font-size: 14px !default;
|
|
5
|
-
$font-weight: normal !default;
|
|
6
|
-
$font-path: 'common-images' !default;
|
|
7
|
-
$header-bg-color: $theme-primary !default;
|
|
8
|
-
$header-gradient-color: none !default;
|
|
9
|
-
$header-border-color: $theme-primary !default;
|
|
10
|
-
$header-font-color: $theme-primary-font !default;
|
|
11
|
-
$header-icon-color: $theme-primary-font !default;
|
|
12
|
-
$content-bg-color: $neutral-white !default;
|
|
13
|
-
$content-border-color: $neutral-white !default;
|
|
14
|
-
$content-font-color: $base-font !default;
|
|
15
|
-
$default-bg-color: $neutral-white !default;
|
|
16
|
-
$default-gradient-color: none !default;
|
|
17
|
-
$default-border-color: $neutral-white !default;
|
|
18
|
-
$default-font-color: $base-font !default;
|
|
19
|
-
$default-icon-color: $base-font !default;
|
|
20
|
-
$hover-bg-color: $neutral-light !default;
|
|
21
|
-
$hover-gradient-color: none !default;
|
|
22
|
-
$hover-border-color: $neutral-light !default;
|
|
23
|
-
$hover-font-color: $neutral-light-font !default;
|
|
24
|
-
$hover-icon-color: $neutral-light-font !default;
|
|
25
|
-
$active-bg-color: $theme-light !default;
|
|
26
|
-
$active-gradient-color: none !default;
|
|
27
|
-
$active-border-color: $theme-light !default;
|
|
28
|
-
$active-font-color: $theme-light-font !default;
|
|
29
|
-
$active-icon-color: $theme-light-font !default;
|
|
30
|
-
$error-font-color: $error-font !default;
|
|
31
|
-
$warning-font-color: $alert-font !default;
|
|
32
|
-
$success-font-color: $success-font !default;
|
|
33
|
-
$information-font-color: $message-font !default;
|
|
34
|
-
$overlay-bg-color: #383838 !default;
|
|
35
|
-
$shadow-color: rgba(0, 0, 0, .4) !default;
|
|
36
|
-
$border-size: 1px !default;
|
|
37
|
-
$border-type: solid !default;
|
|
38
|
-
$border-radius: 0 !default;
|
|
39
|
-
$border-left-radius: 0 !default;
|
|
40
|
-
$border-right-radius: 0 !default;
|
|
41
|
-
$border-top-radius: 0 !default;
|
|
42
|
-
$border-bottom-radius: 0 !default;
|
|
1
|
+
@import 'definition/fabric.scss';
|
|
2
|
+
|
|
3
|
+
$font-family: 'Segoe UI', 'GeezaPro', 'DejaVu Serif', sans-serif, '-apple-system', 'BlinkMacSystemFont' !default;
|
|
4
|
+
$font-size: 14px !default;
|
|
5
|
+
$font-weight: normal !default;
|
|
6
|
+
$font-path: 'common-images' !default;
|
|
7
|
+
$header-bg-color: $theme-primary !default;
|
|
8
|
+
$header-gradient-color: none !default;
|
|
9
|
+
$header-border-color: $theme-primary !default;
|
|
10
|
+
$header-font-color: $theme-primary-font !default;
|
|
11
|
+
$header-icon-color: $theme-primary-font !default;
|
|
12
|
+
$content-bg-color: $neutral-white !default;
|
|
13
|
+
$content-border-color: $neutral-white !default;
|
|
14
|
+
$content-font-color: $base-font !default;
|
|
15
|
+
$default-bg-color: $neutral-white !default;
|
|
16
|
+
$default-gradient-color: none !default;
|
|
17
|
+
$default-border-color: $neutral-white !default;
|
|
18
|
+
$default-font-color: $base-font !default;
|
|
19
|
+
$default-icon-color: $base-font !default;
|
|
20
|
+
$hover-bg-color: $neutral-light !default;
|
|
21
|
+
$hover-gradient-color: none !default;
|
|
22
|
+
$hover-border-color: $neutral-light !default;
|
|
23
|
+
$hover-font-color: $neutral-light-font !default;
|
|
24
|
+
$hover-icon-color: $neutral-light-font !default;
|
|
25
|
+
$active-bg-color: $theme-light !default;
|
|
26
|
+
$active-gradient-color: none !default;
|
|
27
|
+
$active-border-color: $theme-light !default;
|
|
28
|
+
$active-font-color: $theme-light-font !default;
|
|
29
|
+
$active-icon-color: $theme-light-font !default;
|
|
30
|
+
$error-font-color: $error-font !default;
|
|
31
|
+
$warning-font-color: $alert-font !default;
|
|
32
|
+
$success-font-color: $success-font !default;
|
|
33
|
+
$information-font-color: $message-font !default;
|
|
34
|
+
$overlay-bg-color: #383838 !default;
|
|
35
|
+
$shadow-color: rgba(0, 0, 0, .4) !default;
|
|
36
|
+
$border-size: 1px !default;
|
|
37
|
+
$border-type: solid !default;
|
|
38
|
+
$border-radius: 0 !default;
|
|
39
|
+
$border-left-radius: 0 !default;
|
|
40
|
+
$border-right-radius: 0 !default;
|
|
41
|
+
$border-top-radius: 0 !default;
|
|
42
|
+
$border-bottom-radius: 0 !default;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
@import 'definition/fluent-dark.scss';
|
|
2
|
-
|
|
3
|
-
$font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif !default;
|
|
4
|
-
$font-size: 12px !default;
|
|
5
|
-
$font-weight: 400 !default;
|
|
6
|
-
$error-font-color: $danger !default;
|
|
7
|
-
$warning-font-color: $orange20 !default;
|
|
8
|
-
$success-font-color: $green20 !default;
|
|
9
|
-
$information-font-color: $white !default;
|
|
1
|
+
@import 'definition/fluent-dark.scss';
|
|
2
|
+
|
|
3
|
+
$font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif !default;
|
|
4
|
+
$font-size: 12px !default;
|
|
5
|
+
$font-weight: 400 !default;
|
|
6
|
+
$error-font-color: $danger !default;
|
|
7
|
+
$warning-font-color: $orange20 !default;
|
|
8
|
+
$success-font-color: $green20 !default;
|
|
9
|
+
$information-font-color: $white !default;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
@import 'definition/fluent.scss';
|
|
2
|
-
|
|
3
|
-
$font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif !default;
|
|
4
|
-
$font-size: 12px !default;
|
|
5
|
-
$font-weight: 400 !default;
|
|
6
|
-
$error-font-color: $danger !default;
|
|
7
|
-
$warning-font-color: $orange20 !default;
|
|
8
|
-
$success-font-color: $green20 !default;
|
|
9
|
-
$information-font-color: $white !default;
|
|
1
|
+
@import 'definition/fluent.scss';
|
|
2
|
+
|
|
3
|
+
$font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif !default;
|
|
4
|
+
$font-size: 12px !default;
|
|
5
|
+
$font-weight: 400 !default;
|
|
6
|
+
$error-font-color: $danger !default;
|
|
7
|
+
$warning-font-color: $orange20 !default;
|
|
8
|
+
$success-font-color: $green20 !default;
|
|
9
|
+
$information-font-color: $white !default;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
@import 'definition/fluent2.scss';
|
|
2
|
+
|
|
3
|
+
$font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif !default;
|
|
4
|
+
$font-size: 12px !default;
|
|
5
|
+
$font-weight: 400 !default;
|
|
6
|
+
$error-font-color: $danger !default;
|
|
7
|
+
$warning-font-color: $orange20 !default;
|
|
8
|
+
$success-font-color: $green20 !default;
|
|
9
|
+
$information-font-color: $white !default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
@import 'definition/fusionnew-dark.scss';
|
|
2
|
-
|
|
3
|
-
$font-size: 12px !default;
|
|
4
|
-
$font-weight: 400 !default;
|
|
5
|
-
$error-font-color: $danger !default;
|
|
6
|
-
$warning-font-color: $yellow !default;
|
|
7
|
-
$success-font-color: #198754 !default;
|
|
8
|
-
$information-font-color: #0dcaf0 !default;
|
|
1
|
+
@import 'definition/fusionnew-dark.scss';
|
|
2
|
+
|
|
3
|
+
$font-size: 12px !default;
|
|
4
|
+
$font-weight: 400 !default;
|
|
5
|
+
$error-font-color: $danger !default;
|
|
6
|
+
$warning-font-color: $yellow !default;
|
|
7
|
+
$success-font-color: #198754 !default;
|
|
8
|
+
$information-font-color: #0dcaf0 !default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
@import 'definition/fusionnew.scss';
|
|
2
|
-
|
|
3
|
-
$font-size: 12px !default;
|
|
4
|
-
$font-weight: 400 !default;
|
|
5
|
-
$error-font-color: $danger !default;
|
|
6
|
-
$warning-font-color: $yellow !default;
|
|
7
|
-
$success-font-color: #198754 !default;
|
|
8
|
-
$information-font-color: #0dcaf0 !default;
|
|
1
|
+
@import 'definition/fusionnew.scss';
|
|
2
|
+
|
|
3
|
+
$font-size: 12px !default;
|
|
4
|
+
$font-weight: 400 !default;
|
|
5
|
+
$error-font-color: $danger !default;
|
|
6
|
+
$warning-font-color: $yellow !default;
|
|
7
|
+
$success-font-color: #198754 !default;
|
|
8
|
+
$information-font-color: #0dcaf0 !default;
|
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
@import 'definition/highcontrast.scss';
|
|
2
|
-
|
|
3
|
-
$font-family: 'Segoe UI', 'GeezaPro', 'DejaVu Serif', sans-serif, '-apple-system', 'BlinkMacSystemFont' !default;
|
|
4
|
-
$font-size: 12px !default;
|
|
5
|
-
$font-weight: normal !default;
|
|
6
|
-
$font-path: 'common-images' !default;
|
|
7
|
-
$header-bg-color: $bg-base-20 !default;
|
|
8
|
-
$header-gradient-color: none !default;
|
|
9
|
-
$header-border-color: $border-default !default;
|
|
10
|
-
$header-font-color: $header-font !default;
|
|
11
|
-
$header-icon-color: $header-font !default;
|
|
12
|
-
$content-bg-color: $bg-base-20 !default;
|
|
13
|
-
$content-border-color: $border-default !default;
|
|
14
|
-
$content-font-color: $content-font !default;
|
|
15
|
-
$default-bg-color: $bg-base-20 !default;
|
|
16
|
-
$default-gradient-color: none !default;
|
|
17
|
-
$default-border-color: $border-default !default;
|
|
18
|
-
$default-font-color: $content-font !default;
|
|
19
|
-
$default-icon-color: $content-font !default;
|
|
20
|
-
$hover-bg-color: $hover-bg !default;
|
|
21
|
-
$hover-gradient-color: none !default;
|
|
22
|
-
$hover-border-color: $hover-border !default;
|
|
23
|
-
$hover-font-color: $hover-font !default;
|
|
24
|
-
$hover-icon-color: $hover-font !default;
|
|
25
|
-
$active-bg-color: $success-bg !default;
|
|
26
|
-
$active-gradient-color: none !default;
|
|
27
|
-
$active-border-color: $border-default !default;
|
|
28
|
-
$active-font-color: $content-font !default;
|
|
29
|
-
$active-icon-color: $content-font !default;
|
|
30
|
-
$error-font-color: $error-alt !default;
|
|
31
|
-
$information-font-color: $info-bg !default;
|
|
32
|
-
$warning-font-color: $msg-warning-color !default;
|
|
33
|
-
$success-font-color: $success-alt !default;
|
|
34
|
-
$overlay-bg-color: #383838 !default;
|
|
35
|
-
$shadow-color: rgba(0, 0, 0, .4) !default;
|
|
36
|
-
$border-size: 1px !default;
|
|
37
|
-
$border-type: solid !default;
|
|
38
|
-
$border-radius: 0 !default;
|
|
39
|
-
$border-left-radius: 0 !default;
|
|
40
|
-
$border-right-radius: 0 !default;
|
|
41
|
-
$border-top-radius: 0 !default;
|
|
42
|
-
$border-bottom-radius: 0 !default;
|
|
1
|
+
@import 'definition/highcontrast.scss';
|
|
2
|
+
|
|
3
|
+
$font-family: 'Segoe UI', 'GeezaPro', 'DejaVu Serif', sans-serif, '-apple-system', 'BlinkMacSystemFont' !default;
|
|
4
|
+
$font-size: 12px !default;
|
|
5
|
+
$font-weight: normal !default;
|
|
6
|
+
$font-path: 'common-images' !default;
|
|
7
|
+
$header-bg-color: $bg-base-20 !default;
|
|
8
|
+
$header-gradient-color: none !default;
|
|
9
|
+
$header-border-color: $border-default !default;
|
|
10
|
+
$header-font-color: $header-font !default;
|
|
11
|
+
$header-icon-color: $header-font !default;
|
|
12
|
+
$content-bg-color: $bg-base-20 !default;
|
|
13
|
+
$content-border-color: $border-default !default;
|
|
14
|
+
$content-font-color: $content-font !default;
|
|
15
|
+
$default-bg-color: $bg-base-20 !default;
|
|
16
|
+
$default-gradient-color: none !default;
|
|
17
|
+
$default-border-color: $border-default !default;
|
|
18
|
+
$default-font-color: $content-font !default;
|
|
19
|
+
$default-icon-color: $content-font !default;
|
|
20
|
+
$hover-bg-color: $hover-bg !default;
|
|
21
|
+
$hover-gradient-color: none !default;
|
|
22
|
+
$hover-border-color: $hover-border !default;
|
|
23
|
+
$hover-font-color: $hover-font !default;
|
|
24
|
+
$hover-icon-color: $hover-font !default;
|
|
25
|
+
$active-bg-color: $success-bg !default;
|
|
26
|
+
$active-gradient-color: none !default;
|
|
27
|
+
$active-border-color: $border-default !default;
|
|
28
|
+
$active-font-color: $content-font !default;
|
|
29
|
+
$active-icon-color: $content-font !default;
|
|
30
|
+
$error-font-color: $error-alt !default;
|
|
31
|
+
$information-font-color: $info-bg !default;
|
|
32
|
+
$warning-font-color: $msg-warning-color !default;
|
|
33
|
+
$success-font-color: $success-alt !default;
|
|
34
|
+
$overlay-bg-color: #383838 !default;
|
|
35
|
+
$shadow-color: rgba(0, 0, 0, .4) !default;
|
|
36
|
+
$border-size: 1px !default;
|
|
37
|
+
$border-type: solid !default;
|
|
38
|
+
$border-radius: 0 !default;
|
|
39
|
+
$border-left-radius: 0 !default;
|
|
40
|
+
$border-right-radius: 0 !default;
|
|
41
|
+
$border-top-radius: 0 !default;
|
|
42
|
+
$border-bottom-radius: 0 !default;
|
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
@import 'definition/highcontrast-light.scss';
|
|
2
|
-
|
|
3
|
-
$font-family: 'Segoe UI', 'GeezaPro', 'DejaVu Serif', sans-serif, '-apple-system', 'BlinkMacSystemFont' !default;
|
|
4
|
-
$font-size: 12px !default;
|
|
5
|
-
$font-weight: normal !default;
|
|
6
|
-
$font-path: 'common-images' !default;
|
|
7
|
-
$header-bg-color: $bg-base-20 !default;
|
|
8
|
-
$header-gradient-color: none !default;
|
|
9
|
-
$header-border-color: $border-default !default;
|
|
10
|
-
$header-font-color: $header-font !default;
|
|
11
|
-
$header-icon-color: $header-font !default;
|
|
12
|
-
$content-bg-color: $bg-base-20 !default;
|
|
13
|
-
$content-border-color: $border-default !default;
|
|
14
|
-
$content-font-color: $content-font !default;
|
|
15
|
-
$default-bg-color: $bg-base-20 !default;
|
|
16
|
-
$default-gradient-color: none !default;
|
|
17
|
-
$default-border-color: $border-default !default;
|
|
18
|
-
$default-font-color: $content-font !default;
|
|
19
|
-
$default-icon-color: $content-font !default;
|
|
20
|
-
$hover-bg-color: $hover-bg !default;
|
|
21
|
-
$hover-gradient-color: none !default;
|
|
22
|
-
$hover-border-color: $hover-border !default;
|
|
23
|
-
$hover-font-color: $hover-font !default;
|
|
24
|
-
$hover-icon-color: $hover-font !default;
|
|
25
|
-
$active-bg-color: $success-bg !default;
|
|
26
|
-
$active-gradient-color: none !default;
|
|
27
|
-
$active-border-color: $border-default !default;
|
|
28
|
-
$active-font-color: $content-font !default;
|
|
29
|
-
$active-icon-color: $content-font !default;
|
|
30
|
-
$error-font-color: $error-alt !default;
|
|
31
|
-
$information-font-color: $info-bg !default;
|
|
32
|
-
$warning-font-color: $msg-warning-color !default;
|
|
33
|
-
$success-font-color: $success-alt !default;
|
|
34
|
-
$overlay-bg-color: #383838 !default;
|
|
35
|
-
$shadow-color: rgba(0, 0, 0, .4) !default;
|
|
36
|
-
$border-size: 1px !default;
|
|
37
|
-
$border-type: solid !default;
|
|
38
|
-
$border-radius: 0 !default;
|
|
39
|
-
$border-left-radius: 0 !default;
|
|
40
|
-
$border-right-radius: 0 !default;
|
|
41
|
-
$border-top-radius: 0 !default;
|
|
42
|
-
$border-bottom-radius: 0 !default;
|
|
1
|
+
@import 'definition/highcontrast-light.scss';
|
|
2
|
+
|
|
3
|
+
$font-family: 'Segoe UI', 'GeezaPro', 'DejaVu Serif', sans-serif, '-apple-system', 'BlinkMacSystemFont' !default;
|
|
4
|
+
$font-size: 12px !default;
|
|
5
|
+
$font-weight: normal !default;
|
|
6
|
+
$font-path: 'common-images' !default;
|
|
7
|
+
$header-bg-color: $bg-base-20 !default;
|
|
8
|
+
$header-gradient-color: none !default;
|
|
9
|
+
$header-border-color: $border-default !default;
|
|
10
|
+
$header-font-color: $header-font !default;
|
|
11
|
+
$header-icon-color: $header-font !default;
|
|
12
|
+
$content-bg-color: $bg-base-20 !default;
|
|
13
|
+
$content-border-color: $border-default !default;
|
|
14
|
+
$content-font-color: $content-font !default;
|
|
15
|
+
$default-bg-color: $bg-base-20 !default;
|
|
16
|
+
$default-gradient-color: none !default;
|
|
17
|
+
$default-border-color: $border-default !default;
|
|
18
|
+
$default-font-color: $content-font !default;
|
|
19
|
+
$default-icon-color: $content-font !default;
|
|
20
|
+
$hover-bg-color: $hover-bg !default;
|
|
21
|
+
$hover-gradient-color: none !default;
|
|
22
|
+
$hover-border-color: $hover-border !default;
|
|
23
|
+
$hover-font-color: $hover-font !default;
|
|
24
|
+
$hover-icon-color: $hover-font !default;
|
|
25
|
+
$active-bg-color: $success-bg !default;
|
|
26
|
+
$active-gradient-color: none !default;
|
|
27
|
+
$active-border-color: $border-default !default;
|
|
28
|
+
$active-font-color: $content-font !default;
|
|
29
|
+
$active-icon-color: $content-font !default;
|
|
30
|
+
$error-font-color: $error-alt !default;
|
|
31
|
+
$information-font-color: $info-bg !default;
|
|
32
|
+
$warning-font-color: $msg-warning-color !default;
|
|
33
|
+
$success-font-color: $success-alt !default;
|
|
34
|
+
$overlay-bg-color: #383838 !default;
|
|
35
|
+
$shadow-color: rgba(0, 0, 0, .4) !default;
|
|
36
|
+
$border-size: 1px !default;
|
|
37
|
+
$border-type: solid !default;
|
|
38
|
+
$border-radius: 0 !default;
|
|
39
|
+
$border-left-radius: 0 !default;
|
|
40
|
+
$border-right-radius: 0 !default;
|
|
41
|
+
$border-top-radius: 0 !default;
|
|
42
|
+
$border-bottom-radius: 0 !default;
|
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
@import 'definition/material-dark.scss';
|
|
2
|
-
|
|
3
|
-
@if not variable-exists('is-roboto-loaded') {
|
|
4
|
-
//sass-lint:disable no-url-protocols,no-url-domains
|
|
5
|
-
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700');// stylelint-disable-line no-invalid-position-at-import-rule
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
$is-roboto-loaded: 'true' !default;
|
|
9
|
-
$font-family: 'Roboto', 'Segoe UI', 'GeezaPro', 'DejaVu Serif', 'sans-serif', '-apple-system', 'BlinkMacSystemFont' !default;
|
|
10
|
-
$font-size: 12px !default;
|
|
11
|
-
$font-weight: normal !default;
|
|
12
|
-
$font-path: 'common-images' !default;
|
|
13
|
-
$header-bg-color: $grey-white !default;
|
|
14
|
-
$header-gradient-color: none !default;
|
|
15
|
-
$header-border-color: $grey-black !default;
|
|
16
|
-
$header-font-color: $grey-light-font !default;
|
|
17
|
-
$header-icon-color: $grey-light-font !default;
|
|
18
|
-
$content-bg-color: $grey-white !default;
|
|
19
|
-
$content-border-color: $grey-black !default;
|
|
20
|
-
$content-font-color: $grey-light-font !default;
|
|
21
|
-
$default-bg-color: $grey-white !default;
|
|
22
|
-
$default-gradient-color: none !default;
|
|
23
|
-
$default-border-color: $grey-black !default;
|
|
24
|
-
$default-font-color: $grey-light-font !default;
|
|
25
|
-
$default-icon-color: $grey-light-font !default;
|
|
26
|
-
$hover-bg-color: $grey-200 !default;
|
|
27
|
-
$hover-gradient-color: none !default;
|
|
28
|
-
$hover-border-color: $grey-black !default;
|
|
29
|
-
$hover-font-color: $grey-light-font !default;
|
|
30
|
-
$hover-icon-color: $grey-light-font !default;
|
|
31
|
-
$active-bg-color: $grey-100 !default;
|
|
32
|
-
$active-gradient-color: none !default;
|
|
33
|
-
$active-border-color: $grey-black !default;
|
|
34
|
-
$active-font-color: $grey-light-font !default;
|
|
35
|
-
$active-icon-color: $grey-light-font !default;
|
|
36
|
-
$error-font-color: $error-font !default;
|
|
37
|
-
$warning-font-color: #ffca1c !default;
|
|
38
|
-
$success-font-color: #22b24b !default;
|
|
39
|
-
$information-font-color: #489bd5 !default;
|
|
40
|
-
$overlay-bg-color: #383838 !default;
|
|
41
|
-
$shadow-color: rgba(0, 0, 0, .4) !default;
|
|
42
|
-
$border-size: 1px !default;
|
|
43
|
-
$border-type: solid !default;
|
|
44
|
-
$border-radius: 0 !default;
|
|
45
|
-
$border-left-radius: 0 !default;
|
|
46
|
-
$border-right-radius: 0 !default;
|
|
47
|
-
$border-top-radius: 0 !default;
|
|
48
|
-
$border-bottom-radius: 0 !default;
|
|
1
|
+
@import 'definition/material-dark.scss';
|
|
2
|
+
|
|
3
|
+
@if not variable-exists('is-roboto-loaded') {
|
|
4
|
+
//sass-lint:disable no-url-protocols,no-url-domains
|
|
5
|
+
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700');// stylelint-disable-line no-invalid-position-at-import-rule
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
$is-roboto-loaded: 'true' !default;
|
|
9
|
+
$font-family: 'Roboto', 'Segoe UI', 'GeezaPro', 'DejaVu Serif', 'sans-serif', '-apple-system', 'BlinkMacSystemFont' !default;
|
|
10
|
+
$font-size: 12px !default;
|
|
11
|
+
$font-weight: normal !default;
|
|
12
|
+
$font-path: 'common-images' !default;
|
|
13
|
+
$header-bg-color: $grey-white !default;
|
|
14
|
+
$header-gradient-color: none !default;
|
|
15
|
+
$header-border-color: $grey-black !default;
|
|
16
|
+
$header-font-color: $grey-light-font !default;
|
|
17
|
+
$header-icon-color: $grey-light-font !default;
|
|
18
|
+
$content-bg-color: $grey-white !default;
|
|
19
|
+
$content-border-color: $grey-black !default;
|
|
20
|
+
$content-font-color: $grey-light-font !default;
|
|
21
|
+
$default-bg-color: $grey-white !default;
|
|
22
|
+
$default-gradient-color: none !default;
|
|
23
|
+
$default-border-color: $grey-black !default;
|
|
24
|
+
$default-font-color: $grey-light-font !default;
|
|
25
|
+
$default-icon-color: $grey-light-font !default;
|
|
26
|
+
$hover-bg-color: $grey-200 !default;
|
|
27
|
+
$hover-gradient-color: none !default;
|
|
28
|
+
$hover-border-color: $grey-black !default;
|
|
29
|
+
$hover-font-color: $grey-light-font !default;
|
|
30
|
+
$hover-icon-color: $grey-light-font !default;
|
|
31
|
+
$active-bg-color: $grey-100 !default;
|
|
32
|
+
$active-gradient-color: none !default;
|
|
33
|
+
$active-border-color: $grey-black !default;
|
|
34
|
+
$active-font-color: $grey-light-font !default;
|
|
35
|
+
$active-icon-color: $grey-light-font !default;
|
|
36
|
+
$error-font-color: $error-font !default;
|
|
37
|
+
$warning-font-color: #ffca1c !default;
|
|
38
|
+
$success-font-color: #22b24b !default;
|
|
39
|
+
$information-font-color: #489bd5 !default;
|
|
40
|
+
$overlay-bg-color: #383838 !default;
|
|
41
|
+
$shadow-color: rgba(0, 0, 0, .4) !default;
|
|
42
|
+
$border-size: 1px !default;
|
|
43
|
+
$border-type: solid !default;
|
|
44
|
+
$border-radius: 0 !default;
|
|
45
|
+
$border-left-radius: 0 !default;
|
|
46
|
+
$border-right-radius: 0 !default;
|
|
47
|
+
$border-top-radius: 0 !default;
|
|
48
|
+
$border-bottom-radius: 0 !default;
|
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
@import 'definition/material.scss';
|
|
2
|
-
|
|
3
|
-
@if not variable-exists('is-roboto-loaded') {
|
|
4
|
-
//sass-lint:disable no-url-protocols,no-url-domains
|
|
5
|
-
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700');// stylelint-disable-line no-invalid-position-at-import-rule
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
$is-roboto-loaded: 'true' !default;
|
|
9
|
-
|
|
10
|
-
$font-family: 'Roboto', 'Segoe UI', 'GeezaPro', 'DejaVu Serif', 'sans-serif', '-apple-system', 'BlinkMacSystemFont' !default;
|
|
11
|
-
$font-size: 12px !default;
|
|
12
|
-
$font-weight: normal !default;
|
|
13
|
-
$font-path: 'common-images' !default;
|
|
14
|
-
$header-bg-color: $grey-white !default;
|
|
15
|
-
$header-gradient-color: none !default;
|
|
16
|
-
$header-border-color: $grey-black !default;
|
|
17
|
-
$header-font-color: $grey-light-font !default;
|
|
18
|
-
$header-icon-color: $grey-light-font !default;
|
|
19
|
-
$content-bg-color: $grey-white !default;
|
|
20
|
-
$content-border-color: $grey-black !default;
|
|
21
|
-
$content-font-color: $grey-light-font !default;
|
|
22
|
-
$default-bg-color: $grey-white !default;
|
|
23
|
-
$default-gradient-color: none !default;
|
|
24
|
-
$default-border-color: $grey-black !default;
|
|
25
|
-
$default-font-color: $grey-light-font !default;
|
|
26
|
-
$default-icon-color: $grey-light-font !default;
|
|
27
|
-
$hover-bg-color: $grey-200 !default;
|
|
28
|
-
$hover-gradient-color: none !default;
|
|
29
|
-
$hover-border-color: $grey-black !default;
|
|
30
|
-
$hover-font-color: $grey-light-font !default;
|
|
31
|
-
$hover-icon-color: $grey-light-font !default;
|
|
32
|
-
$active-bg-color: $grey-100 !default;
|
|
33
|
-
$active-gradient-color: none !default;
|
|
34
|
-
$active-border-color: $grey-black !default;
|
|
35
|
-
$active-font-color: $grey-light-font !default;
|
|
36
|
-
$active-icon-color: $grey-light-font !default;
|
|
37
|
-
$error-font-color: $error-font !default;
|
|
38
|
-
$warning-font-color: #ffca1c !default;
|
|
39
|
-
$success-font-color: #22b24b !default;
|
|
40
|
-
$information-font-color: #489bd5 !default;
|
|
41
|
-
$overlay-bg-color: #383838 !default;
|
|
42
|
-
$shadow-color: rgba(0, 0, 0, .4) !default;
|
|
43
|
-
$border-size: 1px !default;
|
|
44
|
-
$border-type: solid !default;
|
|
45
|
-
$border-radius: 0 !default;
|
|
46
|
-
$border-left-radius: 0 !default;
|
|
47
|
-
$border-right-radius: 0 !default;
|
|
48
|
-
$border-top-radius: 0 !default;
|
|
49
|
-
$border-bottom-radius: 0 !default;
|
|
1
|
+
@import 'definition/material.scss';
|
|
2
|
+
|
|
3
|
+
@if not variable-exists('is-roboto-loaded') {
|
|
4
|
+
//sass-lint:disable no-url-protocols,no-url-domains
|
|
5
|
+
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700');// stylelint-disable-line no-invalid-position-at-import-rule
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
$is-roboto-loaded: 'true' !default;
|
|
9
|
+
|
|
10
|
+
$font-family: 'Roboto', 'Segoe UI', 'GeezaPro', 'DejaVu Serif', 'sans-serif', '-apple-system', 'BlinkMacSystemFont' !default;
|
|
11
|
+
$font-size: 12px !default;
|
|
12
|
+
$font-weight: normal !default;
|
|
13
|
+
$font-path: 'common-images' !default;
|
|
14
|
+
$header-bg-color: $grey-white !default;
|
|
15
|
+
$header-gradient-color: none !default;
|
|
16
|
+
$header-border-color: $grey-black !default;
|
|
17
|
+
$header-font-color: $grey-light-font !default;
|
|
18
|
+
$header-icon-color: $grey-light-font !default;
|
|
19
|
+
$content-bg-color: $grey-white !default;
|
|
20
|
+
$content-border-color: $grey-black !default;
|
|
21
|
+
$content-font-color: $grey-light-font !default;
|
|
22
|
+
$default-bg-color: $grey-white !default;
|
|
23
|
+
$default-gradient-color: none !default;
|
|
24
|
+
$default-border-color: $grey-black !default;
|
|
25
|
+
$default-font-color: $grey-light-font !default;
|
|
26
|
+
$default-icon-color: $grey-light-font !default;
|
|
27
|
+
$hover-bg-color: $grey-200 !default;
|
|
28
|
+
$hover-gradient-color: none !default;
|
|
29
|
+
$hover-border-color: $grey-black !default;
|
|
30
|
+
$hover-font-color: $grey-light-font !default;
|
|
31
|
+
$hover-icon-color: $grey-light-font !default;
|
|
32
|
+
$active-bg-color: $grey-100 !default;
|
|
33
|
+
$active-gradient-color: none !default;
|
|
34
|
+
$active-border-color: $grey-black !default;
|
|
35
|
+
$active-font-color: $grey-light-font !default;
|
|
36
|
+
$active-icon-color: $grey-light-font !default;
|
|
37
|
+
$error-font-color: $error-font !default;
|
|
38
|
+
$warning-font-color: #ffca1c !default;
|
|
39
|
+
$success-font-color: #22b24b !default;
|
|
40
|
+
$information-font-color: #489bd5 !default;
|
|
41
|
+
$overlay-bg-color: #383838 !default;
|
|
42
|
+
$shadow-color: rgba(0, 0, 0, .4) !default;
|
|
43
|
+
$border-size: 1px !default;
|
|
44
|
+
$border-type: solid !default;
|
|
45
|
+
$border-radius: 0 !default;
|
|
46
|
+
$border-left-radius: 0 !default;
|
|
47
|
+
$border-right-radius: 0 !default;
|
|
48
|
+
$border-top-radius: 0 !default;
|
|
49
|
+
$border-bottom-radius: 0 !default;
|