@syncfusion/ej2-angular-inputs 22.2.7-ngcc → 22.2.7
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/color-picker/colorpicker-all.module.mjs +23 -0
- package/esm2020/src/color-picker/colorpicker.component.mjs +83 -0
- package/esm2020/src/color-picker/colorpicker.module.mjs +25 -0
- package/esm2020/src/form-validator/form-validator.mjs +193 -0
- package/esm2020/src/index.mjs +28 -0
- package/esm2020/src/maskedtextbox/maskedtextbox-all.module.mjs +23 -0
- package/esm2020/src/maskedtextbox/maskedtextbox.component.mjs +84 -0
- package/esm2020/src/maskedtextbox/maskedtextbox.module.mjs +25 -0
- package/esm2020/src/numerictextbox/numerictextbox-all.module.mjs +23 -0
- package/esm2020/src/numerictextbox/numerictextbox.component.mjs +84 -0
- package/esm2020/src/numerictextbox/numerictextbox.module.mjs +25 -0
- package/esm2020/src/rating/rating-all.module.mjs +23 -0
- package/esm2020/src/rating/rating.component.mjs +108 -0
- package/esm2020/src/rating/rating.module.mjs +25 -0
- package/esm2020/src/signature/signature-all.module.mjs +23 -0
- package/esm2020/src/signature/signature.component.mjs +83 -0
- package/esm2020/src/signature/signature.module.mjs +25 -0
- package/esm2020/src/slider/slider-all.module.mjs +23 -0
- package/esm2020/src/slider/slider.component.mjs +83 -0
- package/esm2020/src/slider/slider.module.mjs +25 -0
- package/esm2020/src/textbox/textbox-all.module.mjs +23 -0
- package/esm2020/src/textbox/textbox.component.mjs +84 -0
- package/esm2020/src/textbox/textbox.module.mjs +25 -0
- package/esm2020/src/uploader/files.directive.mjs +58 -0
- package/esm2020/src/uploader/uploader-all.module.mjs +23 -0
- package/esm2020/src/uploader/uploader.component.mjs +95 -0
- package/esm2020/src/uploader/uploader.module.mjs +34 -0
- package/esm2020/syncfusion-ej2-angular-inputs.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-inputs.mjs +1237 -0
- package/fesm2015/syncfusion-ej2-angular-inputs.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-inputs.mjs +1237 -0
- package/fesm2020/syncfusion-ej2-angular-inputs.mjs.map +1 -0
- package/package.json +27 -13
- package/schematics/utils/lib-details.d.ts +2 -2
- package/src/color-picker/colorpicker-all.module.d.ts +6 -0
- package/src/color-picker/colorpicker.component.d.ts +3 -0
- package/src/color-picker/colorpicker.module.d.ts +6 -0
- package/src/maskedtextbox/maskedtextbox-all.module.d.ts +6 -0
- package/src/maskedtextbox/maskedtextbox.component.d.ts +3 -0
- package/src/maskedtextbox/maskedtextbox.module.d.ts +6 -0
- package/src/numerictextbox/numerictextbox-all.module.d.ts +6 -0
- package/src/numerictextbox/numerictextbox.component.d.ts +3 -0
- package/src/numerictextbox/numerictextbox.module.d.ts +6 -0
- package/src/rating/rating-all.module.d.ts +6 -0
- package/src/rating/rating.component.d.ts +3 -0
- package/src/rating/rating.module.d.ts +6 -0
- package/src/signature/signature-all.module.d.ts +6 -0
- package/src/signature/signature.component.d.ts +3 -0
- package/src/signature/signature.module.d.ts +6 -0
- package/src/slider/slider-all.module.d.ts +6 -0
- package/src/slider/slider.component.d.ts +3 -0
- package/src/slider/slider.module.d.ts +6 -0
- package/src/textbox/textbox-all.module.d.ts +6 -0
- package/src/textbox/textbox.component.d.ts +3 -0
- package/src/textbox/textbox.module.d.ts +6 -0
- package/src/uploader/files.directive.d.ts +5 -0
- package/src/uploader/uploader-all.module.d.ts +6 -0
- package/src/uploader/uploader.component.d.ts +3 -0
- package/src/uploader/uploader.module.d.ts +7 -0
- package/styles/color-picker/_all.scss +2 -0
- package/styles/color-picker/_bootstrap-dark-definition.scss +131 -0
- package/styles/color-picker/_bootstrap-definition.scss +128 -0
- package/styles/color-picker/_bootstrap4-definition.scss +127 -0
- package/styles/color-picker/_bootstrap5-dark-definition.scss +1 -0
- package/styles/color-picker/_bootstrap5-definition.scss +133 -0
- package/styles/color-picker/_fabric-dark-definition.scss +131 -0
- package/styles/color-picker/_fabric-definition.scss +127 -0
- package/styles/color-picker/_fluent-dark-definition.scss +1 -0
- package/styles/color-picker/_fluent-definition.scss +133 -0
- package/styles/color-picker/_fusionnew-definition.scss +133 -0
- package/styles/color-picker/_highcontrast-definition.scss +127 -0
- package/styles/color-picker/_highcontrast-light-definition.scss +130 -0
- package/styles/color-picker/_layout.scss +1304 -0
- package/styles/color-picker/_material-dark-definition.scss +135 -0
- package/styles/color-picker/_material-definition.scss +130 -0
- package/styles/color-picker/_material3-dark-definition.scss +1 -0
- package/styles/color-picker/_material3-definition.scss +141 -0
- package/styles/color-picker/_tailwind-dark-definition.scss +1 -0
- package/styles/color-picker/_tailwind-definition.scss +132 -0
- package/styles/color-picker/_theme.scss +191 -0
- package/styles/color-picker/bootstrap-dark.scss +11 -1
- package/styles/color-picker/bootstrap.scss +11 -1
- package/styles/color-picker/bootstrap4.scss +11 -1
- package/styles/color-picker/bootstrap5-dark.scss +11 -1
- package/styles/color-picker/bootstrap5.scss +11 -1
- package/styles/color-picker/fabric-dark.scss +11 -1
- package/styles/color-picker/fabric.scss +11 -1
- package/styles/color-picker/fluent-dark.scss +11 -1
- package/styles/color-picker/fluent.scss +11 -1
- package/styles/color-picker/highcontrast-light.scss +11 -1
- package/styles/color-picker/highcontrast.scss +11 -1
- package/styles/color-picker/icons/_bootstrap-dark.scss +9 -0
- package/styles/color-picker/icons/_bootstrap.scss +9 -0
- package/styles/color-picker/icons/_bootstrap4.scss +9 -0
- package/styles/color-picker/icons/_bootstrap5-dark.scss +1 -0
- package/styles/color-picker/icons/_bootstrap5.scss +9 -0
- package/styles/color-picker/icons/_fabric-dark.scss +9 -0
- package/styles/color-picker/icons/_fabric.scss +9 -0
- package/styles/color-picker/icons/_fluent-dark.scss +1 -0
- package/styles/color-picker/icons/_fluent.scss +9 -0
- package/styles/color-picker/icons/_fusionnew.scss +9 -0
- package/styles/color-picker/icons/_highcontrast-light.scss +9 -0
- package/styles/color-picker/icons/_highcontrast.scss +9 -0
- package/styles/color-picker/icons/_material-dark.scss +9 -0
- package/styles/color-picker/icons/_material.scss +9 -0
- package/styles/color-picker/icons/_material3-dark.scss +1 -0
- package/styles/color-picker/icons/_material3.scss +9 -0
- package/styles/color-picker/icons/_tailwind-dark.scss +9 -0
- package/styles/color-picker/icons/_tailwind.scss +9 -0
- package/styles/color-picker/material-dark.scss +11 -1
- package/styles/color-picker/material.scss +11 -1
- package/styles/color-picker/material3-dark.scss +11 -1
- package/styles/color-picker/material3.scss +11 -1
- package/styles/color-picker/tailwind-dark.scss +11 -1
- package/styles/color-picker/tailwind.scss +11 -1
- package/styles/input/_all.scss +3 -0
- package/styles/input/_bootstrap-dark-definition.scss +329 -0
- package/styles/input/_bootstrap-definition.scss +320 -0
- package/styles/input/_bootstrap4-definition.scss +325 -0
- package/styles/input/_bootstrap5-dark-definition.scss +1 -0
- package/styles/input/_bootstrap5-definition.scss +336 -0
- package/styles/input/_definition.scss +232 -0
- package/styles/input/_fabric-dark-definition.scss +319 -0
- package/styles/input/_fabric-definition.scss +311 -0
- package/styles/input/_fluent-dark-definition.scss +1 -0
- package/styles/input/_fluent-definition.scss +338 -0
- package/styles/input/_fusionnew-definition.scss +336 -0
- package/styles/input/_highcontrast-definition.scss +312 -0
- package/styles/input/_highcontrast-light-definition.scss +320 -0
- package/styles/input/_layout.scss +11285 -0
- package/styles/input/_material-dark-definition.scss +573 -0
- package/styles/input/_material-definition.scss +573 -0
- package/styles/input/_material3-dark-definition.scss +1 -0
- package/styles/input/_material3-definition.scss +548 -0
- package/styles/input/_responsive.scss +1 -0
- package/styles/input/_tailwind-dark-definition.scss +1 -0
- package/styles/input/_tailwind-definition.scss +335 -0
- package/styles/input/_theme.scss +4284 -0
- package/styles/input/bootstrap-dark.scss +4 -1
- package/styles/input/bootstrap.scss +4 -1
- package/styles/input/bootstrap4.scss +4 -1
- package/styles/input/bootstrap5-dark.scss +4 -1
- package/styles/input/bootstrap5.scss +4 -1
- package/styles/input/fabric-dark.scss +4 -1
- package/styles/input/fabric.scss +4 -1
- package/styles/input/fluent-dark.scss +4 -1
- package/styles/input/fluent.scss +4 -1
- package/styles/input/highcontrast-light.scss +4 -1
- package/styles/input/highcontrast.scss +4 -1
- package/styles/input/icons/_bootstrap-dark.scss +17 -0
- package/styles/input/icons/_bootstrap.scss +17 -0
- package/styles/input/icons/_bootstrap4.scss +17 -0
- package/styles/input/icons/_bootstrap5-dark.scss +1 -0
- package/styles/input/icons/_bootstrap5.scss +17 -0
- package/styles/input/icons/_fabric-dark.scss +17 -0
- package/styles/input/icons/_fabric.scss +17 -0
- package/styles/input/icons/_fluent-dark.scss +1 -0
- package/styles/input/icons/_fluent.scss +17 -0
- package/styles/input/icons/_fusionnew.scss +17 -0
- package/styles/input/icons/_highcontrast-light.scss +17 -0
- package/styles/input/icons/_highcontrast.scss +17 -0
- package/styles/input/icons/_material-dark.scss +49 -0
- package/styles/input/icons/_material.scss +49 -0
- package/styles/input/icons/_material3-dark.scss +1 -0
- package/styles/input/icons/_material3.scss +17 -0
- package/styles/input/icons/_tailwind-dark.scss +1 -0
- package/styles/input/icons/_tailwind.scss +17 -0
- package/styles/input/material-dark.scss +4 -1
- package/styles/input/material.scss +4 -1
- package/styles/input/material3-dark.scss +4 -1
- package/styles/input/material3.scss +4 -1
- package/styles/input/tailwind-dark.scss +4 -1
- package/styles/input/tailwind.scss +4 -1
- package/styles/maskedtextbox/_all.scss +2 -0
- package/styles/maskedtextbox/_bootstrap-dark-definition.scss +7 -0
- package/styles/maskedtextbox/_bootstrap-definition.scss +4 -0
- package/styles/maskedtextbox/_bootstrap4-definition.scss +4 -0
- package/styles/maskedtextbox/_bootstrap5-dark-definition.scss +1 -0
- package/styles/maskedtextbox/_bootstrap5-definition.scss +7 -0
- package/styles/maskedtextbox/_fabric-dark-definition.scss +7 -0
- package/styles/maskedtextbox/_fabric-definition.scss +4 -0
- package/styles/maskedtextbox/_fluent-dark-definition.scss +1 -0
- package/styles/maskedtextbox/_fluent-definition.scss +7 -0
- package/styles/maskedtextbox/_fusionnew-definition.scss +7 -0
- package/styles/maskedtextbox/_highcontrast-definition.scss +4 -0
- package/styles/maskedtextbox/_highcontrast-light-definition.scss +7 -0
- package/styles/maskedtextbox/_layout.scss +33 -0
- package/styles/maskedtextbox/_material-dark-definition.scss +7 -0
- package/styles/maskedtextbox/_material-definition.scss +4 -0
- package/styles/maskedtextbox/_material3-dark-definition.scss +1 -0
- package/styles/maskedtextbox/_material3-definition.scss +4 -0
- package/styles/maskedtextbox/_tailwind-dark-definition.scss +1 -0
- package/styles/maskedtextbox/_tailwind-definition.scss +7 -0
- package/styles/maskedtextbox/_theme.scss +15 -0
- package/styles/maskedtextbox/bootstrap-dark.scss +4 -1
- package/styles/maskedtextbox/bootstrap.scss +4 -1
- package/styles/maskedtextbox/bootstrap4.scss +4 -1
- package/styles/maskedtextbox/bootstrap5-dark.scss +4 -1
- package/styles/maskedtextbox/bootstrap5.scss +4 -1
- package/styles/maskedtextbox/fabric-dark.scss +4 -1
- package/styles/maskedtextbox/fabric.scss +4 -1
- package/styles/maskedtextbox/fluent-dark.scss +4 -1
- package/styles/maskedtextbox/fluent.scss +4 -1
- package/styles/maskedtextbox/highcontrast-light.scss +4 -1
- package/styles/maskedtextbox/highcontrast.scss +4 -1
- package/styles/maskedtextbox/material-dark.scss +4 -1
- package/styles/maskedtextbox/material.scss +4 -1
- package/styles/maskedtextbox/material3-dark.scss +4 -1
- package/styles/maskedtextbox/material3.scss +4 -1
- package/styles/maskedtextbox/tailwind-dark.scss +4 -1
- package/styles/maskedtextbox/tailwind.scss +4 -1
- package/styles/material3-dark.css +0 -448
- package/styles/material3-dark.scss +1 -0
- package/styles/material3.css +33 -921
- package/styles/material3.scss +1 -0
- package/styles/numerictextbox/_all.scss +2 -0
- package/styles/numerictextbox/_bootstrap-dark-definition.scss +6 -0
- package/styles/numerictextbox/_bootstrap-definition.scss +3 -0
- package/styles/numerictextbox/_bootstrap4-definition.scss +3 -0
- package/styles/numerictextbox/_bootstrap5-dark-definition.scss +1 -0
- package/styles/numerictextbox/_bootstrap5-definition.scss +3 -0
- package/styles/numerictextbox/_fabric-dark-definition.scss +6 -0
- package/styles/numerictextbox/_fabric-definition.scss +3 -0
- package/styles/numerictextbox/_fluent-dark-definition.scss +1 -0
- package/styles/numerictextbox/_fluent-definition.scss +5 -0
- package/styles/numerictextbox/_fusionnew-definition.scss +3 -0
- package/styles/numerictextbox/_highcontrast-definition.scss +3 -0
- package/styles/numerictextbox/_highcontrast-light-definition.scss +6 -0
- package/styles/numerictextbox/_layout.scss +30 -0
- package/styles/numerictextbox/_material-dark-definition.scss +6 -0
- package/styles/numerictextbox/_material-definition.scss +3 -0
- package/styles/numerictextbox/_material3-dark-definition.scss +1 -0
- package/styles/numerictextbox/_material3-definition.scss +4 -0
- package/styles/numerictextbox/_tailwind-dark-definition.scss +1 -0
- package/styles/numerictextbox/_tailwind-definition.scss +3 -0
- package/styles/numerictextbox/_theme.scss +39 -0
- package/styles/numerictextbox/bootstrap-dark.scss +5 -1
- package/styles/numerictextbox/bootstrap.scss +5 -1
- package/styles/numerictextbox/bootstrap4.scss +5 -1
- package/styles/numerictextbox/bootstrap5-dark.scss +5 -1
- package/styles/numerictextbox/bootstrap5.scss +5 -1
- package/styles/numerictextbox/fabric-dark.scss +5 -1
- package/styles/numerictextbox/fabric.scss +5 -1
- package/styles/numerictextbox/fluent-dark.scss +5 -1
- package/styles/numerictextbox/fluent.scss +5 -1
- package/styles/numerictextbox/highcontrast-light.scss +5 -1
- package/styles/numerictextbox/highcontrast.scss +5 -1
- package/styles/numerictextbox/icons/_bootstrap-dark.scss +11 -0
- package/styles/numerictextbox/icons/_bootstrap.scss +11 -0
- package/styles/numerictextbox/icons/_bootstrap4.scss +11 -0
- package/styles/numerictextbox/icons/_bootstrap5-dark.scss +1 -0
- package/styles/numerictextbox/icons/_bootstrap5.scss +11 -0
- package/styles/numerictextbox/icons/_fabric-dark.scss +11 -0
- package/styles/numerictextbox/icons/_fabric.scss +11 -0
- package/styles/numerictextbox/icons/_fluent-dark.scss +1 -0
- package/styles/numerictextbox/icons/_fluent.scss +11 -0
- package/styles/numerictextbox/icons/_fusionnew.scss +11 -0
- package/styles/numerictextbox/icons/_highcontrast-light.scss +11 -0
- package/styles/numerictextbox/icons/_highcontrast.scss +11 -0
- package/styles/numerictextbox/icons/_material-dark.scss +11 -0
- package/styles/numerictextbox/icons/_material.scss +11 -0
- package/styles/numerictextbox/icons/_material3-dark.scss +1 -0
- package/styles/numerictextbox/icons/_material3.scss +11 -0
- package/styles/numerictextbox/icons/_tailwind-dark.scss +1 -0
- package/styles/numerictextbox/icons/_tailwind.scss +11 -0
- package/styles/numerictextbox/material-dark.scss +5 -1
- package/styles/numerictextbox/material.scss +5 -1
- package/styles/numerictextbox/material3-dark.scss +5 -1
- package/styles/numerictextbox/material3.scss +5 -1
- package/styles/numerictextbox/tailwind-dark.scss +5 -1
- package/styles/numerictextbox/tailwind.scss +5 -1
- package/styles/rating/_all.scss +2 -0
- package/styles/rating/_bootstrap-dark-definition.scss +47 -0
- package/styles/rating/_bootstrap-definition.scss +47 -0
- package/styles/rating/_bootstrap4-definition.scss +47 -0
- package/styles/rating/_bootstrap5-dark-definition.scss +1 -0
- package/styles/rating/_bootstrap5-definition.scss +47 -0
- package/styles/rating/_fabric-dark-definition.scss +47 -0
- package/styles/rating/_fabric-definition.scss +47 -0
- package/styles/rating/_fluent-dark-definition.scss +1 -0
- package/styles/rating/_fluent-definition.scss +47 -0
- package/styles/rating/_fusionnew-definition.scss +47 -0
- package/styles/rating/_highcontrast-definition.scss +47 -0
- package/styles/rating/_highcontrast-light-definition.scss +47 -0
- package/styles/rating/_layout.scss +211 -0
- package/styles/rating/_material-dark-definition.scss +47 -0
- package/styles/rating/_material-definition.scss +47 -0
- package/styles/rating/_material3-dark-definition.scss +1 -0
- package/styles/rating/_material3-definition.scss +47 -0
- package/styles/rating/_tailwind-dark-definition.scss +1 -0
- package/styles/rating/_tailwind-definition.scss +47 -0
- package/styles/rating/_theme.scss +192 -0
- package/styles/rating/bootstrap-dark.scss +4 -1
- package/styles/rating/bootstrap.scss +4 -1
- package/styles/rating/bootstrap4.scss +4 -1
- package/styles/rating/bootstrap5-dark.scss +4 -1
- package/styles/rating/bootstrap5.scss +4 -1
- package/styles/rating/fabric-dark.scss +4 -1
- package/styles/rating/fabric.scss +4 -1
- package/styles/rating/fluent-dark.scss +4 -1
- package/styles/rating/fluent.scss +4 -1
- package/styles/rating/highcontrast-light.scss +4 -1
- package/styles/rating/highcontrast.scss +4 -1
- package/styles/rating/material-dark.scss +4 -1
- package/styles/rating/material.scss +4 -1
- package/styles/rating/material3-dark.scss +4 -1
- package/styles/rating/material3.scss +4 -1
- package/styles/rating/tailwind-dark.scss +4 -1
- package/styles/rating/tailwind.scss +4 -1
- package/styles/signature/_all.scss +2 -0
- package/styles/signature/_bootstrap-dark-definition.scss +3 -0
- package/styles/signature/_bootstrap-definition.scss +3 -0
- package/styles/signature/_bootstrap4-definition.scss +3 -0
- package/styles/signature/_bootstrap5-dark-definition.scss +1 -0
- package/styles/signature/_bootstrap5-definition.scss +3 -0
- package/styles/signature/_fabric-dark-definition.scss +3 -0
- package/styles/signature/_fabric-definition.scss +3 -0
- package/styles/signature/_fluent-dark-definition.scss +1 -0
- package/styles/signature/_fluent-definition.scss +3 -0
- package/styles/signature/_fusionnew-definition.scss +3 -0
- package/styles/signature/_highcontrast-definition.scss +3 -0
- package/styles/signature/_highcontrast-light-definition.scss +3 -0
- package/styles/signature/_layout.scss +5 -0
- package/styles/signature/_material-dark-definition.scss +3 -0
- package/styles/signature/_material-definition.scss +3 -0
- package/styles/signature/_material3-dark-definition.scss +1 -0
- package/styles/signature/_material3-definition.scss +3 -0
- package/styles/signature/_tailwind-dark-definition.scss +1 -0
- package/styles/signature/_tailwind-definition.scss +3 -0
- package/styles/signature/_theme.scss +7 -0
- package/styles/signature/bootstrap-dark.scss +3 -1
- package/styles/signature/bootstrap.scss +3 -1
- package/styles/signature/bootstrap4.scss +3 -1
- package/styles/signature/bootstrap5-dark.scss +3 -1
- package/styles/signature/bootstrap5.scss +3 -1
- package/styles/signature/fabric-dark.scss +3 -1
- package/styles/signature/fabric.scss +3 -1
- package/styles/signature/fluent-dark.scss +3 -1
- package/styles/signature/fluent.scss +3 -1
- package/styles/signature/highcontrast-light.scss +3 -1
- package/styles/signature/highcontrast.scss +3 -1
- package/styles/signature/material-dark.scss +3 -1
- package/styles/signature/material.scss +3 -1
- package/styles/signature/material3-dark.scss +3 -1
- package/styles/signature/material3.scss +3 -1
- package/styles/signature/tailwind-dark.scss +3 -1
- package/styles/signature/tailwind.scss +3 -1
- package/styles/slider/_all.scss +3 -0
- package/styles/slider/_bootstrap-dark-definition.scss +156 -0
- package/styles/slider/_bootstrap-definition.scss +152 -0
- package/styles/slider/_bootstrap4-definition.scss +147 -0
- package/styles/slider/_bootstrap5-dark-definition.scss +1 -0
- package/styles/slider/_bootstrap5-definition.scss +90 -0
- package/styles/slider/_fabric-dark-definition.scss +162 -0
- package/styles/slider/_fabric-definition.scss +156 -0
- package/styles/slider/_fluent-dark-definition.scss +1 -0
- package/styles/slider/_fluent-definition.scss +74 -0
- package/styles/slider/_fusionnew-definition.scss +90 -0
- package/styles/slider/_highcontrast-definition.scss +145 -0
- package/styles/slider/_highcontrast-light-definition.scss +149 -0
- package/styles/slider/_icons.scss +1 -0
- package/styles/slider/_layout.scss +2485 -0
- package/styles/slider/_material-dark-definition.scss +159 -0
- package/styles/slider/_material-definition.scss +154 -0
- package/styles/slider/_material3-dark-definition.scss +1 -0
- package/styles/slider/_material3-definition.scss +97 -0
- package/styles/slider/_tailwind-dark-definition.scss +1 -0
- package/styles/slider/_tailwind-definition.scss +84 -0
- package/styles/slider/_theme.scss +249 -0
- package/styles/slider/bootstrap-dark.scss +5 -1
- package/styles/slider/bootstrap.scss +5 -1
- package/styles/slider/bootstrap4.scss +5 -1
- package/styles/slider/bootstrap5-dark.scss +5 -1
- package/styles/slider/bootstrap5.scss +5 -1
- package/styles/slider/fabric-dark.scss +5 -1
- package/styles/slider/fabric.scss +5 -1
- package/styles/slider/fluent-dark.scss +5 -1
- package/styles/slider/fluent.scss +5 -1
- package/styles/slider/highcontrast-light.scss +5 -1
- package/styles/slider/highcontrast.scss +5 -1
- package/styles/slider/material-dark.scss +5 -1
- package/styles/slider/material.scss +5 -1
- package/styles/slider/material3-dark.scss +5 -1
- package/styles/slider/material3.scss +5 -1
- package/styles/slider/tailwind-dark.scss +5 -1
- package/styles/slider/tailwind.scss +5 -1
- package/styles/textbox/_all.scss +1 -0
- package/styles/textbox/_bootstrap-dark-definition.scss +4 -0
- package/styles/textbox/_bootstrap-definition.scss +4 -0
- package/styles/textbox/_bootstrap4-definition.scss +4 -0
- package/styles/textbox/_bootstrap5-dark-definition.scss +1 -0
- package/styles/textbox/_bootstrap5-definition.scss +4 -0
- package/styles/textbox/_fabric-dark-definition.scss +4 -0
- package/styles/textbox/_fabric-definition.scss +4 -0
- package/styles/textbox/_fluent-dark-definition.scss +1 -0
- package/styles/textbox/_fluent-definition.scss +4 -0
- package/styles/textbox/_fusionnew-definition.scss +4 -0
- package/styles/textbox/_highcontrast-definition.scss +4 -0
- package/styles/textbox/_highcontrast-light-definition.scss +4 -0
- package/styles/textbox/_layout.scss +37 -0
- package/styles/textbox/_material-dark-definition.scss +4 -0
- package/styles/textbox/_material-definition.scss +4 -0
- package/styles/textbox/_material3-dark-definition.scss +1 -0
- package/styles/textbox/_material3-definition.scss +4 -0
- package/styles/textbox/_tailwind-dark-definition.scss +1 -0
- package/styles/textbox/_tailwind-definition.scss +4 -0
- package/styles/textbox/_theme.scss +1 -0
- package/styles/textbox/bootstrap-dark.scss +4 -1
- package/styles/textbox/bootstrap.scss +4 -1
- package/styles/textbox/bootstrap4.scss +4 -1
- package/styles/textbox/bootstrap5-dark.scss +4 -1
- package/styles/textbox/bootstrap5.scss +4 -1
- package/styles/textbox/fabric-dark.scss +4 -1
- package/styles/textbox/fabric.scss +4 -1
- package/styles/textbox/fluent-dark.scss +4 -1
- package/styles/textbox/fluent.scss +4 -1
- package/styles/textbox/highcontrast-light.scss +4 -1
- package/styles/textbox/highcontrast.scss +4 -1
- package/styles/textbox/material-dark.scss +4 -1
- package/styles/textbox/material.scss +4 -1
- package/styles/textbox/material3-dark.scss +4 -1
- package/styles/textbox/material3.scss +4 -1
- package/styles/textbox/tailwind-dark.scss +4 -1
- package/styles/textbox/tailwind.scss +4 -1
- package/styles/uploader/_all.scss +2 -0
- package/styles/uploader/_bootstrap-dark-definition.scss +213 -0
- package/styles/uploader/_bootstrap-definition.scss +208 -0
- package/styles/uploader/_bootstrap4-definition.scss +211 -0
- package/styles/uploader/_bootstrap5-dark-definition.scss +1 -0
- package/styles/uploader/_bootstrap5-definition.scss +216 -0
- package/styles/uploader/_definition.scss +142 -0
- package/styles/uploader/_fabric-dark-definition.scss +216 -0
- package/styles/uploader/_fabric-definition.scss +210 -0
- package/styles/uploader/_fluent-dark-definition.scss +1 -0
- package/styles/uploader/_fluent-definition.scss +234 -0
- package/styles/uploader/_fusionnew-definition.scss +216 -0
- package/styles/uploader/_highcontrast-definition.scss +211 -0
- package/styles/uploader/_highcontrast-light-definition.scss +219 -0
- package/styles/uploader/_layout.scss +989 -0
- package/styles/uploader/_material-dark-definition.scss +217 -0
- package/styles/uploader/_material-definition.scss +214 -0
- package/styles/uploader/_material3-dark-definition.scss +1 -0
- package/styles/uploader/_material3-definition.scss +215 -0
- package/styles/uploader/_tailwind-dark-definition.scss +1 -0
- package/styles/uploader/_tailwind-definition.scss +232 -0
- package/styles/uploader/_theme.scss +146 -0
- package/styles/uploader/bootstrap-dark.scss +6 -1
- package/styles/uploader/bootstrap.scss +6 -1
- package/styles/uploader/bootstrap4.scss +6 -1
- package/styles/uploader/bootstrap5-dark.scss +6 -1
- package/styles/uploader/bootstrap5.scss +6 -1
- package/styles/uploader/fabric-dark.scss +6 -1
- package/styles/uploader/fabric.scss +6 -1
- package/styles/uploader/fluent-dark.scss +6 -1
- package/styles/uploader/fluent.scss +6 -1
- package/styles/uploader/highcontrast-light.scss +6 -1
- package/styles/uploader/highcontrast.scss +6 -1
- package/styles/uploader/icons/_bootstrap-dark.scss +34 -0
- package/styles/uploader/icons/_bootstrap.scss +34 -0
- package/styles/uploader/icons/_bootstrap4.scss +34 -0
- package/styles/uploader/icons/_bootstrap5-dark.scss +1 -0
- package/styles/uploader/icons/_bootstrap5.scss +34 -0
- package/styles/uploader/icons/_fabric-dark.scss +34 -0
- package/styles/uploader/icons/_fabric.scss +34 -0
- package/styles/uploader/icons/_fluent-dark.scss +1 -0
- package/styles/uploader/icons/_fluent.scss +34 -0
- package/styles/uploader/icons/_fusionnew.scss +34 -0
- package/styles/uploader/icons/_highcontrast-light.scss +34 -0
- package/styles/uploader/icons/_highcontrast.scss +34 -0
- package/styles/uploader/icons/_material-dark.scss +34 -0
- package/styles/uploader/icons/_material.scss +34 -0
- package/styles/uploader/icons/_material3-dark.scss +1 -0
- package/styles/uploader/icons/_material3.scss +34 -0
- package/styles/uploader/icons/_tailwind-dark.scss +1 -0
- package/styles/uploader/icons/_tailwind.scss +34 -0
- package/styles/uploader/material-dark.scss +6 -1
- package/styles/uploader/material.scss +6 -1
- package/styles/uploader/material3-dark.scss +6 -1
- package/styles/uploader/material3.scss +6 -1
- package/styles/uploader/tailwind-dark.scss +6 -1
- package/styles/uploader/tailwind.scss +6 -1
- package/syncfusion-ej2-angular-inputs.d.ts +5 -0
- package/@syncfusion/ej2-angular-inputs.es5.js +0 -1759
- package/@syncfusion/ej2-angular-inputs.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-inputs.js +0 -1657
- package/@syncfusion/ej2-angular-inputs.js.map +0 -1
- package/CHANGELOG.md +0 -1540
- package/dist/ej2-angular-inputs.umd.js +0 -1848
- package/dist/ej2-angular-inputs.umd.js.map +0 -1
- package/dist/ej2-angular-inputs.umd.min.js +0 -11
- package/dist/ej2-angular-inputs.umd.min.js.map +0 -1
- package/ej2-angular-inputs.d.ts +0 -12
- package/ej2-angular-inputs.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
|
@@ -0,0 +1,989 @@
|
|
|
1
|
+
// uploader layout styles
|
|
2
|
+
@include export-module('uploader-layout') {
|
|
3
|
+
// For bigger class UI
|
|
4
|
+
.e-bigger {
|
|
5
|
+
.e-upload {
|
|
6
|
+
width: 100%;
|
|
7
|
+
@if $skin-name == 'FluentUI' {
|
|
8
|
+
border-radius: $upload-border-radius-bigger;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.e-file-select-wrap {
|
|
12
|
+
padding: $header-padding-bigger;
|
|
13
|
+
|
|
14
|
+
#{if(&, '&', '*')} .e-file-drop {
|
|
15
|
+
font-size: $drop-area-font-size;
|
|
16
|
+
margin-left: $drop-area-padding-left;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
#{if(&, '&', '*')} .e-upload-files {
|
|
21
|
+
|
|
22
|
+
.e-upload-file-list {
|
|
23
|
+
font-size: $list-items-font-size;
|
|
24
|
+
line-height: $list-line-height;
|
|
25
|
+
min-height: $list-items-height;
|
|
26
|
+
|
|
27
|
+
.e-file-container {
|
|
28
|
+
margin-left: $list-item-margin-left;
|
|
29
|
+
top: $file-container-top-bigger;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.e-file-container .e-file-name {
|
|
33
|
+
font-size: $file-name-font-size;
|
|
34
|
+
padding-top: $file-name-padding-top;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.e-file-container .e-file-size {
|
|
38
|
+
font-size: $list-item-status-font-size;
|
|
39
|
+
@if $skin-name == 'tailwind' {
|
|
40
|
+
font-size: $list-item-file-size-font-size;
|
|
41
|
+
line-height: 22px;
|
|
42
|
+
}
|
|
43
|
+
padding: $file-size-padding;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.e-file-container .e-file-type {
|
|
47
|
+
font-size: $file-name-font-size;
|
|
48
|
+
padding-top: $file-name-padding-top;
|
|
49
|
+
top: initial;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.e-file-container .e-file-status,
|
|
53
|
+
.e-file-container .e-file-information {
|
|
54
|
+
font-size: $list-item-status-font-size;
|
|
55
|
+
padding-bottom: $file-name-padding-top;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.e-file-container .e-upload-progress-wrap {
|
|
59
|
+
height: $progress-bar-wrapper-height;
|
|
60
|
+
|
|
61
|
+
#{if(&, '&', '*')} .e-progress-inner-wrap {
|
|
62
|
+
height: $progress-inner-wrap-height;
|
|
63
|
+
width: $progress-bar-wrapper-width;
|
|
64
|
+
|
|
65
|
+
#{if(&, '&', '*')} .e-upload-progress-bar {
|
|
66
|
+
height: $progress-bar-height;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
#{if(&, '&', '*')} .e-progress-bar-text {
|
|
71
|
+
font-size: $list-item-status-font-size-smaller;
|
|
72
|
+
right: $progress-bar-text-right;
|
|
73
|
+
top: $progress-bar-text-top;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
#{if(&, '&', '*')} .e-file-remove-btn.e-icons,
|
|
79
|
+
#{if(&, '&', '*')} .e-file-delete-btn.e-icons,
|
|
80
|
+
#{if(&, '&', '*')} .e-file-abort-btn.e-icons,
|
|
81
|
+
#{if(&, '&', '*')} .e-file-reload-btn.e-icons,
|
|
82
|
+
#{if(&, '&', '*')} .e-file-play-btn.e-icons,
|
|
83
|
+
#{if(&, '&', '*')} .e-file-pause-btn.e-icons {
|
|
84
|
+
box-sizing: border-box;
|
|
85
|
+
font-size: $remove-icon-font-size;
|
|
86
|
+
height: $remove-bigger-icon-height;
|
|
87
|
+
margin: $remove-icon-margin;
|
|
88
|
+
margin-top: $remove-icon-margin-top;
|
|
89
|
+
padding: $delete-icon-padding;
|
|
90
|
+
top: $remove-icon-top-smaller;
|
|
91
|
+
width: $remove-bigger-icon-width;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
#{if(&, '&', '*')} .e-file-remove-btn.e-icons.e-disabled,
|
|
95
|
+
#{if(&, '&', '*')} .e-file-delete-btn.e-icons.e-disabled {
|
|
96
|
+
color: $disabled-state;
|
|
97
|
+
cursor: not-allowed;
|
|
98
|
+
opacity: .4;
|
|
99
|
+
pointer-events: none;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
#{if(&, '&', '*')} .e-file-remove-btn.e-msie.e-icons,
|
|
103
|
+
#{if(&, '&', '*')} .e-file-delete-btn.e-msie.e-icons,
|
|
104
|
+
#{if(&, '&', '*')} .e-file-abort-btn.e-msie.e-icons,
|
|
105
|
+
#{if(&, '&', '*')} .e-file-reload-btn.e-msie.e-icons,
|
|
106
|
+
#{if(&, '&', '*')} .e-file-play-btn.e-msie.e-icons,
|
|
107
|
+
#{if(&, '&', '*')} .e-file-pause-btn.e-msie.e-icons {
|
|
108
|
+
padding: $icons-bigger-ie-padding;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
#{if(&, '&', '*')} .e-file-play-btn.e-icons,
|
|
112
|
+
#{if(&, '&', '*')} .e-file-reload-btn.e-icons,
|
|
113
|
+
#{if(&, '&', '*')} .e-file-pause-btn.e-icons {
|
|
114
|
+
right: $pause-play-button-right-value-bigger;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
#{if(&, '&', '*')} .e-file-delete-btn.e-icons {
|
|
118
|
+
font-size: $delete-icon-font-size;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
#{if(&, '&', '*')} .e-file-abort-btn.e-icons {
|
|
122
|
+
font-size: $abort-icon-font-size;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
#{if(&, '&', '*')} .e-upload-actions .e-btn {
|
|
127
|
+
margin-left: $list-item-margin-left;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
#{if(&, '&', '*')} .e-upload-actions {
|
|
131
|
+
|
|
132
|
+
.e-file-upload-btn {
|
|
133
|
+
@if ($skin-name == 'bootstrap4' or $skin-name == 'FluentUI') {
|
|
134
|
+
margin: $footer-upload-buttons-margin;
|
|
135
|
+
}
|
|
136
|
+
@else if ($skin-name != 'bootstrap4' and $skin-name != 'FluentUI') {
|
|
137
|
+
margin: $footer-buttons-margin;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.e-file-clear-btn {
|
|
142
|
+
@if ($skin-name == 'bootstrap4' or $skin-name == 'FluentUI') {
|
|
143
|
+
margin: $footer-clear-buttons-margin;
|
|
144
|
+
}
|
|
145
|
+
@else if ($skin-name != 'bootstrap4' and $skin-name != 'FluentUI') {
|
|
146
|
+
margin: $footer-buttons-margin;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
#{if(&, '&', '*')}.e-rtl {
|
|
152
|
+
#{if(&, '&', '*')} .e-file-select-wrap {
|
|
153
|
+
padding: $header-padding-rtl-bigger;
|
|
154
|
+
|
|
155
|
+
#{if(&, '&', '*')} .e-control {
|
|
156
|
+
#{if(&, '&', '*')}.e-btn {
|
|
157
|
+
margin-right: $margin-rtl-header;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
#{if(&, '&', '*')} .e-file-drop {
|
|
162
|
+
margin-right: $drop-area-padding-left;
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
#{if(&, '&', '*')} .e-upload-actions {
|
|
167
|
+
|
|
168
|
+
.e-file-upload-btn {
|
|
169
|
+
@if $skin-name == 'FluentUI' {
|
|
170
|
+
margin: $footer-upload-buttons-margin-rtl;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.e-file-clear-btn {
|
|
175
|
+
@if $skin-name == 'FluentUI' {
|
|
176
|
+
margin: $footer-clear-buttons-margin-rtl;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
#{if(&, '&', '*')} .e-upload-files {
|
|
182
|
+
#{if(&, '&', '*')} .e-upload-file-list {
|
|
183
|
+
#{if(&, '&', '*')} .e-file-container {
|
|
184
|
+
margin-left: $file-container-left;
|
|
185
|
+
margin-right: $margin-rtl;
|
|
186
|
+
|
|
187
|
+
#{if(&, '&', '*')} .e-file-status,
|
|
188
|
+
#{if(&, '&', '*')} .e-file-information {
|
|
189
|
+
top: $file-status-rtl;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
#{if(&, '&', '*')} .e-upload-progress-wrap {
|
|
193
|
+
|
|
194
|
+
#{if(&, '&', '*')} .e-progress-bar-text {
|
|
195
|
+
left: $progress-bar-text-right;
|
|
196
|
+
right: initial;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
#{if(&, '&', '*')} .e-file-remove-btn.e-icons,
|
|
202
|
+
#{if(&, '&', '*')} .e-file-delete-btn.e-icons,
|
|
203
|
+
#{if(&, '&', '*')} .e-file-abort-btn.e-icons,
|
|
204
|
+
#{if(&, '&', '*')} .e-file-reload-btn.e-icons,
|
|
205
|
+
#{if(&, '&', '*')} .e-file-play-btn.e-icons,
|
|
206
|
+
#{if(&, '&', '*')} .e-file-pause-btn.e-icons {
|
|
207
|
+
box-sizing: border-box;
|
|
208
|
+
left: $remove-icon-rtl-bigger;
|
|
209
|
+
margin-left: $margin-rtl;
|
|
210
|
+
margin-right: $margin-rtl;
|
|
211
|
+
padding: $delete-icon-padding;
|
|
212
|
+
top: $remove-icon-top;
|
|
213
|
+
@if $skin-name == 'FluentUI' {
|
|
214
|
+
margin-left: $margin-icon-rtl;
|
|
215
|
+
margin-right: $margin-icon-rtl;
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
#{if(&, '&', '*')} .e-file-remove-btn.e-icons.e-disabled,
|
|
220
|
+
#{if(&, '&', '*')} .e-file-delete-btn.e-icons.e-disabled {
|
|
221
|
+
color: $disabled-state;
|
|
222
|
+
cursor: not-allowed;
|
|
223
|
+
opacity: .4;
|
|
224
|
+
pointer-events: none;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
#{if(&, '&', '*')} .e-file-remove-btn.e-msie.e-icons,
|
|
228
|
+
#{if(&, '&', '*')} .e-file-delete-btn.e-msie.e-icons,
|
|
229
|
+
#{if(&, '&', '*')} .e-file-abort-btn.e-msie.e-icons,
|
|
230
|
+
#{if(&, '&', '*')} .e-file-reload-btn.e-msie.e-icons,
|
|
231
|
+
#{if(&, '&', '*')} .e-file-play-btn.e-msie.e-icons,
|
|
232
|
+
#{if(&, '&', '*')} .e-file-pause-btn.e-msie.e-icons {
|
|
233
|
+
padding: $icons-bigger-ie-padding;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
#{if(&, '&', '*')} .e-file-play-btn,
|
|
237
|
+
#{if(&, '&', '*')} .e-file-reload-btn,
|
|
238
|
+
#{if(&, '&', '*')} .e-file-pause-btn {
|
|
239
|
+
#{if(&, '&', '*')}.e-icons {
|
|
240
|
+
left: $pause-play-button-right-value-bigger-rtl;
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
#{if(&, '&', '*')}.e-form-upload .e-upload-files {
|
|
248
|
+
#{if(&, '&', '*')} .e-upload-file-list {
|
|
249
|
+
min-height: $form-upload-bigger-file-list-height;
|
|
250
|
+
padding-bottom: $form-upload-bigger-file-list-padding-bottom;
|
|
251
|
+
padding-top: $form-upload-bigger-file-list-padding-top;
|
|
252
|
+
|
|
253
|
+
#{if(&, '&', '*')} .e-file-container {
|
|
254
|
+
top: 0;
|
|
255
|
+
|
|
256
|
+
#{if(&, '&', '*')} .e-hidden-input {
|
|
257
|
+
display: none;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
#{if(&, '&', '*')} .e-file-name,
|
|
261
|
+
#{if(&, '&', '*')} .e-file-type {
|
|
262
|
+
line-height: $form-upload-bigger-file-name-line-height;
|
|
263
|
+
padding-top: $form-upload-bigger-file-name-padding;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
#{if(&, '&', '*')} .e-file-name.e-error,
|
|
267
|
+
#{if(&, '&', '*')} .e-file-type.e-error,
|
|
268
|
+
#{if(&, '&', '*')} .e-file-status.e-error {
|
|
269
|
+
color: $upload-failure-color;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
#{if(&, '&', '*')} .e-file-status,
|
|
273
|
+
#{if(&, '&', '*')} .e-file-information {
|
|
274
|
+
color: $file-size-color;
|
|
275
|
+
display: block;
|
|
276
|
+
font-size: $form-upload-bigger-file-status-font-size;
|
|
277
|
+
line-height: $form-upload-bigger-file-name-line-height;
|
|
278
|
+
padding-bottom: 0;
|
|
279
|
+
padding-top: $form-upload-bigger-file-name-padding;
|
|
280
|
+
position: relative;
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
#{if(&, '&', '*')}.e-file-invalid {
|
|
285
|
+
color: $upload-failure-color;
|
|
286
|
+
|
|
287
|
+
#{if(&, '&', '*')} .e-file-name,
|
|
288
|
+
#{if(&, '&', '*')} .e-file-type,
|
|
289
|
+
#{if(&, '&', '*')} .e-file-status {
|
|
290
|
+
color: $upload-failure-color;
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
#{if(&, '&', '*')} .e-file-remove-btn.e-icons,
|
|
296
|
+
#{if(&, '&', '*')} .e-file-delete-btn.e-icons,
|
|
297
|
+
#{if(&, '&', '*')} .e-file-abort-btn.e-icons,
|
|
298
|
+
#{if(&, '&', '*')} .e-file-reload-btn.e-icons,
|
|
299
|
+
#{if(&, '&', '*')} .e-file-play-btn.e-icons,
|
|
300
|
+
#{if(&, '&', '*')} .e-file-pause-btn.e-icons {
|
|
301
|
+
box-sizing: border-box;
|
|
302
|
+
top: $form-upload-bigger-remove-icon-top;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
#{if(&, '&', '*')} .e-file-remove-btn.e-icons.e-disabled,
|
|
306
|
+
#{if(&, '&', '*')} .e-file-delete-btn.e-icons.e-disabled {
|
|
307
|
+
color: $disabled-state;
|
|
308
|
+
cursor: not-allowed;
|
|
309
|
+
opacity: .4;
|
|
310
|
+
pointer-events: none;
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
// For Desktop view
|
|
317
|
+
|
|
318
|
+
.e-upload,
|
|
319
|
+
.e-bigger.e-small .e-upload {
|
|
320
|
+
width: 100%;
|
|
321
|
+
|
|
322
|
+
#{if(&, '&', '*')}.e-control-wrapper {
|
|
323
|
+
font-family: $upload-root-font-family;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.e-hidden-file-input {
|
|
327
|
+
border: 0;
|
|
328
|
+
height: 0;
|
|
329
|
+
margin: 0;
|
|
330
|
+
outline: none;
|
|
331
|
+
padding: 0;
|
|
332
|
+
text-indent: 0;
|
|
333
|
+
visibility: hidden;
|
|
334
|
+
width: 0;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.e-file-select-wrap {
|
|
338
|
+
padding: $header-padding;
|
|
339
|
+
|
|
340
|
+
.e-file-select,
|
|
341
|
+
.e-file-select .e-uploader {
|
|
342
|
+
display: inline-block;
|
|
343
|
+
width: $upload-element-width;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.e-file-select .e-uploader {
|
|
347
|
+
opacity: $upload-element-opacity;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
#{if(&, '&', '*')} .e-file-drop {
|
|
351
|
+
font-family: $upload-font-family;
|
|
352
|
+
font-size: $drop-area-font-size-smaller;
|
|
353
|
+
margin-left: $drop-area-padding-left-smaller;
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
#{if(&, '&', '*')}.e-form-upload .e-upload-files {
|
|
358
|
+
#{if(&, '&', '*')} .e-upload-file-list {
|
|
359
|
+
min-height: $form-upload-file-list-height;
|
|
360
|
+
padding-bottom: $form-upload-file-list-padding-bottom;
|
|
361
|
+
padding-top: $form-upload-file-list-padding-top;
|
|
362
|
+
|
|
363
|
+
#{if(&, '&', '*')} .e-file-container {
|
|
364
|
+
top: 0;
|
|
365
|
+
|
|
366
|
+
#{if(&, '&', '*')} .e-hidden-input {
|
|
367
|
+
display: none;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
#{if(&, '&', '*')} .e-file-name,
|
|
371
|
+
#{if(&, '&', '*')} .e-file-type {
|
|
372
|
+
line-height: $form-upload-file-name-line-height;
|
|
373
|
+
padding-top: $form-upload-file-name-padding;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
#{if(&, '&', '*')} .e-file-name.e-error,
|
|
377
|
+
#{if(&, '&', '*')} .e-file-type.e-error,
|
|
378
|
+
#{if(&, '&', '*')} .e-file-status.e-error {
|
|
379
|
+
color: $upload-failure-color;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
#{if(&, '&', '*')} .e-file-status,
|
|
383
|
+
#{if(&, '&', '*')} .e-file-information {
|
|
384
|
+
color: $file-size-color;
|
|
385
|
+
display: block;
|
|
386
|
+
font-size: $form-upload-file-status-font-size;
|
|
387
|
+
line-height: $form-upload-file-name-line-height;
|
|
388
|
+
padding-bottom: 0;
|
|
389
|
+
padding-top: $form-upload-file-name-padding;
|
|
390
|
+
position: relative;
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
#{if(&, '&', '*')}.e-file-invalid {
|
|
395
|
+
color: $upload-failure-color;
|
|
396
|
+
|
|
397
|
+
#{if(&, '&', '*')} .e-file-name,
|
|
398
|
+
#{if(&, '&', '*')} .e-file-type,
|
|
399
|
+
#{if(&, '&', '*')} .e-file-status {
|
|
400
|
+
color: $upload-failure-color;
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
#{if(&, '&', '*')} .e-file-remove-btn.e-icons,
|
|
406
|
+
#{if(&, '&', '*')} .e-file-delete-btn.e-icons,
|
|
407
|
+
#{if(&, '&', '*')} .e-file-abort-btn.e-icons,
|
|
408
|
+
#{if(&, '&', '*')} .e-file-reload-btn.e-icons,
|
|
409
|
+
#{if(&, '&', '*')} .e-file-play-btn.e-icons,
|
|
410
|
+
#{if(&, '&', '*')} .e-file-pause-btn.e-icons {
|
|
411
|
+
box-sizing: border-box;
|
|
412
|
+
top: $form-upload-remove-icon-top;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
#{if(&, '&', '*')} .e-file-remove-btn.e-icons.e-disabled,
|
|
416
|
+
#{if(&, '&', '*')} .e-file-delete-btn.e-icons.e-disabled {
|
|
417
|
+
color: $disabled-state;
|
|
418
|
+
cursor: not-allowed;
|
|
419
|
+
opacity: .4;
|
|
420
|
+
pointer-events: none;
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
#{if(&, '&', '*')} .e-upload-files {
|
|
425
|
+
list-style-type: none;
|
|
426
|
+
margin: $select-file-margin;
|
|
427
|
+
padding: $select-file-padding;
|
|
428
|
+
|
|
429
|
+
.e-icons:focus {
|
|
430
|
+
@if ($skin-name == 'material' or $skin-name == 'Material3') {
|
|
431
|
+
outline: none;
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.e-upload-file-list {
|
|
436
|
+
font-family: $upload-font-family;
|
|
437
|
+
font-size: $list-items-font-size-smaller;
|
|
438
|
+
height: 100%;
|
|
439
|
+
line-height: $list-line-height;
|
|
440
|
+
@if $skin-name == 'tailwind' {
|
|
441
|
+
line-height: $list-line-height-smaller;
|
|
442
|
+
}
|
|
443
|
+
min-height: $li-min-height;
|
|
444
|
+
position: relative;
|
|
445
|
+
|
|
446
|
+
.e-file-container {
|
|
447
|
+
display: block;
|
|
448
|
+
height: 100%;
|
|
449
|
+
margin-left: $list-item-margin-left-smaller;
|
|
450
|
+
margin-right: $list-item-margin-right;
|
|
451
|
+
min-height: $list-item-height;
|
|
452
|
+
position: relative;
|
|
453
|
+
top: $file-container-top;
|
|
454
|
+
|
|
455
|
+
.e-file-name {
|
|
456
|
+
float: left;
|
|
457
|
+
font-family: $file-name-font-family;
|
|
458
|
+
font-size: $file-name-font-size-smaller;
|
|
459
|
+
max-width: $list-item-name-width;
|
|
460
|
+
overflow: hidden;
|
|
461
|
+
padding-top: $file-name-padding-top-smaller;
|
|
462
|
+
position: relative;
|
|
463
|
+
text-overflow: ellipsis;
|
|
464
|
+
top: $file-name-top;
|
|
465
|
+
white-space: nowrap;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.e-file-name::before {
|
|
469
|
+
content: attr(data-tail);
|
|
470
|
+
float: right;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
#{if(&, '&', '*')} .e-file-type {
|
|
474
|
+
display: block;
|
|
475
|
+
font-family: $file-name-font-family;
|
|
476
|
+
font-size: $file-name-font-size-smaller;
|
|
477
|
+
padding-top: $file-name-padding-top-smaller;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
#{if(&, '&', '*')} .e-file-type.e-hidden {
|
|
481
|
+
visibility: hidden;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
#{if(&, '&', '*')} .e-file-size {
|
|
485
|
+
display: block;
|
|
486
|
+
font-size: $list-item-status-font-size-smaller;
|
|
487
|
+
padding: $file-size-padding-smaller;
|
|
488
|
+
@if $skin-name == 'tailwind' {
|
|
489
|
+
font-size: $list-item-file-size-font-size-smaller;
|
|
490
|
+
line-height: 18px;
|
|
491
|
+
}
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
#{if(&, '&', '*')} .e-file-status,
|
|
495
|
+
#{if(&, '&', '*')} .e-file-information {
|
|
496
|
+
display: block;
|
|
497
|
+
font-family: $upload-font-family;
|
|
498
|
+
font-size: $list-item-status-font-size-smaller;
|
|
499
|
+
padding-bottom: $file-name-padding-top-smaller;
|
|
500
|
+
|
|
501
|
+
#{if(&, '&', '*')}.e-upload-progress {
|
|
502
|
+
display: none;
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
#{if(&, '&', '*')} .e-upload-progress-wrap {
|
|
507
|
+
display: block;
|
|
508
|
+
height: $progress-bar-wrapper-height-smaller;
|
|
509
|
+
padding-bottom: $progress-bar-bottom-paddding;
|
|
510
|
+
padding-top: $progress-bar-top-paddding;
|
|
511
|
+
position: absolute;
|
|
512
|
+
width: $progress-bar-wrapper-width;
|
|
513
|
+
|
|
514
|
+
#{if(&, '&', '*')} .e-progress-inner-wrap {
|
|
515
|
+
border-radius: $inner-wrap-radius;
|
|
516
|
+
display: block;
|
|
517
|
+
height: $progress-inner-wrap-height-smaller;
|
|
518
|
+
width: 100%;
|
|
519
|
+
|
|
520
|
+
#{if(&, '&', '*')} .e-upload-progress-bar {
|
|
521
|
+
border-radius: $progress-bar-radius;
|
|
522
|
+
display: inherit;
|
|
523
|
+
height: $progress-bar-height-smaller;
|
|
524
|
+
}
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
#{if(&, '&', '*')} .e-progress-bar-text {
|
|
528
|
+
float: right;
|
|
529
|
+
font-family: $upload-font-family;
|
|
530
|
+
font-size: $list-item-status-font-size-smaller;
|
|
531
|
+
position: relative;
|
|
532
|
+
right: $progress-bar-text-right-smaller;
|
|
533
|
+
top: $progress-bar-text-top-smaller;
|
|
534
|
+
}
|
|
535
|
+
}
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
#{if(&, '&', '*')} .e-file-remove-btn.e-icons,
|
|
540
|
+
#{if(&, '&', '*')} .e-file-delete-btn.e-icons,
|
|
541
|
+
#{if(&, '&', '*')} .e-file-abort-btn.e-icons,
|
|
542
|
+
#{if(&, '&', '*')} .e-file-pause-btn.e-icons,
|
|
543
|
+
#{if(&, '&', '*')} .e-file-play-btn.e-icons,
|
|
544
|
+
#{if(&, '&', '*')} .e-file-reload-btn.e-icons {
|
|
545
|
+
align-items: center;
|
|
546
|
+
box-sizing: border-box;
|
|
547
|
+
cursor: pointer;
|
|
548
|
+
display: inline-flex;
|
|
549
|
+
font-size: $remove-icon-font-size-smaller;
|
|
550
|
+
height: $remove-icon-height;
|
|
551
|
+
justify-content: center;
|
|
552
|
+
margin: $remove-icon-margin-smaller;
|
|
553
|
+
margin-top: $remove-icon-margin-top-smaller;
|
|
554
|
+
padding: $remove-icon-padding-smaller;
|
|
555
|
+
position: absolute;
|
|
556
|
+
right: $remove-icon-right;
|
|
557
|
+
top: $remove-icon-top-smaller;
|
|
558
|
+
vertical-align: middle;
|
|
559
|
+
width: $remove-icon-width;
|
|
560
|
+
|
|
561
|
+
#{if(&, '&', '*')}.e-upload-progress {
|
|
562
|
+
cursor: default;
|
|
563
|
+
}
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
#{if(&, '&', '*')} .e-file-remove-btn.e-icons.e-disabled,
|
|
567
|
+
#{if(&, '&', '*')} .e-file-delete-btn.e-icons.e-disabled {
|
|
568
|
+
color: $disabled-state;
|
|
569
|
+
cursor: not-allowed;
|
|
570
|
+
opacity: .4;
|
|
571
|
+
pointer-events: none;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
#{if(&, '&', '*')} .e-file-remove-btn.e-msie.e-icons,
|
|
575
|
+
#{if(&, '&', '*')} .e-file-delete-btn.e-msie.e-icons,
|
|
576
|
+
#{if(&, '&', '*')} .e-file-abort-btn.e-msie.e-icons,
|
|
577
|
+
#{if(&, '&', '*')} .e-file-pause-btn.e-msie.e-icons,
|
|
578
|
+
#{if(&, '&', '*')} .e-file-play-btn.e-msie.e-icons,
|
|
579
|
+
#{if(&, '&', '*')} .e-file-reload-btn.e-msie.e-icons {
|
|
580
|
+
padding: $icons-small-ie-padding;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
#{if(&, '&', '*')} .e-file-pause-btn.e-icons,
|
|
584
|
+
#{if(&, '&', '*')} .e-file-play-btn.e-icons,
|
|
585
|
+
#{if(&, '&', '*')} .e-file-reload-btn.e-icons {
|
|
586
|
+
right: $pause-play-button-right-value;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
#{if(&, '&', '*')} .e-file-remove-btn.e-icons:not(.e-upload-progress):hover,
|
|
590
|
+
#{if(&, '&', '*')} .e-file-delete-btn.e-icons:not(.e-upload-progress):hover,
|
|
591
|
+
#{if(&, '&', '*')} .e-file-pause-btn.e-icons:not(.e-upload-progress):hover,
|
|
592
|
+
#{if(&, '&', '*')} .e-file-play-btn.e-icons:not(.e-upload-progress):hover,
|
|
593
|
+
#{if(&, '&', '*')} .e-file-reload-btn.e-icons:hover,
|
|
594
|
+
#{if(&, '&', '*')} .e-file-abort-btn.e-icons:not(.e-disabled):hover,
|
|
595
|
+
#{if(&, '&', '*')} .e-clear-icon-focus {
|
|
596
|
+
@if $skin-name == 'Material3' {
|
|
597
|
+
background: $clear-icon-focus-color;
|
|
598
|
+
}
|
|
599
|
+
@if $skin-name != 'Material3' {
|
|
600
|
+
background-color: $clear-icon-focus-color;
|
|
601
|
+
}
|
|
602
|
+
border-color: transparent;
|
|
603
|
+
border-radius: $uploader-icons-hover-radius;
|
|
604
|
+
box-shadow: 0 0 0 transparent;
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
#{if(&, '&', '*')} .e-file-remove-btn.e-icons:not(.e-upload-progress):focus,
|
|
608
|
+
#{if(&, '&', '*')} .e-file-delete-btn.e-icons:not(.e-upload-progress):focus,
|
|
609
|
+
#{if(&, '&', '*')} .e-file-pause-btn.e-icons:not(.e-upload-progress):focus,
|
|
610
|
+
#{if(&, '&', '*')} .e-file-play-btn.e-icons:not(.e-upload-progress):focus,
|
|
611
|
+
#{if(&, '&', '*')} .e-file-reload-btn.e-icons:focus,
|
|
612
|
+
#{if(&, '&', '*')} .e-file-abort-btn.e-icons:not(.e-disabled):focus,
|
|
613
|
+
#{if(&, '&', '*')} .e-clear-icon-focus {
|
|
614
|
+
border-radius: $uploader-icons-hover-radius;
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
#{if(&, '&', '*')} .e-file-delete-btn.e-icons {
|
|
618
|
+
font-size: $delete-icon-font-size-smaller;
|
|
619
|
+
opacity: $delete-icon-opacity;
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
#{if(&, '&', '*')} .e-file-abort-btn.e-icons {
|
|
623
|
+
font-size: $abort-icon-font-size-smaller;
|
|
624
|
+
opacity: $delete-icon-opacity;
|
|
625
|
+
}
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
#{if(&, '&', '*')} .e-file-select-wrap .e-btn,
|
|
629
|
+
#{if(&, '&', '*')} .e-upload-actions .e-btn {
|
|
630
|
+
font-family: $upload-font-family;
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
#{if(&, '&', '*')} .e-upload-actions {
|
|
634
|
+
position: relative;
|
|
635
|
+
text-align: right;
|
|
636
|
+
|
|
637
|
+
.e-file-upload-btn {
|
|
638
|
+
@if ($skin-name == 'bootstrap4' or $skin-name == 'FluentUI') {
|
|
639
|
+
margin: $action-upload-buttons-margin-smaller;
|
|
640
|
+
}
|
|
641
|
+
@else if ($skin-name != 'bootstrap4' and $skin-name != 'FluentUI') {
|
|
642
|
+
margin: $action-buttons-margin-smaller;
|
|
643
|
+
}
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
.e-file-clear-btn {
|
|
647
|
+
@if ($skin-name == 'bootstrap4' or $skin-name == 'FluentUI') {
|
|
648
|
+
margin: $action-clear-buttons-margin-smaller;
|
|
649
|
+
}
|
|
650
|
+
@else if ($skin-name != 'bootstrap4' and $skin-name != 'FluentUI') {
|
|
651
|
+
margin: $action-buttons-margin-smaller;
|
|
652
|
+
}
|
|
653
|
+
}
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
#{if(&, '&', '*')}.e-rtl {
|
|
657
|
+
#{if(&, '&', '*')} .e-file-select-wrap {
|
|
658
|
+
padding: $header-padding-rtl-smaller;
|
|
659
|
+
|
|
660
|
+
#{if(&, '&', '*')} .e-control {
|
|
661
|
+
#{if(&, '&', '*')}.e-btn {
|
|
662
|
+
margin-right: $margin-rtl-header-smaller;
|
|
663
|
+
}
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
#{if(&, '&', '*')} .e-file-drop {
|
|
667
|
+
margin-left: $file-container-left;
|
|
668
|
+
margin-right: $drop-area-padding-left-smaller;
|
|
669
|
+
position: relative;
|
|
670
|
+
}
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
#{if(&, '&', '*')} .e-upload-actions {
|
|
674
|
+
text-align: $float-left;
|
|
675
|
+
|
|
676
|
+
.e-file-upload-btn {
|
|
677
|
+
@if $skin-name == 'FluentUI' {
|
|
678
|
+
margin: $action-upload-buttons-margin-smaller-rtl;
|
|
679
|
+
}
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
.e-file-clear-btn {
|
|
683
|
+
@if $skin-name == 'FluentUI' {
|
|
684
|
+
margin: $action-clear-buttons-margin-smaller-rtl;
|
|
685
|
+
}
|
|
686
|
+
}
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
#{if(&, '&', '*')} .e-upload-files {
|
|
690
|
+
#{if(&, '&', '*')} .e-upload-file-list {
|
|
691
|
+
#{if(&, '&', '*')} .e-file-container {
|
|
692
|
+
height: $file-container-height;
|
|
693
|
+
margin-left: $file-container-left;
|
|
694
|
+
margin-right: $margin-rtl-smaller;
|
|
695
|
+
position: relative;
|
|
696
|
+
|
|
697
|
+
#{if(&, '&', '*')} .e-rtl-container {
|
|
698
|
+
direction: ltr;
|
|
699
|
+
float: $float-right;
|
|
700
|
+
width: $file-container-height;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
#{if(&, '&', '*')} .e-file-type {
|
|
704
|
+
float: $float-right;
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
#{if(&, '&', '*')} .e-file-name {
|
|
708
|
+
float: $float-right;
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
#{if(&, '&', '*')} .e-file-size {
|
|
712
|
+
direction: ltr;
|
|
713
|
+
float: $float-right;
|
|
714
|
+
position: relative;
|
|
715
|
+
text-align: right;
|
|
716
|
+
width: $file-container-height;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
#{if(&, '&', '*')} .e-upload-progress-wrap {
|
|
720
|
+
float: $float-right;
|
|
721
|
+
position: initial;
|
|
722
|
+
top: $progress-bar-wrap-top-smaller;
|
|
723
|
+
width: $progress-bar-width-rtl;
|
|
724
|
+
|
|
725
|
+
#{if(&, '&', '*')} .e-progress-bar-text {
|
|
726
|
+
float: $float-left;
|
|
727
|
+
right: $progress-text-rtl-smaller;
|
|
728
|
+
top: $rtl-progress-top;
|
|
729
|
+
}
|
|
730
|
+
}
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
#{if(&, '&', '*')} .e-file-remove-btn,
|
|
734
|
+
#{if(&, '&', '*')} .e-file-delete-btn,
|
|
735
|
+
#{if(&, '&', '*')} .e-file-abort-btn,
|
|
736
|
+
#{if(&, '&', '*')} .e-file-reload-btn,
|
|
737
|
+
#{if(&, '&', '*')} .e-file-pause-btn,
|
|
738
|
+
#{if(&, '&', '*')} .e-file-play-btn {
|
|
739
|
+
#{if(&, '&', '*')}.e-icons {
|
|
740
|
+
left: $left;
|
|
741
|
+
margin-left: $margin-rtl-smaller;
|
|
742
|
+
margin-right: $margin-rtl-smaller;
|
|
743
|
+
right: auto;
|
|
744
|
+
top: $remove-icon-rtl-top-smaller;
|
|
745
|
+
@if $skin-name == 'FluentUI' {
|
|
746
|
+
margin-left: $margin-icon-rtl-smaller;
|
|
747
|
+
margin-right: $margin-icon-rtl-smaller;
|
|
748
|
+
}
|
|
749
|
+
}
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
#{if(&, '&', '*')} .e-file-reload-btn {
|
|
753
|
+
#{if(&, '&', '*')}.e-icons {
|
|
754
|
+
left: $reload-btn-right;
|
|
755
|
+
right: auto;
|
|
756
|
+
}
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
#{if(&, '&', '*')} .e-file-play-btn,
|
|
760
|
+
#{if(&, '&', '*')} .e-file-reload-btn,
|
|
761
|
+
#{if(&, '&', '*')} .e-file-pause-btn {
|
|
762
|
+
#{if(&, '&', '*')}.e-icons {
|
|
763
|
+
left: $pause-play-button-right-value;
|
|
764
|
+
}
|
|
765
|
+
}
|
|
766
|
+
}
|
|
767
|
+
}
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
#{if(&, '&', '*')}.e-disabled {
|
|
771
|
+
#{if(&, '&', '*')} .e-file-drop {
|
|
772
|
+
color: $disabled-state;
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
#{if(&, '&', '*')} .e-upload-files {
|
|
776
|
+
.e-upload-file-list {
|
|
777
|
+
#{if(&, '&', '*')} .e-file-container .e-file-name,
|
|
778
|
+
#{if(&, '&', '*')} .e-file-container .e-file-type,
|
|
779
|
+
#{if(&, '&', '*')} .e-file-container .e-file-size,
|
|
780
|
+
#{if(&, '&', '*')} .e-file-container .e-file-status,
|
|
781
|
+
#{if(&, '&', '*')} .e-file-container .e-file-information {
|
|
782
|
+
color: $disabled-state;
|
|
783
|
+
}
|
|
784
|
+
}
|
|
785
|
+
}
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
.e-content-placeholder.e-upload.e-placeholder-upload {
|
|
789
|
+
background-size: 400px 65px;
|
|
790
|
+
min-height: 65px;
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
.e-bigger .e-content-placeholder.e-upload.e-placeholder-upload,
|
|
794
|
+
.e-bigger.e-content-placeholder.e-upload.e-placeholder-upload {
|
|
795
|
+
background-size: 400px 80px;
|
|
796
|
+
min-height: 80px;
|
|
797
|
+
}
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
.e-small {
|
|
801
|
+
.e-upload {
|
|
802
|
+
.e-file-select-wrap {
|
|
803
|
+
padding: $header-padding-small;
|
|
804
|
+
|
|
805
|
+
#{if(&, '&', '*')} .e-file-drop {
|
|
806
|
+
font-size: $drop-area-small-font-size;
|
|
807
|
+
margin-left: $drop-small-area-padding-left;
|
|
808
|
+
}
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
#{if(&, '&', '*')} .e-upload-files {
|
|
812
|
+
.e-upload-file-list {
|
|
813
|
+
min-height: $li-min-height-small;
|
|
814
|
+
|
|
815
|
+
.e-file-container .e-file-name {
|
|
816
|
+
font-size: $file-small-name-font-size;
|
|
817
|
+
padding-top: $file-small-name-padding-top;
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
.e-file-container .e-file-size {
|
|
821
|
+
font-size: $list-small-item-status-font-size;
|
|
822
|
+
padding: $file-small-size-padding;
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
.e-file-container .e-file-type {
|
|
826
|
+
font-size: $file-small-name-font-size;
|
|
827
|
+
padding-top: $file-small-name-padding-top;
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
.e-file-container .e-file-status,
|
|
831
|
+
.e-file-container .e-file-information {
|
|
832
|
+
padding-bottom: $file-small-name-padding-top;
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
.e-file-container .e-upload-progress-wrap {
|
|
836
|
+
padding-bottom: $progress-bar-bottom-paddding-small;
|
|
837
|
+
padding-top: $progress-bar-bottom-paddding-small;
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
.e-file-container {
|
|
841
|
+
@if $skin-name == 'FluentUI' {
|
|
842
|
+
margin-left: $list-item-margin-left-small;
|
|
843
|
+
}
|
|
844
|
+
}
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
#{if(&, '&', '*')} .e-file-remove-btn.e-icons,
|
|
848
|
+
#{if(&, '&', '*')} .e-file-delete-btn.e-icons,
|
|
849
|
+
#{if(&, '&', '*')} .e-file-abort-btn.e-icons,
|
|
850
|
+
#{if(&, '&', '*')} .e-file-reload-btn.e-icons,
|
|
851
|
+
#{if(&, '&', '*')} .e-file-play-btn.e-icons,
|
|
852
|
+
#{if(&, '&', '*')} .e-file-pause-btn.e-icons {
|
|
853
|
+
font-size: $remove-small-icon-font-size;
|
|
854
|
+
height: $remove-small-icon-height;
|
|
855
|
+
padding: $delete-small-icon-padding;
|
|
856
|
+
width: $remove-small-icon-width;
|
|
857
|
+
@if $skin-name == 'FluentUI' {
|
|
858
|
+
margin: $remove-icon-margin-small;
|
|
859
|
+
}
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
#{if(&, '&', '*')} .e-file-remove-btn.e-icons.e-disabled,
|
|
863
|
+
#{if(&, '&', '*')} .e-file-delete-btn.e-icons.e-disabled {
|
|
864
|
+
color: $disabled-state;
|
|
865
|
+
cursor: not-allowed;
|
|
866
|
+
opacity: .4;
|
|
867
|
+
pointer-events: none;
|
|
868
|
+
}
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
#{if(&, '&', '*')} .e-upload-actions {
|
|
872
|
+
.e-file-upload-btn {
|
|
873
|
+
@if $skin-name == 'FluentUI' {
|
|
874
|
+
margin: $footer-upload-buttons-margin-small;
|
|
875
|
+
}
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
.e-file-clear-btn {
|
|
879
|
+
@if $skin-name == 'FluentUI' {
|
|
880
|
+
margin: $footer-clear-buttons-margin-samll;
|
|
881
|
+
}
|
|
882
|
+
}
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
#{if(&, '&', '*')}.e-rtl {
|
|
886
|
+
#{if(&, '&', '*')} .e-file-select-wrap {
|
|
887
|
+
padding: $header-padding-rtl-small;
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
#{if(&, '&', '*')} .e-upload-actions {
|
|
891
|
+
.e-file-upload-btn {
|
|
892
|
+
@if $skin-name == 'FluentUI' {
|
|
893
|
+
margin: $footer-upload-buttons-margin-rtl-small;
|
|
894
|
+
}
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
.e-file-clear-btn {
|
|
898
|
+
@if $skin-name == 'FluentUI' {
|
|
899
|
+
margin: $footer-clear-buttons-margin-rtl-small;
|
|
900
|
+
}
|
|
901
|
+
}
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
#{if(&, '&', '*')} .e-upload-files {
|
|
905
|
+
#{if(&, '&', '*')} .e-upload-file-list {
|
|
906
|
+
#{if(&, '&', '*')} .e-file-remove-btn.e-icons,
|
|
907
|
+
#{if(&, '&', '*')} .e-file-delete-btn.e-icons,
|
|
908
|
+
#{if(&, '&', '*')} .e-file-abort-btn.e-icons,
|
|
909
|
+
#{if(&, '&', '*')} .e-file-reload-btn.e-icons,
|
|
910
|
+
#{if(&, '&', '*')} .e-file-play-btn.e-icons,
|
|
911
|
+
#{if(&, '&', '*')} .e-file-pause-btn.e-icons {
|
|
912
|
+
@if $skin-name == 'FluentUI' {
|
|
913
|
+
margin-left: $margin-icon-rtl-small;
|
|
914
|
+
margin-right: $margin-icon-rtl-small;
|
|
915
|
+
}
|
|
916
|
+
}
|
|
917
|
+
}
|
|
918
|
+
}
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
#{if(&, '&', '*')}.e-form-upload .e-upload-files {
|
|
922
|
+
#{if(&, '&', '*')} .e-upload-file-list {
|
|
923
|
+
min-height: $form-upload-small-file-list-height;
|
|
924
|
+
padding-bottom: $form-upload-small-file-list-padding-bottom;
|
|
925
|
+
padding-top: $form-upload-small-file-list-padding-top;
|
|
926
|
+
|
|
927
|
+
#{if(&, '&', '*')} .e-file-container {
|
|
928
|
+
top: 0;
|
|
929
|
+
|
|
930
|
+
#{if(&, '&', '*')} .e-hidden-input {
|
|
931
|
+
display: none;
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
#{if(&, '&', '*')} .e-file-name,
|
|
935
|
+
#{if(&, '&', '*')} .e-file-type {
|
|
936
|
+
line-height: $form-upload-small-file-name-line-height;
|
|
937
|
+
padding-top: $form-upload-small-file-name-padding;
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
#{if(&, '&', '*')} .e-file-name.e-error,
|
|
941
|
+
#{if(&, '&', '*')} .e-file-type.e-error,
|
|
942
|
+
#{if(&, '&', '*')} .e-file-status.e-error {
|
|
943
|
+
color: $upload-failure-color;
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
#{if(&, '&', '*')} .e-file-status,
|
|
947
|
+
#{if(&, '&', '*')} .e-file-information {
|
|
948
|
+
color: $file-size-color;
|
|
949
|
+
display: block;
|
|
950
|
+
font-size: $form-upload-small-file-status-font-size;
|
|
951
|
+
line-height: $form-upload-small-file-name-line-height;
|
|
952
|
+
padding-bottom: 0;
|
|
953
|
+
padding-top: $form-upload-small-file-name-padding;
|
|
954
|
+
position: relative;
|
|
955
|
+
}
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
#{if(&, '&', '*')}.e-file-invalid {
|
|
959
|
+
color: $upload-failure-color;
|
|
960
|
+
|
|
961
|
+
#{if(&, '&', '*')} .e-file-name,
|
|
962
|
+
#{if(&, '&', '*')} .e-file-type,
|
|
963
|
+
#{if(&, '&', '*')} .e-file-status {
|
|
964
|
+
color: $upload-failure-color;
|
|
965
|
+
}
|
|
966
|
+
}
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
#{if(&, '&', '*')} .e-file-remove-btn.e-icons,
|
|
970
|
+
#{if(&, '&', '*')} .e-file-delete-btn.e-icons,
|
|
971
|
+
#{if(&, '&', '*')} .e-file-abort-btn.e-icons,
|
|
972
|
+
#{if(&, '&', '*')} .e-file-reload-btn.e-icons,
|
|
973
|
+
#{if(&, '&', '*')} .e-file-play-btn.e-icons,
|
|
974
|
+
#{if(&, '&', '*')} .e-file-pause-btn.e-icons {
|
|
975
|
+
box-sizing: border-box;
|
|
976
|
+
top: $form-upload-small-remove-icon-top;
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
#{if(&, '&', '*')} .e-file-remove-btn.e-icons.e-disabled,
|
|
980
|
+
#{if(&, '&', '*')} .e-file-delete-btn.e-icons.e-disabled {
|
|
981
|
+
color: $disabled-state;
|
|
982
|
+
cursor: not-allowed;
|
|
983
|
+
opacity: .4;
|
|
984
|
+
pointer-events: none;
|
|
985
|
+
}
|
|
986
|
+
}
|
|
987
|
+
}
|
|
988
|
+
}
|
|
989
|
+
}
|