@syncfusion/ej2-angular-splitbuttons 20.2.43-ngcc → 20.2.45
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/esm2020/public_api.mjs +3 -0
- package/esm2020/src/drop-down-button/dropdownbutton-all.module.mjs +23 -0
- package/esm2020/src/drop-down-button/dropdownbutton.component.mjs +64 -0
- package/esm2020/src/drop-down-button/dropdownbutton.module.mjs +34 -0
- package/esm2020/src/drop-down-button/items.directive.mjs +46 -0
- package/esm2020/src/index.mjs +13 -0
- package/esm2020/src/progress-button/progressbutton-all.module.mjs +23 -0
- package/esm2020/src/progress-button/progressbutton.component.mjs +59 -0
- package/esm2020/src/progress-button/progressbutton.module.mjs +25 -0
- package/esm2020/src/split-button/items.directive.mjs +46 -0
- package/esm2020/src/split-button/splitbutton-all.module.mjs +23 -0
- package/esm2020/src/split-button/splitbutton.component.mjs +64 -0
- package/esm2020/src/split-button/splitbutton.module.mjs +34 -0
- package/esm2020/syncfusion-ej2-angular-splitbuttons.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-splitbuttons.mjs +405 -0
- package/fesm2015/syncfusion-ej2-angular-splitbuttons.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-splitbuttons.mjs +405 -0
- package/fesm2020/syncfusion-ej2-angular-splitbuttons.mjs.map +1 -0
- package/package.json +28 -14
- package/schematics/utils/lib-details.ts +2 -2
- package/src/drop-down-button/dropdownbutton-all.module.d.ts +6 -0
- package/src/drop-down-button/dropdownbutton.component.d.ts +3 -0
- package/src/drop-down-button/dropdownbutton.module.d.ts +7 -0
- package/src/drop-down-button/items.directive.d.ts +5 -0
- package/src/progress-button/progressbutton-all.module.d.ts +6 -0
- package/src/progress-button/progressbutton.component.d.ts +3 -0
- package/src/progress-button/progressbutton.module.d.ts +6 -0
- package/src/split-button/items.directive.d.ts +5 -0
- package/src/split-button/splitbutton-all.module.d.ts +6 -0
- package/src/split-button/splitbutton.component.d.ts +3 -0
- package/src/split-button/splitbutton.module.d.ts +7 -0
- package/styles/bootstrap-dark.css +226 -5
- package/styles/bootstrap-dark.scss +1 -0
- package/styles/bootstrap.css +221 -0
- package/styles/bootstrap.scss +1 -0
- package/styles/bootstrap4.css +222 -1
- package/styles/bootstrap4.scss +1 -0
- package/styles/bootstrap5-dark.css +223 -0
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5.css +223 -0
- package/styles/bootstrap5.scss +1 -0
- package/styles/button-group/_all.scss +2 -0
- package/styles/button-group/_bootstrap-dark-definition.scss +33 -0
- package/styles/button-group/_bootstrap-definition.scss +30 -0
- package/styles/button-group/_bootstrap4-definition.scss +30 -0
- package/styles/button-group/_bootstrap5-dark-definition.scss +1 -0
- package/styles/button-group/_bootstrap5-definition.scss +31 -0
- package/styles/button-group/_fabric-dark-definition.scss +33 -0
- package/styles/button-group/_fabric-definition.scss +30 -0
- package/styles/button-group/_fluent-dark-definition.scss +1 -0
- package/styles/button-group/_fluent-definition.scss +31 -0
- package/styles/button-group/_fusionnew-definition.scss +31 -0
- package/styles/button-group/_group-button-mixin.scss +72 -0
- package/styles/button-group/_highcontrast-definition.scss +32 -0
- package/styles/button-group/_highcontrast-light-definition.scss +35 -0
- package/styles/button-group/_layout.scss +288 -0
- package/styles/button-group/_material-dark-definition.scss +33 -0
- package/styles/button-group/_material-definition.scss +30 -0
- package/styles/button-group/_material3-definition.scss +31 -0
- package/styles/button-group/_tailwind-dark-definition.scss +1 -0
- package/styles/button-group/_tailwind-definition.scss +31 -0
- package/styles/button-group/_theme.scss +386 -0
- package/styles/button-group/bootstrap-dark.css +2 -0
- package/styles/button-group/bootstrap-dark.scss +4 -1
- package/styles/button-group/bootstrap.css +2 -0
- package/styles/button-group/bootstrap.scss +4 -1
- package/styles/button-group/bootstrap4.css +2 -0
- package/styles/button-group/bootstrap4.scss +4 -1
- package/styles/button-group/bootstrap5-dark.css +2 -0
- package/styles/button-group/bootstrap5-dark.scss +4 -1
- package/styles/button-group/bootstrap5.css +2 -0
- package/styles/button-group/bootstrap5.scss +4 -1
- package/styles/button-group/fabric-dark.css +2 -0
- package/styles/button-group/fabric-dark.scss +4 -1
- package/styles/button-group/fabric.css +2 -0
- package/styles/button-group/fabric.scss +4 -1
- package/styles/button-group/fluent-dark.css +2 -0
- package/styles/button-group/fluent-dark.scss +4 -1
- package/styles/button-group/fluent.css +2 -0
- package/styles/button-group/fluent.scss +4 -1
- package/styles/button-group/highcontrast-light.css +2 -0
- package/styles/button-group/highcontrast-light.scss +4 -1
- package/styles/button-group/highcontrast.css +2 -0
- package/styles/button-group/highcontrast.scss +4 -1
- package/styles/button-group/material-dark.css +2 -0
- package/styles/button-group/material-dark.scss +4 -1
- package/styles/button-group/material.css +2 -0
- package/styles/button-group/material.scss +4 -1
- package/styles/button-group/tailwind-dark.css +2 -0
- package/styles/button-group/tailwind-dark.scss +4 -1
- package/styles/button-group/tailwind.css +2 -0
- package/styles/button-group/tailwind.scss +4 -1
- package/styles/drop-down-button/_all.scss +2 -0
- package/styles/drop-down-button/_bootstrap-dark-definition.scss +51 -0
- package/styles/drop-down-button/_bootstrap-definition.scss +48 -0
- package/styles/drop-down-button/_bootstrap4-definition.scss +48 -0
- package/styles/drop-down-button/_bootstrap5-dark-definition.scss +1 -0
- package/styles/drop-down-button/_bootstrap5-definition.scss +50 -0
- package/styles/drop-down-button/_fabric-dark-definition.scss +51 -0
- package/styles/drop-down-button/_fabric-definition.scss +48 -0
- package/styles/drop-down-button/_fluent-dark-definition.scss +1 -0
- package/styles/drop-down-button/_fluent-definition.scss +52 -0
- package/styles/drop-down-button/_fusionnew-definition.scss +50 -0
- package/styles/drop-down-button/_highcontrast-definition.scss +47 -0
- package/styles/drop-down-button/_highcontrast-light-definition.scss +50 -0
- package/styles/drop-down-button/_layout.scss +218 -0
- package/styles/drop-down-button/_material-dark-definition.scss +51 -0
- package/styles/drop-down-button/_material-definition.scss +48 -0
- package/styles/drop-down-button/_material3-definition.scss +50 -0
- package/styles/drop-down-button/_tailwind-dark-definition.scss +1 -0
- package/styles/drop-down-button/_tailwind-definition.scss +49 -0
- package/styles/drop-down-button/_theme.scss +58 -0
- package/styles/drop-down-button/bootstrap-dark.scss +6 -1
- package/styles/drop-down-button/bootstrap.scss +6 -1
- package/styles/drop-down-button/bootstrap4.scss +6 -1
- package/styles/drop-down-button/bootstrap5-dark.css +1 -0
- package/styles/drop-down-button/bootstrap5-dark.scss +6 -1
- package/styles/drop-down-button/bootstrap5.css +1 -0
- package/styles/drop-down-button/bootstrap5.scss +6 -1
- package/styles/drop-down-button/fabric-dark.scss +6 -1
- package/styles/drop-down-button/fabric.scss +6 -1
- package/styles/drop-down-button/fluent-dark.css +1 -0
- package/styles/drop-down-button/fluent-dark.scss +6 -1
- package/styles/drop-down-button/fluent.css +1 -0
- package/styles/drop-down-button/fluent.scss +6 -1
- package/styles/drop-down-button/highcontrast-light.scss +6 -1
- package/styles/drop-down-button/highcontrast.scss +6 -1
- package/styles/drop-down-button/icons/_bootstrap-dark.scss +10 -0
- package/styles/drop-down-button/icons/_bootstrap.scss +10 -0
- package/styles/drop-down-button/icons/_bootstrap4.scss +10 -0
- package/styles/drop-down-button/icons/_bootstrap5-dark.scss +1 -0
- package/styles/drop-down-button/icons/_bootstrap5.scss +10 -0
- package/styles/drop-down-button/icons/_fabric-dark.scss +10 -0
- package/styles/drop-down-button/icons/_fabric.scss +10 -0
- package/styles/drop-down-button/icons/_fluent-dark.scss +1 -0
- package/styles/drop-down-button/icons/_fluent.scss +10 -0
- package/styles/drop-down-button/icons/_fusionnew.scss +10 -0
- package/styles/drop-down-button/icons/_highcontrast-light.scss +10 -0
- package/styles/drop-down-button/icons/_highcontrast.scss +10 -0
- package/styles/drop-down-button/icons/_material-dark.scss +10 -0
- package/styles/drop-down-button/icons/_material.scss +10 -0
- package/styles/drop-down-button/icons/_material3.scss +10 -0
- package/styles/drop-down-button/icons/_tailwind-dark.scss +10 -0
- package/styles/drop-down-button/icons/_tailwind.scss +10 -0
- package/styles/drop-down-button/material-dark.scss +6 -1
- package/styles/drop-down-button/material.scss +6 -1
- package/styles/drop-down-button/tailwind-dark.css +1 -0
- package/styles/drop-down-button/tailwind-dark.scss +6 -1
- package/styles/drop-down-button/tailwind.css +1 -0
- package/styles/drop-down-button/tailwind.scss +6 -1
- package/styles/fabric-dark.css +221 -0
- package/styles/fabric-dark.scss +1 -0
- package/styles/fabric.css +221 -0
- package/styles/fabric.scss +1 -0
- package/styles/fluent-dark.css +223 -0
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.css +223 -0
- package/styles/fluent.scss +1 -0
- package/styles/highcontrast-light.css +221 -0
- package/styles/highcontrast-light.scss +1 -0
- package/styles/highcontrast.css +223 -2
- package/styles/highcontrast.scss +1 -0
- package/styles/material-dark.css +221 -0
- package/styles/material-dark.scss +1 -0
- package/styles/material.css +221 -0
- package/styles/material.scss +1 -0
- package/styles/progress-button/_all.scss +2 -0
- package/styles/progress-button/_bootstrap-dark-definition.scss +27 -0
- package/styles/progress-button/_bootstrap-definition.scss +24 -0
- package/styles/progress-button/_bootstrap4-definition.scss +24 -0
- package/styles/progress-button/_bootstrap5-dark-definition.scss +1 -0
- package/styles/progress-button/_bootstrap5-definition.scss +21 -0
- package/styles/progress-button/_fabric-dark-definition.scss +27 -0
- package/styles/progress-button/_fabric-definition.scss +24 -0
- package/styles/progress-button/_fluent-dark-definition.scss +1 -0
- package/styles/progress-button/_fluent-definition.scss +21 -0
- package/styles/progress-button/_fusionnew-definition.scss +21 -0
- package/styles/progress-button/_highcontrast-definition.scss +24 -0
- package/styles/progress-button/_highcontrast-light-definition.scss +24 -0
- package/styles/progress-button/_layout.scss +396 -0
- package/styles/progress-button/_material-dark-definition.scss +27 -0
- package/styles/progress-button/_material-definition.scss +24 -0
- package/styles/progress-button/_material3-definition.scss +21 -0
- package/styles/progress-button/_tailwind-dark-definition.scss +1 -0
- package/styles/progress-button/_tailwind-definition.scss +21 -0
- package/styles/progress-button/_theme.scss +457 -0
- package/styles/progress-button/bootstrap-dark.css +6 -5
- package/styles/progress-button/bootstrap-dark.scss +5 -1
- package/styles/progress-button/bootstrap.css +1 -0
- package/styles/progress-button/bootstrap.scss +5 -1
- package/styles/progress-button/bootstrap4.css +2 -1
- package/styles/progress-button/bootstrap4.scss +5 -1
- package/styles/progress-button/bootstrap5-dark.css +1 -0
- package/styles/progress-button/bootstrap5-dark.scss +5 -1
- package/styles/progress-button/bootstrap5.css +1 -0
- package/styles/progress-button/bootstrap5.scss +5 -1
- package/styles/progress-button/fabric-dark.css +1 -0
- package/styles/progress-button/fabric-dark.scss +5 -1
- package/styles/progress-button/fabric.css +1 -0
- package/styles/progress-button/fabric.scss +5 -1
- package/styles/progress-button/fluent-dark.css +1 -0
- package/styles/progress-button/fluent-dark.scss +5 -1
- package/styles/progress-button/fluent.css +1 -0
- package/styles/progress-button/fluent.scss +5 -1
- package/styles/progress-button/highcontrast-light.css +1 -0
- package/styles/progress-button/highcontrast-light.scss +5 -1
- package/styles/progress-button/highcontrast.css +3 -2
- package/styles/progress-button/highcontrast.scss +5 -1
- package/styles/progress-button/material-dark.css +1 -0
- package/styles/progress-button/material-dark.scss +5 -1
- package/styles/progress-button/material.css +1 -0
- package/styles/progress-button/material.scss +5 -1
- package/styles/progress-button/tailwind-dark.css +1 -0
- package/styles/progress-button/tailwind-dark.scss +5 -1
- package/styles/progress-button/tailwind.css +1 -0
- package/styles/progress-button/tailwind.scss +5 -1
- package/styles/speed-dial/_all.scss +2 -0
- package/styles/speed-dial/_bootstrap-dark-definition.scss +37 -0
- package/styles/speed-dial/_bootstrap-definition.scss +37 -0
- package/styles/speed-dial/_bootstrap4-definition.scss +37 -0
- package/styles/speed-dial/_bootstrap5-dark-definition.scss +1 -0
- package/styles/speed-dial/_bootstrap5-definition.scss +37 -0
- package/styles/speed-dial/_fabric-dark-definition.scss +37 -0
- package/styles/speed-dial/_fabric-definition.scss +37 -0
- package/styles/speed-dial/_fluent-dark-definition.scss +1 -0
- package/styles/speed-dial/_fluent-definition.scss +37 -0
- package/styles/speed-dial/_fusionnew-definition.scss +37 -0
- package/styles/speed-dial/_highcontrast-definition.scss +37 -0
- package/styles/speed-dial/_highcontrast-light-definition.scss +37 -0
- package/styles/speed-dial/_layout.scss +249 -0
- package/styles/speed-dial/_material-dark-definition.scss +37 -0
- package/styles/speed-dial/_material-definition.scss +37 -0
- package/styles/speed-dial/_material3-definition.scss +37 -0
- package/styles/speed-dial/_tailwind-dark-definition.scss +1 -0
- package/styles/speed-dial/_tailwind-definition.scss +37 -0
- package/styles/speed-dial/_theme.scss +27 -0
- package/styles/speed-dial/bootstrap-dark.css +217 -0
- package/styles/speed-dial/bootstrap-dark.scss +4 -0
- package/styles/speed-dial/bootstrap.css +217 -0
- package/styles/speed-dial/bootstrap.scss +4 -0
- package/styles/speed-dial/bootstrap4.css +217 -0
- package/styles/speed-dial/bootstrap4.scss +4 -0
- package/styles/speed-dial/bootstrap5-dark.css +217 -0
- package/styles/speed-dial/bootstrap5-dark.scss +4 -0
- package/styles/speed-dial/bootstrap5.css +217 -0
- package/styles/speed-dial/bootstrap5.scss +4 -0
- package/styles/speed-dial/fabric-dark.css +217 -0
- package/styles/speed-dial/fabric-dark.scss +4 -0
- package/styles/speed-dial/fabric.css +217 -0
- package/styles/speed-dial/fabric.scss +4 -0
- package/styles/speed-dial/fluent-dark.css +217 -0
- package/styles/speed-dial/fluent-dark.scss +4 -0
- package/styles/speed-dial/fluent.css +217 -0
- package/styles/speed-dial/fluent.scss +4 -0
- package/styles/speed-dial/highcontrast-light.css +217 -0
- package/styles/speed-dial/highcontrast-light.scss +4 -0
- package/styles/speed-dial/highcontrast.css +217 -0
- package/styles/speed-dial/highcontrast.scss +4 -0
- package/styles/speed-dial/material-dark.css +218 -0
- package/styles/speed-dial/material-dark.scss +4 -0
- package/styles/speed-dial/material.css +218 -0
- package/styles/speed-dial/material.scss +4 -0
- package/styles/speed-dial/tailwind-dark.css +218 -0
- package/styles/speed-dial/tailwind-dark.scss +4 -0
- package/styles/speed-dial/tailwind.css +218 -0
- package/styles/speed-dial/tailwind.scss +4 -0
- package/styles/split-button/_all.scss +2 -0
- package/styles/split-button/_bootstrap-dark-definition.scss +26 -0
- package/styles/split-button/_bootstrap-definition.scss +23 -0
- package/styles/split-button/_bootstrap4-definition.scss +26 -0
- package/styles/split-button/_bootstrap5-dark-definition.scss +1 -0
- package/styles/split-button/_bootstrap5-definition.scss +24 -0
- package/styles/split-button/_fabric-dark-definition.scss +26 -0
- package/styles/split-button/_fabric-definition.scss +23 -0
- package/styles/split-button/_fluent-dark-definition.scss +1 -0
- package/styles/split-button/_fluent-definition.scss +24 -0
- package/styles/split-button/_fusionnew-definition.scss +24 -0
- package/styles/split-button/_highcontrast-definition.scss +23 -0
- package/styles/split-button/_highcontrast-light-definition.scss +26 -0
- package/styles/split-button/_layout.scss +420 -0
- package/styles/split-button/_material-dark-definition.scss +26 -0
- package/styles/split-button/_material-definition.scss +23 -0
- package/styles/split-button/_material3-definition.scss +24 -0
- package/styles/split-button/_tailwind-dark-definition.scss +1 -0
- package/styles/split-button/_tailwind-definition.scss +24 -0
- package/styles/split-button/_theme.scss +136 -0
- package/styles/split-button/bootstrap-dark.scss +6 -1
- package/styles/split-button/bootstrap.scss +6 -1
- package/styles/split-button/bootstrap4.scss +6 -1
- package/styles/split-button/bootstrap5-dark.css +1 -0
- package/styles/split-button/bootstrap5-dark.scss +6 -1
- package/styles/split-button/bootstrap5.css +1 -0
- package/styles/split-button/bootstrap5.scss +6 -1
- package/styles/split-button/fabric-dark.scss +6 -1
- package/styles/split-button/fabric.scss +6 -1
- package/styles/split-button/fluent-dark.css +1 -0
- package/styles/split-button/fluent-dark.scss +6 -1
- package/styles/split-button/fluent.css +1 -0
- package/styles/split-button/fluent.scss +6 -1
- package/styles/split-button/highcontrast-light.scss +6 -1
- package/styles/split-button/highcontrast.scss +6 -1
- package/styles/split-button/material-dark.scss +6 -1
- package/styles/split-button/material.scss +6 -1
- package/styles/split-button/tailwind-dark.css +1 -0
- package/styles/split-button/tailwind-dark.scss +6 -1
- package/styles/split-button/tailwind.css +1 -0
- package/styles/split-button/tailwind.scss +6 -1
- package/styles/tailwind-dark.css +224 -0
- package/styles/tailwind-dark.scss +1 -0
- package/styles/tailwind.css +224 -0
- package/styles/tailwind.scss +1 -0
- package/syncfusion-ej2-angular-splitbuttons.d.ts +5 -0
- package/@syncfusion/ej2-angular-splitbuttons.es5.js +0 -565
- package/@syncfusion/ej2-angular-splitbuttons.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-splitbuttons.js +0 -516
- package/@syncfusion/ej2-angular-splitbuttons.js.map +0 -1
- package/CHANGELOG.md +0 -256
- package/dist/ej2-angular-splitbuttons.umd.js +0 -603
- package/dist/ej2-angular-splitbuttons.umd.js.map +0 -1
- package/dist/ej2-angular-splitbuttons.umd.min.js +0 -11
- package/dist/ej2-angular-splitbuttons.umd.min.js.map +0 -1
- package/ej2-angular-splitbuttons.d.ts +0 -7
- package/ej2-angular-splitbuttons.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
- package/schematics/collection.json +0 -25
- package/schematics/generators/dropdownbutton-default/index.d.ts +0 -3
- package/schematics/generators/dropdownbutton-default/index.js +0 -8
- package/schematics/generators/dropdownbutton-default/sample-details.d.ts +0 -5
- package/schematics/generators/dropdownbutton-default/sample-details.js +0 -7
- package/schematics/generators/dropdownbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -49
- package/schematics/generators/dropdownbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -18
- package/schematics/generators/dropdownbutton-default/schema.d.ts +0 -3
- package/schematics/generators/dropdownbutton-default/schema.js +0 -2
- package/schematics/generators/dropdownbutton-default/schema.json +0 -125
- package/schematics/generators/progressbutton-default/index.d.ts +0 -3
- package/schematics/generators/progressbutton-default/index.js +0 -8
- package/schematics/generators/progressbutton-default/sample-details.d.ts +0 -5
- package/schematics/generators/progressbutton-default/sample-details.js +0 -7
- package/schematics/generators/progressbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -47
- package/schematics/generators/progressbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -53
- package/schematics/generators/progressbutton-default/schema.d.ts +0 -3
- package/schematics/generators/progressbutton-default/schema.js +0 -2
- package/schematics/generators/progressbutton-default/schema.json +0 -125
- package/schematics/generators/splitbutton-default/index.d.ts +0 -3
- package/schematics/generators/splitbutton-default/index.js +0 -8
- package/schematics/generators/splitbutton-default/sample-details.d.ts +0 -5
- package/schematics/generators/splitbutton-default/sample-details.js +0 -7
- package/schematics/generators/splitbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -37
- package/schematics/generators/splitbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -18
- package/schematics/generators/splitbutton-default/schema.d.ts +0 -3
- package/schematics/generators/splitbutton-default/schema.js +0 -2
- package/schematics/generators/splitbutton-default/schema.json +0 -125
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
package/styles/bootstrap5.css
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* stylelint-disable-line no-empty-source */
|
|
1
2
|
.e-dropdown-btn .e-caret::before,
|
|
2
3
|
.e-dropdown-btn.e-btn .e-caret::before {
|
|
3
4
|
content: "\e70d";
|
|
@@ -216,6 +217,7 @@
|
|
|
216
217
|
border-bottom-color: #dee2e6;
|
|
217
218
|
}
|
|
218
219
|
|
|
220
|
+
/* stylelint-disable-line no-empty-source */
|
|
219
221
|
/*! splitbutton layout */
|
|
220
222
|
.e-split-btn-wrapper {
|
|
221
223
|
display: -ms-inline-flexbox;
|
|
@@ -518,6 +520,7 @@
|
|
|
518
520
|
border-left-color: #6c757d;
|
|
519
521
|
}
|
|
520
522
|
|
|
523
|
+
/* stylelint-disable */
|
|
521
524
|
*.e-btn-group,
|
|
522
525
|
*.e-css.e-btn-group {
|
|
523
526
|
display: -ms-inline-flexbox;
|
|
@@ -762,6 +765,7 @@
|
|
|
762
765
|
font-size: 20px;
|
|
763
766
|
}
|
|
764
767
|
|
|
768
|
+
/* stylelint-disable */
|
|
765
769
|
.e-btn-group:not(.e-outline),
|
|
766
770
|
.e-css.e-btn-group:not(.e-outline) {
|
|
767
771
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.075);
|
|
@@ -1268,6 +1272,7 @@
|
|
|
1268
1272
|
border-right: transparent;
|
|
1269
1273
|
}
|
|
1270
1274
|
|
|
1275
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1271
1276
|
@keyframes material-spinner-rotate {
|
|
1272
1277
|
0% {
|
|
1273
1278
|
transform: rotate(0);
|
|
@@ -1811,4 +1816,222 @@
|
|
|
1811
1816
|
}
|
|
1812
1817
|
*.e-flat:not(:focus).e-danger .e-progress {
|
|
1813
1818
|
background-color: rgba(220, 53, 69, 0.2);
|
|
1819
|
+
}
|
|
1820
|
+
|
|
1821
|
+
.e-speeddial-popup {
|
|
1822
|
+
overflow: hidden;
|
|
1823
|
+
position: absolute;
|
|
1824
|
+
z-index: 99999;
|
|
1825
|
+
/* OVERFLOW CSS */
|
|
1826
|
+
}
|
|
1827
|
+
.e-speeddial-popup.e-speeddial-top {
|
|
1828
|
+
top: 10px;
|
|
1829
|
+
}
|
|
1830
|
+
.e-speeddial-popup.e-speeddial-top.e-speeddial-radial .e-speeddial-li {
|
|
1831
|
+
top: 0;
|
|
1832
|
+
}
|
|
1833
|
+
.e-speeddial-popup.e-speeddial-top.e-speeddial-radial.e-speeddial-middle .e-speeddial-li {
|
|
1834
|
+
top: calc(0.5 * var(--speeddialRadialMinWidth) + var(--speeddialRadialOffset) - 5px);
|
|
1835
|
+
}
|
|
1836
|
+
.e-speeddial-popup.e-speeddial-top.e-speeddial-middle, .e-speeddial-popup.e-speeddial-top.e-speeddial-linear {
|
|
1837
|
+
top: var(--speeddialVertDist);
|
|
1838
|
+
}
|
|
1839
|
+
.e-speeddial-popup.e-speeddial-bottom {
|
|
1840
|
+
bottom: 10px;
|
|
1841
|
+
}
|
|
1842
|
+
.e-speeddial-popup.e-speeddial-bottom.e-speeddial-radial .e-speeddial-li {
|
|
1843
|
+
bottom: 0;
|
|
1844
|
+
}
|
|
1845
|
+
.e-speeddial-popup.e-speeddial-bottom.e-speeddial-radial.e-speeddial-middle .e-speeddial-li {
|
|
1846
|
+
bottom: calc(0.5 * var(--speeddialRadialMinWidth) + var(--speeddialRadialOffset) - 5px);
|
|
1847
|
+
}
|
|
1848
|
+
.e-speeddial-popup.e-speeddial-bottom.e-speeddial-middle, .e-speeddial-popup.e-speeddial-bottom.e-speeddial-linear {
|
|
1849
|
+
bottom: var(--speeddialVertDist);
|
|
1850
|
+
}
|
|
1851
|
+
.e-speeddial-popup.e-speeddial-left {
|
|
1852
|
+
left: 10px;
|
|
1853
|
+
}
|
|
1854
|
+
.e-speeddial-popup.e-speeddial-left.e-speeddial-radial .e-speeddial-li {
|
|
1855
|
+
left: 0;
|
|
1856
|
+
}
|
|
1857
|
+
.e-speeddial-popup.e-speeddial-left.e-speeddial-radial.e-speeddial-center .e-speeddial-li {
|
|
1858
|
+
left: calc(0.5 * var(--speeddialRadialMinWidth) + var(--speeddialRadialOffset) - 5px);
|
|
1859
|
+
}
|
|
1860
|
+
.e-speeddial-popup.e-speeddial-left.e-speeddial-center, .e-speeddial-popup.e-speeddial-left.e-speeddial-linear {
|
|
1861
|
+
left: var(--speeddialHorzDist);
|
|
1862
|
+
}
|
|
1863
|
+
.e-speeddial-popup.e-speeddial-right {
|
|
1864
|
+
right: 10px;
|
|
1865
|
+
}
|
|
1866
|
+
.e-speeddial-popup.e-speeddial-right.e-speeddial-radial .e-speeddial-li {
|
|
1867
|
+
right: 0;
|
|
1868
|
+
}
|
|
1869
|
+
.e-speeddial-popup.e-speeddial-right.e-speeddial-radial.e-speeddial-center .e-speeddial-li {
|
|
1870
|
+
right: calc(0.5 * var(--speeddialRadialMinWidth) + var(--speeddialRadialOffset) - 5px);
|
|
1871
|
+
}
|
|
1872
|
+
.e-speeddial-popup.e-speeddial-right.e-speeddial-center, .e-speeddial-popup.e-speeddial-right.e-speeddial-linear {
|
|
1873
|
+
right: var(--speeddialHorzDist);
|
|
1874
|
+
}
|
|
1875
|
+
.e-speeddial-popup.e-speeddial-template {
|
|
1876
|
+
outline: none;
|
|
1877
|
+
}
|
|
1878
|
+
.e-speeddial-popup .e-speeddial-ul {
|
|
1879
|
+
display: -ms-inline-flexbox;
|
|
1880
|
+
display: inline-flex;
|
|
1881
|
+
-ms-flex-direction: column;
|
|
1882
|
+
flex-direction: column;
|
|
1883
|
+
list-style-type: none;
|
|
1884
|
+
margin: 0;
|
|
1885
|
+
padding: 0 5px;
|
|
1886
|
+
}
|
|
1887
|
+
.e-speeddial-popup .e-speeddial-li {
|
|
1888
|
+
-ms-flex-align: center;
|
|
1889
|
+
align-items: center;
|
|
1890
|
+
cursor: pointer;
|
|
1891
|
+
display: -ms-inline-flexbox;
|
|
1892
|
+
display: inline-flex;
|
|
1893
|
+
margin: 5px 0;
|
|
1894
|
+
position: relative;
|
|
1895
|
+
}
|
|
1896
|
+
.e-speeddial-popup .e-speeddial-li-text {
|
|
1897
|
+
margin: 0 10px;
|
|
1898
|
+
padding: 3px;
|
|
1899
|
+
white-space: nowrap;
|
|
1900
|
+
}
|
|
1901
|
+
.e-speeddial-popup .e-speeddial-li-icon {
|
|
1902
|
+
border-radius: 99999px;
|
|
1903
|
+
min-height: 30px;
|
|
1904
|
+
min-width: 30px;
|
|
1905
|
+
display: -ms-inline-flexbox;
|
|
1906
|
+
display: inline-flex;
|
|
1907
|
+
-ms-flex-align: center;
|
|
1908
|
+
align-items: center;
|
|
1909
|
+
-ms-flex-pack: center;
|
|
1910
|
+
justify-content: center;
|
|
1911
|
+
}
|
|
1912
|
+
.e-speeddial-popup.e-speeddial-fixed {
|
|
1913
|
+
position: fixed;
|
|
1914
|
+
}
|
|
1915
|
+
.e-speeddial-popup.e-speeddial-vert-right .e-speeddial-li {
|
|
1916
|
+
-ms-flex-direction: row-reverse;
|
|
1917
|
+
flex-direction: row-reverse;
|
|
1918
|
+
}
|
|
1919
|
+
.e-speeddial-popup.e-speeddial-vert-bottom .e-speeddial-ul {
|
|
1920
|
+
-ms-flex-direction: column-reverse;
|
|
1921
|
+
flex-direction: column-reverse;
|
|
1922
|
+
}
|
|
1923
|
+
.e-speeddial-popup.e-speeddial-horz-right .e-speeddial-ul {
|
|
1924
|
+
-ms-flex-direction: row-reverse;
|
|
1925
|
+
flex-direction: row-reverse;
|
|
1926
|
+
}
|
|
1927
|
+
.e-speeddial-popup.e-speeddial-horz-right .e-speeddial-ul.e-speeddial-horz-top {
|
|
1928
|
+
-ms-flex-direction: row;
|
|
1929
|
+
flex-direction: row;
|
|
1930
|
+
}
|
|
1931
|
+
.e-speeddial-popup.e-speeddial-horz-left .e-speeddial-ul {
|
|
1932
|
+
-ms-flex-direction: row;
|
|
1933
|
+
flex-direction: row;
|
|
1934
|
+
}
|
|
1935
|
+
.e-speeddial-popup.e-speeddial-horz-left .e-speeddial-ul.e-speeddial-horz-top {
|
|
1936
|
+
-ms-flex-direction: row-reverse;
|
|
1937
|
+
flex-direction: row-reverse;
|
|
1938
|
+
}
|
|
1939
|
+
.e-speeddial-popup.e-speeddial-horz-right .e-speeddial-ul, .e-speeddial-popup.e-speeddial-horz-left .e-speeddial-ul {
|
|
1940
|
+
padding: 5px 0;
|
|
1941
|
+
}
|
|
1942
|
+
.e-speeddial-popup.e-speeddial-horz-right .e-speeddial-li, .e-speeddial-popup.e-speeddial-horz-left .e-speeddial-li {
|
|
1943
|
+
margin: 0 5px;
|
|
1944
|
+
}
|
|
1945
|
+
.e-speeddial-popup.e-speeddial-overflow .e-speeddial-ul {
|
|
1946
|
+
overflow: auto;
|
|
1947
|
+
scroll-behavior: smooth;
|
|
1948
|
+
/* Hide scrollbar for IE and Edge */
|
|
1949
|
+
-ms-overflow-style: none;
|
|
1950
|
+
/* Hide scrollbar for Firefox */
|
|
1951
|
+
scrollbar-width: none;
|
|
1952
|
+
}
|
|
1953
|
+
.e-speeddial-popup.e-speeddial-overflow .e-speeddial-ul::-webkit-scrollbar {
|
|
1954
|
+
/* Hide scrollbar for Chrome, Safari and Opera */
|
|
1955
|
+
display: none;
|
|
1956
|
+
}
|
|
1957
|
+
.e-speeddial-popup.e-speeddial-overflow.e-speeddial-vert-overflow .e-speeddial-ul {
|
|
1958
|
+
max-height: var(--speeddialOverflowLimit);
|
|
1959
|
+
}
|
|
1960
|
+
.e-speeddial-popup.e-speeddial-overflow.e-speeddial-horz-overflow .e-speeddial-ul {
|
|
1961
|
+
max-width: var(--speeddialOverflowLimit);
|
|
1962
|
+
}
|
|
1963
|
+
.e-speeddial-popup.e-speeddial-radial {
|
|
1964
|
+
min-height: calc(var(--speeddialRadialOffset) + 2 * var(--speeddialRadialMinHeight));
|
|
1965
|
+
min-width: calc(var(--speeddialRadialOffset) + 2 * var(--speeddialRadialMinWidth));
|
|
1966
|
+
}
|
|
1967
|
+
.e-speeddial-popup.e-speeddial-radial.e-speeddial-middle {
|
|
1968
|
+
min-height: calc(2 * var(--speeddialRadialOffset) + 2 * var(--speeddialRadialMinHeight));
|
|
1969
|
+
}
|
|
1970
|
+
.e-speeddial-popup.e-speeddial-radial.e-speeddial-center {
|
|
1971
|
+
min-width: calc(2 * var(--speeddialRadialOffset) + 2 * var(--speeddialRadialMinWidth));
|
|
1972
|
+
}
|
|
1973
|
+
.e-speeddial-popup.e-speeddial-radial.e-speeddial-top-left {
|
|
1974
|
+
border-bottom-right-radius: 100%;
|
|
1975
|
+
}
|
|
1976
|
+
.e-speeddial-popup.e-speeddial-radial.e-speeddial-top-right {
|
|
1977
|
+
border-bottom-left-radius: 100%;
|
|
1978
|
+
}
|
|
1979
|
+
.e-speeddial-popup.e-speeddial-radial.e-speeddial-bottom-left {
|
|
1980
|
+
border-top-right-radius: 100%;
|
|
1981
|
+
}
|
|
1982
|
+
.e-speeddial-popup.e-speeddial-radial.e-speeddial-bottom-right {
|
|
1983
|
+
border-top-left-radius: 100%;
|
|
1984
|
+
}
|
|
1985
|
+
.e-speeddial-popup.e-speeddial-radial .e-speeddial-ul {
|
|
1986
|
+
border-radius: inherit;
|
|
1987
|
+
min-height: inherit;
|
|
1988
|
+
min-width: inherit;
|
|
1989
|
+
padding: 0;
|
|
1990
|
+
position: relative;
|
|
1991
|
+
}
|
|
1992
|
+
.e-speeddial-popup.e-speeddial-radial .e-speeddial-li {
|
|
1993
|
+
position: absolute;
|
|
1994
|
+
margin: 5px;
|
|
1995
|
+
transform: rotate(var(--speeddialRadialAngle)) translate(var(--speeddialRadialOffset)) rotate(calc(-1 * var(--speeddialRadialAngle)));
|
|
1996
|
+
}
|
|
1997
|
+
.e-speeddial-popup.e-speeddial-radial .e-speeddial-li-text, .e-speeddial-popup.e-speeddial-horz-right .e-speeddial-li-text, .e-speeddial-popup.e-speeddial-horz-left .e-speeddial-li-text {
|
|
1998
|
+
position: absolute;
|
|
1999
|
+
visibility: hidden;
|
|
2000
|
+
}
|
|
2001
|
+
|
|
2002
|
+
.e-speeddial-overlay {
|
|
2003
|
+
height: 100%;
|
|
2004
|
+
left: 0;
|
|
2005
|
+
position: absolute;
|
|
2006
|
+
top: 0;
|
|
2007
|
+
width: 100%;
|
|
2008
|
+
z-index: 99998;
|
|
2009
|
+
}
|
|
2010
|
+
.e-speeddial-overlay.e-speeddial-fixed {
|
|
2011
|
+
height: 100vh;
|
|
2012
|
+
position: fixed;
|
|
2013
|
+
width: 100vw;
|
|
2014
|
+
}
|
|
2015
|
+
|
|
2016
|
+
.e-speeddial-hidden {
|
|
2017
|
+
visibility: hidden;
|
|
2018
|
+
}
|
|
2019
|
+
|
|
2020
|
+
.e-speeddial-overlay {
|
|
2021
|
+
background-color: rgba(0, 0, 0, 0.1);
|
|
2022
|
+
}
|
|
2023
|
+
|
|
2024
|
+
.e-speeddial-popup .e-speeddial-li-text {
|
|
2025
|
+
box-shadow: 0 0 5px rgb(128, 128, 128);
|
|
2026
|
+
background-color: rgb(255, 255, 255);
|
|
2027
|
+
}
|
|
2028
|
+
.e-speeddial-popup .e-speeddial-li-icon {
|
|
2029
|
+
box-shadow: 0 0 5px rgb(128, 128, 128);
|
|
2030
|
+
background-color: rgb(255, 255, 255);
|
|
2031
|
+
}
|
|
2032
|
+
.e-speeddial-popup .e-speeddial-li.e-speeddial-li-active:not(.e-disabled) .e-speeddial-li-text {
|
|
2033
|
+
box-shadow: 0 0 5px rgb(128, 128, 128), 0 0 5px rgb(128, 128, 128) inset;
|
|
2034
|
+
}
|
|
2035
|
+
.e-speeddial-popup .e-speeddial-li.e-speeddial-li-active:not(.e-disabled) .e-speeddial-li-icon {
|
|
2036
|
+
box-shadow: 0 0 5px rgb(128, 128, 128), 0 0 5px rgb(128, 128, 128) inset;
|
|
1814
2037
|
}
|
package/styles/bootstrap5.scss
CHANGED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
//default
|
|
2
|
+
$btn-grp-margin: -1px !default;
|
|
3
|
+
$btn-grp-margin-left: -1px !default;
|
|
4
|
+
$btn-grp-wrapper-border: 4px !default;
|
|
5
|
+
$btn-grp-round-radius: 20px !default;
|
|
6
|
+
$btn-grp-icon-font-size: 12px !default;
|
|
7
|
+
$btn-grp-icon-font-size-bigger: 14px !default;
|
|
8
|
+
|
|
9
|
+
//Normal Outline GroupButton
|
|
10
|
+
$btn-grp-outline-focus-border-color: $grey-8c !default;
|
|
11
|
+
$btn-grp-outline-focus-color: inherit !default;
|
|
12
|
+
|
|
13
|
+
//Outline Primary
|
|
14
|
+
$btn-grp-outline-primary-focus-border-color: $brand-primary-lighten-15 !default;
|
|
15
|
+
$btn-grp-outline-focus-primary-color: inherit !default;
|
|
16
|
+
|
|
17
|
+
//Outline Success
|
|
18
|
+
$btn-grp-outline-success-focus-border-color: inherit !default;
|
|
19
|
+
$btn-grp-outline-focus-success-color: inherit !default;
|
|
20
|
+
|
|
21
|
+
//Outline Info
|
|
22
|
+
$btn-grp-outline-info-focus-border-color: inherit !default;
|
|
23
|
+
$btn-grp-outline-focus-info-color: inherit !default;
|
|
24
|
+
|
|
25
|
+
//Outline warning
|
|
26
|
+
$btn-grp-outline-warning-focus-border-color: inherit !default;
|
|
27
|
+
$btn-grp-outline-focus-warning-color: inherit !default;
|
|
28
|
+
|
|
29
|
+
//Outline danger
|
|
30
|
+
$btn-grp-outline-danger-focus-border-color: inherit !default;
|
|
31
|
+
$btn-grp-outline-focus-danger-color: inherit !default;
|
|
32
|
+
|
|
33
|
+
//enddefault
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
$btn-grp-margin: -1px !default;
|
|
2
|
+
$btn-grp-margin-left: -1px !default;
|
|
3
|
+
$btn-grp-wrapper-border: 4px !default;
|
|
4
|
+
$btn-grp-round-radius: 20px !default;
|
|
5
|
+
$btn-grp-icon-font-size: 12px !default;
|
|
6
|
+
$btn-grp-icon-font-size-bigger: 14px !default;
|
|
7
|
+
|
|
8
|
+
//Normal Outline GroupButton
|
|
9
|
+
$btn-grp-outline-focus-border-color: $grey-8c !default;
|
|
10
|
+
$btn-grp-outline-focus-color: inherit !default;
|
|
11
|
+
|
|
12
|
+
//Outline Primary
|
|
13
|
+
$btn-grp-outline-primary-focus-border-color: $brand-primary-darken-35 !default;
|
|
14
|
+
$btn-grp-outline-focus-primary-color: inherit !default;
|
|
15
|
+
|
|
16
|
+
//Outline Success
|
|
17
|
+
$btn-grp-outline-success-focus-border-color: $btn-success-focus-border-color !default;
|
|
18
|
+
$btn-grp-outline-focus-success-color: inherit !default;
|
|
19
|
+
|
|
20
|
+
//Outline Info
|
|
21
|
+
$btn-grp-outline-info-focus-border-color: $btn-info-focus-border-color !default;
|
|
22
|
+
$btn-grp-outline-focus-info-color: inherit !default;
|
|
23
|
+
|
|
24
|
+
//Outline warning
|
|
25
|
+
$btn-grp-outline-warning-focus-border-color: $btn-warning-focus-border-color !default;
|
|
26
|
+
$btn-grp-outline-focus-warning-color: inherit !default;
|
|
27
|
+
|
|
28
|
+
//Outline danger
|
|
29
|
+
$btn-grp-outline-danger-focus-border-color: $btn-danger-focus-border-color !default;
|
|
30
|
+
$btn-grp-outline-focus-danger-color: inherit !default;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
$btn-grp-margin: -1px !default;
|
|
2
|
+
$btn-grp-margin-left: -1px !default;
|
|
3
|
+
$btn-grp-wrapper-border: 4px !default;
|
|
4
|
+
$btn-grp-round-radius: 20px !default;
|
|
5
|
+
$btn-grp-icon-font-size: 14px !default;
|
|
6
|
+
$btn-grp-icon-font-size-bigger: 16px !default;
|
|
7
|
+
|
|
8
|
+
//Normal Outline GroupButton
|
|
9
|
+
$btn-grp-outline-focus-border-color: $gray-600 !default;
|
|
10
|
+
$btn-grp-outline-focus-color: inherit !default;
|
|
11
|
+
|
|
12
|
+
//Outline Primary
|
|
13
|
+
$btn-grp-outline-primary-focus-border-color: $primary !default;
|
|
14
|
+
$btn-grp-outline-focus-primary-color: inherit !default;
|
|
15
|
+
|
|
16
|
+
//Outline Success
|
|
17
|
+
$btn-grp-outline-success-focus-border-color: $btn-success-focus-border-color !default;
|
|
18
|
+
$btn-grp-outline-focus-success-color: inherit !default;
|
|
19
|
+
|
|
20
|
+
//Outline Info
|
|
21
|
+
$btn-grp-outline-info-focus-border-color: $btn-info-focus-border-color !default;
|
|
22
|
+
$btn-grp-outline-focus-info-color: inherit !default;
|
|
23
|
+
|
|
24
|
+
//Outline warning
|
|
25
|
+
$btn-grp-outline-warning-focus-border-color: $btn-warning-focus-border-color !default;
|
|
26
|
+
$btn-grp-outline-focus-warning-color: inherit !default;
|
|
27
|
+
|
|
28
|
+
//Outline danger
|
|
29
|
+
$btn-grp-outline-danger-focus-border-color: $btn-danger-focus-border-color !default;
|
|
30
|
+
$btn-grp-outline-focus-danger-color: inherit !default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './bootstrap5-definition.scss';
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
//layout variables
|
|
2
|
+
$btn-grp-margin: -1px !default;
|
|
3
|
+
$btn-grp-margin-left: -1px !default;
|
|
4
|
+
$btn-grp-wrapper-border: 4px !default;
|
|
5
|
+
$btn-grp-round-radius: 20px !default;
|
|
6
|
+
$btn-grp-icon-font-size: 16px !default;
|
|
7
|
+
$btn-grp-icon-font-size-bigger: 20px !default;
|
|
8
|
+
|
|
9
|
+
//Normal Outline GroupButton
|
|
10
|
+
$btn-grp-outline-focus-border-color: $secondary-border-color !default;
|
|
11
|
+
$btn-grp-outline-focus-color: inherit !default;
|
|
12
|
+
|
|
13
|
+
//Outline Primary
|
|
14
|
+
$btn-grp-outline-primary-focus-border-color: $primary !default;
|
|
15
|
+
$btn-grp-outline-focus-primary-color: inherit !default;
|
|
16
|
+
|
|
17
|
+
//Outline Success
|
|
18
|
+
$btn-grp-outline-success-focus-border-color: $btn-success-focus-border-color !default;
|
|
19
|
+
$btn-grp-outline-focus-success-color: inherit !default;
|
|
20
|
+
|
|
21
|
+
//Outline Info
|
|
22
|
+
$btn-grp-outline-info-focus-border-color: $btn-info-focus-border-color !default;
|
|
23
|
+
$btn-grp-outline-focus-info-color: inherit !default;
|
|
24
|
+
|
|
25
|
+
//Outline warning
|
|
26
|
+
$btn-grp-outline-warning-focus-border-color: $btn-warning-focus-border-color !default;
|
|
27
|
+
$btn-grp-outline-focus-warning-color: inherit !default;
|
|
28
|
+
|
|
29
|
+
//Outline danger
|
|
30
|
+
$btn-grp-outline-danger-focus-border-color: $btn-danger-focus-border-color !default;
|
|
31
|
+
$btn-grp-outline-focus-danger-color: inherit !default;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
//default
|
|
2
|
+
$btn-grp-margin: -1px !default;
|
|
3
|
+
$btn-grp-margin-left: 0 !default;
|
|
4
|
+
$btn-grp-wrapper-border: 0 !default;
|
|
5
|
+
$btn-grp-round-radius: 20px !default;
|
|
6
|
+
$btn-grp-icon-font-size: 14px !default;
|
|
7
|
+
$btn-grp-icon-font-size-bigger: 16px !default;
|
|
8
|
+
|
|
9
|
+
//Normal Outline GroupButton
|
|
10
|
+
$btn-grp-outline-focus-border-color: $neutral-quintenary !default;
|
|
11
|
+
$btn-grp-outline-focus-color: $neutral-secondary-alt !default;
|
|
12
|
+
|
|
13
|
+
//Outline Primary
|
|
14
|
+
$btn-grp-outline-primary-focus-border-color: inherit !default;
|
|
15
|
+
$btn-grp-outline-focus-primary-color: $btn-primary-active-color !default;
|
|
16
|
+
|
|
17
|
+
//Outline Success
|
|
18
|
+
$btn-grp-outline-success-focus-border-color: inherit !default;
|
|
19
|
+
$btn-grp-outline-focus-success-color: $btn-success-active-color !default;
|
|
20
|
+
|
|
21
|
+
//Outline Info
|
|
22
|
+
$btn-grp-outline-info-focus-border-color: inherit !default;
|
|
23
|
+
$btn-grp-outline-focus-info-color: $btn-info-active-color !default;
|
|
24
|
+
|
|
25
|
+
//Outline warning
|
|
26
|
+
$btn-grp-outline-warning-focus-border-color: inherit !default;
|
|
27
|
+
$btn-grp-outline-focus-warning-color: $btn-warning-active-color !default;
|
|
28
|
+
|
|
29
|
+
//Outline danger
|
|
30
|
+
$btn-grp-outline-danger-focus-border-color: inherit !default;
|
|
31
|
+
$btn-grp-outline-focus-danger-color: $btn-danger-active-color !default;
|
|
32
|
+
|
|
33
|
+
//enddefault
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
$btn-grp-margin: -1px !default;
|
|
2
|
+
$btn-grp-margin-left: 0 !default;
|
|
3
|
+
$btn-grp-wrapper-border: 0 !default;
|
|
4
|
+
$btn-grp-round-radius: 20px !default;
|
|
5
|
+
$btn-grp-icon-font-size: 14px !default;
|
|
6
|
+
$btn-grp-icon-font-size-bigger: 16px !default;
|
|
7
|
+
|
|
8
|
+
//Normal Outline GroupButton
|
|
9
|
+
$btn-grp-outline-focus-border-color: $neutral-quintenary !default;
|
|
10
|
+
$btn-grp-outline-focus-color: $neutral-secondary-alt !default;
|
|
11
|
+
|
|
12
|
+
//Outline Primary
|
|
13
|
+
$btn-grp-outline-primary-focus-border-color: inherit !default;
|
|
14
|
+
$btn-grp-outline-focus-primary-color: $theme-primary-font !default;
|
|
15
|
+
|
|
16
|
+
//Outline Success
|
|
17
|
+
$btn-grp-outline-success-focus-border-color: inherit !default;
|
|
18
|
+
$btn-grp-outline-focus-success-color: #fff !default;
|
|
19
|
+
|
|
20
|
+
//Outline Info
|
|
21
|
+
$btn-grp-outline-info-focus-border-color: inherit !default;
|
|
22
|
+
$btn-grp-outline-focus-info-color: #fff !default;
|
|
23
|
+
|
|
24
|
+
//Outline warning
|
|
25
|
+
$btn-grp-outline-warning-focus-border-color: inherit !default;
|
|
26
|
+
$btn-grp-outline-focus-warning-color: #fff !default;
|
|
27
|
+
|
|
28
|
+
//Outline danger
|
|
29
|
+
$btn-grp-outline-danger-focus-border-color: inherit !default;
|
|
30
|
+
$btn-grp-outline-focus-danger-color: #fff !default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './fluent-definition.scss';
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
//layout variables
|
|
2
|
+
$btn-grp-margin: -1px !default;
|
|
3
|
+
$btn-grp-margin-left: -1px !default;
|
|
4
|
+
$btn-grp-wrapper-border: 4px !default;
|
|
5
|
+
$btn-grp-round-radius: 20px !default;
|
|
6
|
+
$btn-grp-icon-font-size: 16px !default;
|
|
7
|
+
$btn-grp-icon-font-size-bigger: 20px !default;
|
|
8
|
+
|
|
9
|
+
//Normal Outline GroupButton
|
|
10
|
+
$btn-grp-outline-focus-border-color: $secondary-border-color !default;
|
|
11
|
+
$btn-grp-outline-focus-color: inherit !default;
|
|
12
|
+
|
|
13
|
+
//Outline Primary
|
|
14
|
+
$btn-grp-outline-primary-focus-border-color: $primary !default;
|
|
15
|
+
$btn-grp-outline-focus-primary-color: inherit !default;
|
|
16
|
+
|
|
17
|
+
//Outline Success
|
|
18
|
+
$btn-grp-outline-success-focus-border-color: $btn-success-focus-border-color !default;
|
|
19
|
+
$btn-grp-outline-focus-success-color: inherit !default;
|
|
20
|
+
|
|
21
|
+
//Outline Info
|
|
22
|
+
$btn-grp-outline-info-focus-border-color: $btn-info-focus-border-color !default;
|
|
23
|
+
$btn-grp-outline-focus-info-color: inherit !default;
|
|
24
|
+
|
|
25
|
+
//Outline warning
|
|
26
|
+
$btn-grp-outline-warning-focus-border-color: $btn-warning-focus-border-color !default;
|
|
27
|
+
$btn-grp-outline-focus-warning-color: inherit !default;
|
|
28
|
+
|
|
29
|
+
//Outline danger
|
|
30
|
+
$btn-grp-outline-danger-focus-border-color: $btn-danger-focus-border-color !default;
|
|
31
|
+
$btn-grp-outline-focus-danger-color: inherit !default;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
//layout variables
|
|
2
|
+
$btn-grp-margin: -1px !default;
|
|
3
|
+
$btn-grp-margin-left: -1px !default;
|
|
4
|
+
$btn-grp-wrapper-border: 4px !default;
|
|
5
|
+
$btn-grp-round-radius: 20px !default;
|
|
6
|
+
$btn-grp-icon-font-size: 16px !default;
|
|
7
|
+
$btn-grp-icon-font-size-bigger: 20px !default;
|
|
8
|
+
|
|
9
|
+
//Normal Outline GroupButton
|
|
10
|
+
$btn-grp-outline-focus-border-color: $secondary-border-color !default;
|
|
11
|
+
$btn-grp-outline-focus-color: inherit !default;
|
|
12
|
+
|
|
13
|
+
//Outline Primary
|
|
14
|
+
$btn-grp-outline-primary-focus-border-color: $primary !default;
|
|
15
|
+
$btn-grp-outline-focus-primary-color: inherit !default;
|
|
16
|
+
|
|
17
|
+
//Outline Success
|
|
18
|
+
$btn-grp-outline-success-focus-border-color: $btn-success-focus-border-color !default;
|
|
19
|
+
$btn-grp-outline-focus-success-color: inherit !default;
|
|
20
|
+
|
|
21
|
+
//Outline Info
|
|
22
|
+
$btn-grp-outline-info-focus-border-color: $btn-info-focus-border-color !default;
|
|
23
|
+
$btn-grp-outline-focus-info-color: inherit !default;
|
|
24
|
+
|
|
25
|
+
//Outline warning
|
|
26
|
+
$btn-grp-outline-warning-focus-border-color: $btn-warning-focus-border-color !default;
|
|
27
|
+
$btn-grp-outline-focus-warning-color: inherit !default;
|
|
28
|
+
|
|
29
|
+
//Outline danger
|
|
30
|
+
$btn-grp-outline-danger-focus-border-color: $btn-danger-focus-border-color !default;
|
|
31
|
+
$btn-grp-outline-focus-danger-color: inherit !default;
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
@mixin apply-border {
|
|
2
|
+
&:not(:first-of-type):not(:last-of-type) {
|
|
3
|
+
border-left: transparent;
|
|
4
|
+
border-right: transparent;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
&:first-of-type {
|
|
8
|
+
border-right: transparent;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
&:last-of-type {
|
|
12
|
+
border-left: transparent;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
@mixin apply-border-vertical {
|
|
17
|
+
&:not(:first-of-type):not(:last-of-type) {
|
|
18
|
+
border-bottom: transparent;
|
|
19
|
+
border-top: transparent;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&:first-of-type {
|
|
23
|
+
border-bottom: transparent;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&:last-of-type {
|
|
27
|
+
border-top: transparent;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
@mixin different-states {
|
|
32
|
+
// Outline focus
|
|
33
|
+
.e-btn:focus,
|
|
34
|
+
input:focus + label.e-btn {
|
|
35
|
+
&.e-outline {
|
|
36
|
+
border-color: $btn-grp-outline-focus-border-color;
|
|
37
|
+
outline-color: $btn-grp-outline-focus-color;
|
|
38
|
+
|
|
39
|
+
&.e-primary {
|
|
40
|
+
border-color: $btn-grp-outline-primary-focus-border-color;
|
|
41
|
+
outline-color: $btn-grp-outline-focus-primary-color;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
&.e-success {
|
|
45
|
+
border-color: $btn-grp-outline-success-focus-border-color;
|
|
46
|
+
outline-color: $btn-grp-outline-focus-success-color;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&.e-info {
|
|
50
|
+
border-color: $btn-grp-outline-info-focus-border-color;
|
|
51
|
+
outline-color: $btn-grp-outline-focus-info-color;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
&.e-warning {
|
|
55
|
+
border-color: $btn-grp-outline-warning-focus-border-color;
|
|
56
|
+
outline-color: $btn-grp-outline-focus-warning-color;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
&.e-danger {
|
|
60
|
+
border-color: $btn-grp-outline-danger-focus-border-color;
|
|
61
|
+
outline-color: $btn-grp-outline-focus-danger-color;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
@mixin disabled {
|
|
68
|
+
background-color: $btn-disabled-bgcolor;
|
|
69
|
+
border-color: $btn-disabled-border-color;
|
|
70
|
+
box-shadow: $btn-flat-box-shadow;
|
|
71
|
+
color: $btn-disabled-color;
|
|
72
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
$btn-grp-margin: -1px !default;
|
|
2
|
+
$btn-grp-margin-left: 0 !default;
|
|
3
|
+
$btn-grp-wrapper-border: 0 !default;
|
|
4
|
+
$hover-border: $hover-border !default;
|
|
5
|
+
$primary-outline-color: $bg-base-0 !default;
|
|
6
|
+
$btn-grp-round-radius: 20px !default;
|
|
7
|
+
$btn-grp-icon-font-size: 14px !default;
|
|
8
|
+
$btn-grp-icon-font-size-bigger: 16px !default;
|
|
9
|
+
|
|
10
|
+
//Normal Outline GroupButton
|
|
11
|
+
$btn-grp-outline-focus-border-color: $bg-base-100 !default;
|
|
12
|
+
$btn-grp-outline-focus-color: inherit !default;
|
|
13
|
+
|
|
14
|
+
//Outline Primary
|
|
15
|
+
$btn-grp-outline-primary-focus-border-color: inherit !default;
|
|
16
|
+
$btn-grp-outline-focus-primary-color: $primary-outline-color !default;
|
|
17
|
+
|
|
18
|
+
//Outline Success
|
|
19
|
+
$btn-grp-outline-success-focus-border-color: inherit !default;
|
|
20
|
+
$btn-grp-outline-focus-success-color: inherit !default;
|
|
21
|
+
|
|
22
|
+
//Outline Info
|
|
23
|
+
$btn-grp-outline-info-focus-border-color: inherit !default;
|
|
24
|
+
$btn-grp-outline-focus-info-color: inherit !default;
|
|
25
|
+
|
|
26
|
+
//Outline warning
|
|
27
|
+
$btn-grp-outline-warning-focus-border-color: inherit !default;
|
|
28
|
+
$btn-grp-outline-focus-warning-color: inherit !default;
|
|
29
|
+
|
|
30
|
+
//Outline danger
|
|
31
|
+
$btn-grp-outline-danger-focus-border-color: inherit !default;
|
|
32
|
+
$btn-grp-outline-focus-danger-color: inherit !default;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
//default
|
|
2
|
+
$btn-grp-margin: -1px !default;
|
|
3
|
+
$btn-grp-margin-left: 0 !default;
|
|
4
|
+
$btn-grp-wrapper-border: 0 !default;
|
|
5
|
+
$hover-border: $hover-border !default;
|
|
6
|
+
$primary-outline-color: $bg-base-0 !default;
|
|
7
|
+
$btn-grp-round-radius: 20px !default;
|
|
8
|
+
$btn-grp-icon-font-size: 14px !default;
|
|
9
|
+
$btn-grp-icon-font-size-bigger: 16px !default;
|
|
10
|
+
|
|
11
|
+
//Normal Outline GroupButton
|
|
12
|
+
$btn-grp-outline-focus-border-color: $bg-base-100 !default;
|
|
13
|
+
$btn-grp-outline-focus-color: inherit !default;
|
|
14
|
+
|
|
15
|
+
//Outline Primary
|
|
16
|
+
$btn-grp-outline-primary-focus-border-color: inherit !default;
|
|
17
|
+
$btn-grp-outline-focus-primary-color: $primary-outline-color !default;
|
|
18
|
+
|
|
19
|
+
//Outline Success
|
|
20
|
+
$btn-grp-outline-success-focus-border-color: inherit !default;
|
|
21
|
+
$btn-grp-outline-focus-success-color: inherit !default;
|
|
22
|
+
|
|
23
|
+
//Outline Info
|
|
24
|
+
$btn-grp-outline-info-focus-border-color: inherit !default;
|
|
25
|
+
$btn-grp-outline-focus-info-color: inherit !default;
|
|
26
|
+
|
|
27
|
+
//Outline warning
|
|
28
|
+
$btn-grp-outline-warning-focus-border-color: inherit !default;
|
|
29
|
+
$btn-grp-outline-focus-warning-color: inherit !default;
|
|
30
|
+
|
|
31
|
+
//Outline danger
|
|
32
|
+
$btn-grp-outline-danger-focus-border-color: inherit !default;
|
|
33
|
+
$btn-grp-outline-focus-danger-color: inherit !default;
|
|
34
|
+
|
|
35
|
+
//enddefault
|