@syncfusion/ej2-angular-calendars 23.1.36-ngcc → 23.1.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/public_api.mjs +3 -0
- package/esm2020/src/calendar/calendar-all.module.mjs +29 -0
- package/esm2020/src/calendar/calendar.component.mjs +91 -0
- package/esm2020/src/calendar/calendar.module.mjs +25 -0
- package/esm2020/src/datepicker/datepicker-all.module.mjs +29 -0
- package/esm2020/src/datepicker/datepicker.component.mjs +99 -0
- package/esm2020/src/datepicker/datepicker.module.mjs +25 -0
- package/esm2020/src/daterangepicker/daterangepicker-all.module.mjs +23 -0
- package/esm2020/src/daterangepicker/daterangepicker.component.mjs +103 -0
- package/esm2020/src/daterangepicker/daterangepicker.module.mjs +34 -0
- package/esm2020/src/daterangepicker/presets.directive.mjs +58 -0
- package/esm2020/src/datetimepicker/datetimepicker-all.module.mjs +23 -0
- package/esm2020/src/datetimepicker/datetimepicker.component.mjs +99 -0
- package/esm2020/src/datetimepicker/datetimepicker.module.mjs +25 -0
- package/esm2020/src/index.mjs +18 -0
- package/esm2020/src/timepicker/timepicker-all.module.mjs +23 -0
- package/esm2020/src/timepicker/timepicker.component.mjs +92 -0
- package/esm2020/src/timepicker/timepicker.module.mjs +25 -0
- package/esm2020/syncfusion-ej2-angular-calendars.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-calendars.mjs +737 -0
- package/fesm2015/syncfusion-ej2-angular-calendars.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-calendars.mjs +737 -0
- package/fesm2020/syncfusion-ej2-angular-calendars.mjs.map +1 -0
- package/package.json +26 -12
- package/src/calendar/calendar-all.module.d.ts +6 -0
- package/src/calendar/calendar.component.d.ts +3 -0
- package/src/calendar/calendar.module.d.ts +6 -0
- package/src/datepicker/datepicker-all.module.d.ts +6 -0
- package/src/datepicker/datepicker.component.d.ts +3 -0
- package/src/datepicker/datepicker.module.d.ts +6 -0
- package/src/daterangepicker/daterangepicker-all.module.d.ts +6 -0
- package/src/daterangepicker/daterangepicker.component.d.ts +3 -0
- package/src/daterangepicker/daterangepicker.module.d.ts +7 -0
- package/src/daterangepicker/presets.directive.d.ts +5 -0
- package/src/datetimepicker/datetimepicker-all.module.d.ts +6 -0
- package/src/datetimepicker/datetimepicker.component.d.ts +3 -0
- package/src/datetimepicker/datetimepicker.module.d.ts +6 -0
- package/src/timepicker/timepicker-all.module.d.ts +6 -0
- package/src/timepicker/timepicker.component.d.ts +3 -0
- package/src/timepicker/timepicker.module.d.ts +6 -0
- package/styles/calendar/_all.scss +2 -0
- package/styles/calendar/_bootstrap-dark-definition.scss +228 -0
- package/styles/calendar/_bootstrap-definition.scss +228 -0
- package/styles/calendar/_bootstrap4-definition.scss +228 -0
- package/styles/calendar/_bootstrap5-dark-definition.scss +1 -0
- package/styles/calendar/_bootstrap5-definition.scss +250 -0
- package/styles/calendar/_fabric-dark-definition.scss +192 -0
- package/styles/calendar/_fabric-definition.scss +190 -0
- package/styles/calendar/_fluent-dark-definition.scss +1 -0
- package/styles/calendar/_fluent-definition.scss +252 -0
- package/styles/calendar/_fusionnew-definition.scss +250 -0
- package/styles/calendar/_highcontrast-definition.scss +189 -0
- package/styles/calendar/_highcontrast-light-definition.scss +192 -0
- package/styles/calendar/_layout.scss +786 -0
- package/styles/calendar/_material-dark-definition.scss +194 -0
- package/styles/calendar/_material-definition.scss +189 -0
- package/styles/calendar/_material3-dark-definition.scss +1 -0
- package/styles/calendar/_material3-definition.scss +195 -0
- package/styles/calendar/_tailwind-dark-definition.scss +1 -0
- package/styles/calendar/_tailwind-definition.scss +262 -0
- package/styles/calendar/_theme.scss +534 -0
- package/styles/calendar/bootstrap-dark.scss +5 -1
- package/styles/calendar/bootstrap.scss +5 -1
- package/styles/calendar/bootstrap4.scss +5 -1
- package/styles/calendar/bootstrap5-dark.scss +5 -1
- package/styles/calendar/bootstrap5.scss +5 -1
- package/styles/calendar/fabric-dark.scss +5 -1
- package/styles/calendar/fabric.scss +5 -1
- package/styles/calendar/fluent-dark.scss +5 -1
- package/styles/calendar/fluent.scss +5 -1
- package/styles/calendar/highcontrast-light.scss +5 -1
- package/styles/calendar/highcontrast.scss +5 -1
- package/styles/calendar/icons/_bootstrap-dark.scss +13 -0
- package/styles/calendar/icons/_bootstrap.scss +13 -0
- package/styles/calendar/icons/_bootstrap4.scss +13 -0
- package/styles/calendar/icons/_bootstrap5-dark.scss +1 -0
- package/styles/calendar/icons/_bootstrap5.scss +13 -0
- package/styles/calendar/icons/_fabric-dark.scss +13 -0
- package/styles/calendar/icons/_fabric.scss +13 -0
- package/styles/calendar/icons/_fluent-dark.scss +1 -0
- package/styles/calendar/icons/_fluent.scss +13 -0
- package/styles/calendar/icons/_fusionnew.scss +13 -0
- package/styles/calendar/icons/_highcontrast-light.scss +13 -0
- package/styles/calendar/icons/_highcontrast.scss +13 -0
- package/styles/calendar/icons/_material-dark.scss +13 -0
- package/styles/calendar/icons/_material.scss +13 -0
- package/styles/calendar/icons/_material3-dark.scss +1 -0
- package/styles/calendar/icons/_material3.scss +13 -0
- package/styles/calendar/icons/_tailwind-dark.scss +1 -0
- package/styles/calendar/icons/_tailwind.scss +13 -0
- package/styles/calendar/material-dark.scss +5 -1
- package/styles/calendar/material.scss +5 -1
- package/styles/calendar/material3-dark.scss +5 -1
- package/styles/calendar/material3.scss +5 -1
- package/styles/calendar/tailwind-dark.scss +5 -1
- package/styles/calendar/tailwind.scss +5 -1
- package/styles/datepicker/_all.scss +2 -0
- package/styles/datepicker/_bootstrap-dark-definition.scss +97 -0
- package/styles/datepicker/_bootstrap-definition.scss +96 -0
- package/styles/datepicker/_bootstrap4-definition.scss +101 -0
- package/styles/datepicker/_bootstrap5-dark-definition.scss +1 -0
- package/styles/datepicker/_bootstrap5-definition.scss +107 -0
- package/styles/datepicker/_fabric-dark-definition.scss +98 -0
- package/styles/datepicker/_fabric-definition.scss +95 -0
- package/styles/datepicker/_fluent-dark-definition.scss +1 -0
- package/styles/datepicker/_fluent-definition.scss +107 -0
- package/styles/datepicker/_fusionnew-definition.scss +107 -0
- package/styles/datepicker/_highcontrast-definition.scss +96 -0
- package/styles/datepicker/_highcontrast-light-definition.scss +99 -0
- package/styles/datepicker/_layout.scss +434 -0
- package/styles/datepicker/_material-dark-definition.scss +103 -0
- package/styles/datepicker/_material-definition.scss +100 -0
- package/styles/datepicker/_material3-dark-definition.scss +1 -0
- package/styles/datepicker/_material3-definition.scss +116 -0
- package/styles/datepicker/_tailwind-dark-definition.scss +1 -0
- package/styles/datepicker/_tailwind-definition.scss +105 -0
- package/styles/datepicker/_theme.scss +53 -0
- package/styles/datepicker/bootstrap-dark.scss +7 -1
- package/styles/datepicker/bootstrap.scss +7 -1
- package/styles/datepicker/bootstrap4.scss +7 -1
- package/styles/datepicker/bootstrap5-dark.scss +7 -1
- package/styles/datepicker/bootstrap5.scss +7 -1
- package/styles/datepicker/fabric-dark.scss +7 -1
- package/styles/datepicker/fabric.scss +7 -1
- package/styles/datepicker/fluent-dark.scss +7 -1
- package/styles/datepicker/fluent.scss +7 -1
- package/styles/datepicker/highcontrast-light.scss +7 -1
- package/styles/datepicker/highcontrast.scss +7 -1
- package/styles/datepicker/icons/_bootstrap-dark.scss +73 -0
- package/styles/datepicker/icons/_bootstrap.scss +72 -0
- package/styles/datepicker/icons/_bootstrap4.scss +76 -0
- package/styles/datepicker/icons/_bootstrap5-dark.scss +1 -0
- package/styles/datepicker/icons/_bootstrap5.scss +76 -0
- package/styles/datepicker/icons/_fabric-dark.scss +65 -0
- package/styles/datepicker/icons/_fabric.scss +65 -0
- package/styles/datepicker/icons/_fluent-dark.scss +1 -0
- package/styles/datepicker/icons/_fluent.scss +76 -0
- package/styles/datepicker/icons/_fusionnew.scss +76 -0
- package/styles/datepicker/icons/_highcontrast-light.scss +72 -0
- package/styles/datepicker/icons/_highcontrast.scss +72 -0
- package/styles/datepicker/icons/_material-dark.scss +99 -0
- package/styles/datepicker/icons/_material.scss +99 -0
- package/styles/datepicker/icons/_material3-dark.scss +1 -0
- package/styles/datepicker/icons/_material3.scss +79 -0
- package/styles/datepicker/icons/_tailwind-dark.scss +1 -0
- package/styles/datepicker/icons/_tailwind.scss +76 -0
- package/styles/datepicker/material-dark.scss +7 -1
- package/styles/datepicker/material.scss +7 -1
- package/styles/datepicker/material3-dark.scss +7 -1
- package/styles/datepicker/material3.scss +7 -1
- package/styles/datepicker/tailwind-dark.scss +7 -1
- package/styles/datepicker/tailwind.scss +7 -1
- package/styles/daterangepicker/_all.scss +2 -0
- package/styles/daterangepicker/_bootstrap-dark-definition.scss +258 -0
- package/styles/daterangepicker/_bootstrap-definition.scss +258 -0
- package/styles/daterangepicker/_bootstrap4-definition.scss +268 -0
- package/styles/daterangepicker/_bootstrap5-dark-definition.scss +1 -0
- package/styles/daterangepicker/_bootstrap5-definition.scss +296 -0
- package/styles/daterangepicker/_fabric-dark-definition.scss +261 -0
- package/styles/daterangepicker/_fabric-definition.scss +258 -0
- package/styles/daterangepicker/_fluent-dark-definition.scss +1 -0
- package/styles/daterangepicker/_fluent-definition.scss +305 -0
- package/styles/daterangepicker/_fusionnew-definition.scss +295 -0
- package/styles/daterangepicker/_highcontrast-definition.scss +258 -0
- package/styles/daterangepicker/_highcontrast-light-definition.scss +261 -0
- package/styles/daterangepicker/_layout.scss +1031 -0
- package/styles/daterangepicker/_material-dark-definition.scss +266 -0
- package/styles/daterangepicker/_material-definition.scss +266 -0
- package/styles/daterangepicker/_material3-dark-definition.scss +1 -0
- package/styles/daterangepicker/_material3-definition.scss +281 -0
- package/styles/daterangepicker/_tailwind-dark-definition.scss +1 -0
- package/styles/daterangepicker/_tailwind-definition.scss +287 -0
- package/styles/daterangepicker/_theme.scss +455 -0
- package/styles/daterangepicker/bootstrap-dark.scss +7 -1
- package/styles/daterangepicker/bootstrap.scss +7 -1
- package/styles/daterangepicker/bootstrap4.scss +7 -1
- package/styles/daterangepicker/bootstrap5-dark.scss +7 -1
- package/styles/daterangepicker/bootstrap5.scss +7 -1
- package/styles/daterangepicker/fabric-dark.scss +7 -1
- package/styles/daterangepicker/fabric.scss +7 -1
- package/styles/daterangepicker/fluent-dark.scss +7 -1
- package/styles/daterangepicker/fluent.scss +7 -1
- package/styles/daterangepicker/highcontrast-light.scss +7 -1
- package/styles/daterangepicker/highcontrast.scss +7 -1
- package/styles/daterangepicker/icons/_bootstrap-dark.scss +85 -0
- package/styles/daterangepicker/icons/_bootstrap.scss +85 -0
- package/styles/daterangepicker/icons/_bootstrap4.scss +94 -0
- package/styles/daterangepicker/icons/_bootstrap5-dark.scss +1 -0
- package/styles/daterangepicker/icons/_bootstrap5.scss +92 -0
- package/styles/daterangepicker/icons/_fabric-dark.scss +85 -0
- package/styles/daterangepicker/icons/_fabric.scss +85 -0
- package/styles/daterangepicker/icons/_fluent-dark.scss +1 -0
- package/styles/daterangepicker/icons/_fluent.scss +92 -0
- package/styles/daterangepicker/icons/_fusionnew.scss +92 -0
- package/styles/daterangepicker/icons/_highcontrast-light.scss +85 -0
- package/styles/daterangepicker/icons/_highcontrast.scss +85 -0
- package/styles/daterangepicker/icons/_material-dark.scss +119 -0
- package/styles/daterangepicker/icons/_material.scss +119 -0
- package/styles/daterangepicker/icons/_material3-dark.scss +1 -0
- package/styles/daterangepicker/icons/_material3.scss +129 -0
- package/styles/daterangepicker/icons/_tailwind-dark.scss +1 -0
- package/styles/daterangepicker/icons/_tailwind.scss +92 -0
- package/styles/daterangepicker/material-dark.scss +7 -1
- package/styles/daterangepicker/material.scss +7 -1
- package/styles/daterangepicker/material3-dark.scss +7 -1
- package/styles/daterangepicker/material3.scss +7 -1
- package/styles/daterangepicker/tailwind-dark.scss +7 -1
- package/styles/daterangepicker/tailwind.scss +7 -1
- package/styles/datetimepicker/_all.scss +2 -0
- package/styles/datetimepicker/_bootstrap-dark-definition.scss +60 -0
- package/styles/datetimepicker/_bootstrap-definition.scss +59 -0
- package/styles/datetimepicker/_bootstrap4-definition.scss +65 -0
- package/styles/datetimepicker/_bootstrap5-dark-definition.scss +1 -0
- package/styles/datetimepicker/_bootstrap5-definition.scss +65 -0
- package/styles/datetimepicker/_fabric-dark-definition.scss +60 -0
- package/styles/datetimepicker/_fabric-definition.scss +57 -0
- package/styles/datetimepicker/_fluent-dark-definition.scss +1 -0
- package/styles/datetimepicker/_fluent-definition.scss +65 -0
- package/styles/datetimepicker/_fusionnew-definition.scss +65 -0
- package/styles/datetimepicker/_highcontrast-definition.scss +57 -0
- package/styles/datetimepicker/_highcontrast-light-definition.scss +60 -0
- package/styles/datetimepicker/_layout.scss +238 -0
- package/styles/datetimepicker/_material-dark-definition.scss +64 -0
- package/styles/datetimepicker/_material-definition.scss +62 -0
- package/styles/datetimepicker/_material3-dark-definition.scss +1 -0
- package/styles/datetimepicker/_material3-definition.scss +71 -0
- package/styles/datetimepicker/_tailwind-dark-definition.scss +1 -0
- package/styles/datetimepicker/_tailwind-definition.scss +65 -0
- package/styles/datetimepicker/_theme.scss +70 -0
- package/styles/datetimepicker/bootstrap-dark.scss +8 -1
- package/styles/datetimepicker/bootstrap.scss +8 -1
- package/styles/datetimepicker/bootstrap4.scss +8 -1
- package/styles/datetimepicker/bootstrap5-dark.scss +8 -1
- package/styles/datetimepicker/bootstrap5.scss +8 -1
- package/styles/datetimepicker/fabric-dark.scss +8 -1
- package/styles/datetimepicker/fabric.scss +8 -1
- package/styles/datetimepicker/fluent-dark.scss +8 -1
- package/styles/datetimepicker/fluent.scss +8 -1
- package/styles/datetimepicker/highcontrast-light.scss +8 -1
- package/styles/datetimepicker/highcontrast.scss +8 -1
- package/styles/datetimepicker/icons/_bootstrap-dark.scss +11 -0
- package/styles/datetimepicker/icons/_bootstrap.scss +11 -0
- package/styles/datetimepicker/icons/_bootstrap4.scss +11 -0
- package/styles/datetimepicker/icons/_bootstrap5-dark.scss +1 -0
- package/styles/datetimepicker/icons/_bootstrap5.scss +11 -0
- package/styles/datetimepicker/icons/_fabric-dark.scss +11 -0
- package/styles/datetimepicker/icons/_fabric.scss +11 -0
- package/styles/datetimepicker/icons/_fluent-dark.scss +1 -0
- package/styles/datetimepicker/icons/_fluent.scss +11 -0
- package/styles/datetimepicker/icons/_fusionnew.scss +11 -0
- package/styles/datetimepicker/icons/_highcontrast-light.scss +11 -0
- package/styles/datetimepicker/icons/_highcontrast.scss +11 -0
- package/styles/datetimepicker/icons/_material-dark.scss +53 -0
- package/styles/datetimepicker/icons/_material.scss +62 -0
- package/styles/datetimepicker/icons/_material3-dark.scss +1 -0
- package/styles/datetimepicker/icons/_material3.scss +11 -0
- package/styles/datetimepicker/icons/_tailwind-dark.scss +1 -0
- package/styles/datetimepicker/icons/_tailwind.scss +11 -0
- package/styles/datetimepicker/material-dark.scss +8 -1
- package/styles/datetimepicker/material.scss +8 -1
- package/styles/datetimepicker/material3-dark.scss +8 -1
- package/styles/datetimepicker/material3.scss +8 -1
- package/styles/datetimepicker/tailwind-dark.scss +8 -1
- package/styles/datetimepicker/tailwind.scss +8 -1
- package/styles/material3-dark.css +0 -220
- package/styles/material3-dark.scss +1 -0
- package/styles/material3.css +0 -444
- package/styles/material3.scss +1 -0
- package/styles/timepicker/_all.scss +2 -0
- package/styles/timepicker/_bootstrap-dark-definition.scss +80 -0
- package/styles/timepicker/_bootstrap-definition.scss +77 -0
- package/styles/timepicker/_bootstrap4-definition.scss +85 -0
- package/styles/timepicker/_bootstrap5-dark-definition.scss +1 -0
- package/styles/timepicker/_bootstrap5-definition.scss +86 -0
- package/styles/timepicker/_fabric-dark-definition.scss +80 -0
- package/styles/timepicker/_fabric-definition.scss +77 -0
- package/styles/timepicker/_fluent-dark-definition.scss +1 -0
- package/styles/timepicker/_fluent-definition.scss +86 -0
- package/styles/timepicker/_fusionnew-definition.scss +86 -0
- package/styles/timepicker/_highcontrast-definition.scss +77 -0
- package/styles/timepicker/_highcontrast-light-definition.scss +80 -0
- package/styles/timepicker/_layout.scss +303 -0
- package/styles/timepicker/_material-dark-definition.scss +84 -0
- package/styles/timepicker/_material-definition.scss +81 -0
- package/styles/timepicker/_material3-dark-definition.scss +1 -0
- package/styles/timepicker/_material3-definition.scss +99 -0
- package/styles/timepicker/_tailwind-dark-definition.scss +1 -0
- package/styles/timepicker/_tailwind-definition.scss +84 -0
- package/styles/timepicker/_theme.scss +114 -0
- package/styles/timepicker/bootstrap-dark.scss +6 -1
- package/styles/timepicker/bootstrap.scss +6 -1
- package/styles/timepicker/bootstrap4.scss +6 -1
- package/styles/timepicker/bootstrap5-dark.scss +6 -1
- package/styles/timepicker/bootstrap5.scss +6 -1
- package/styles/timepicker/fabric-dark.scss +6 -1
- package/styles/timepicker/fabric.scss +6 -1
- package/styles/timepicker/fluent-dark.scss +6 -1
- package/styles/timepicker/fluent.scss +6 -1
- package/styles/timepicker/highcontrast-light.scss +6 -1
- package/styles/timepicker/highcontrast.scss +6 -1
- package/styles/timepicker/icons/_bootstrap-dark.scss +23 -0
- package/styles/timepicker/icons/_bootstrap.scss +24 -0
- package/styles/timepicker/icons/_bootstrap4.scss +24 -0
- package/styles/timepicker/icons/_bootstrap5-dark.scss +1 -0
- package/styles/timepicker/icons/_bootstrap5.scss +24 -0
- package/styles/timepicker/icons/_fabric-dark.scss +24 -0
- package/styles/timepicker/icons/_fabric.scss +24 -0
- package/styles/timepicker/icons/_fluent-dark.scss +1 -0
- package/styles/timepicker/icons/_fluent.scss +24 -0
- package/styles/timepicker/icons/_fusionnew.scss +24 -0
- package/styles/timepicker/icons/_highcontrast-light.scss +24 -0
- package/styles/timepicker/icons/_highcontrast.scss +24 -0
- package/styles/timepicker/icons/_material-dark.scss +52 -0
- package/styles/timepicker/icons/_material.scss +54 -0
- package/styles/timepicker/icons/_material3-dark.scss +1 -0
- package/styles/timepicker/icons/_material3.scss +24 -0
- package/styles/timepicker/icons/_tailwind-dark.scss +1 -0
- package/styles/timepicker/icons/_tailwind.scss +24 -0
- package/styles/timepicker/material-dark.scss +6 -1
- package/styles/timepicker/material.scss +6 -1
- package/styles/timepicker/material3-dark.scss +6 -1
- package/styles/timepicker/material3.scss +6 -1
- package/styles/timepicker/tailwind-dark.scss +6 -1
- package/styles/timepicker/tailwind.scss +6 -1
- package/syncfusion-ej2-angular-calendars.d.ts +5 -0
- package/@syncfusion/ej2-angular-calendars.es5.js +0 -1048
- package/@syncfusion/ej2-angular-calendars.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-calendars.js +0 -981
- package/@syncfusion/ej2-angular-calendars.js.map +0 -1
- package/CHANGELOG.md +0 -1334
- package/dist/ej2-angular-calendars.umd.js +0 -1093
- package/dist/ej2-angular-calendars.umd.js.map +0 -1
- package/dist/ej2-angular-calendars.umd.min.js +0 -11
- package/dist/ej2-angular-calendars.umd.min.js.map +0 -1
- package/ej2-angular-calendars.d.ts +0 -9
- package/ej2-angular-calendars.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
@include export-module('daterangepicker-bootstrap-icons') {
|
|
2
|
+
|
|
3
|
+
/*! component icons */
|
|
4
|
+
.e-input-group-icon.e-range-icon,
|
|
5
|
+
#{if(&, '&', '*')}.e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
6
|
+
font-size: $range-icon-font-size;
|
|
7
|
+
margin: $range-icon-margin;
|
|
8
|
+
outline: none;
|
|
9
|
+
|
|
10
|
+
#{if(&, '&', '*')}::before {
|
|
11
|
+
content: '\e243';
|
|
12
|
+
font-family: 'e-icons';
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
#{if(&, '&', '*')}:focus {
|
|
16
|
+
background: $range-icon-hover-color;
|
|
17
|
+
border-radius: $range-icon-border-radius;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.e-daterangepicker {
|
|
22
|
+
#{if(&, '&', '*')} .e-calendar .e-header .e-date-icon-next::before {
|
|
23
|
+
content: '\e913';
|
|
24
|
+
}
|
|
25
|
+
#{if(&, '&', '*')} .e-calendar .e-header .e-date-icon-prev::before {
|
|
26
|
+
content: '\e904';
|
|
27
|
+
}
|
|
28
|
+
#{if(&, '&', '*')} .e-change-icon::before {
|
|
29
|
+
content: '\e85f';
|
|
30
|
+
}
|
|
31
|
+
#{if(&, '&', '*')} .e-calendar.e-rtl .e-header .e-date-icon-next::before {
|
|
32
|
+
content: '\e98f';
|
|
33
|
+
}
|
|
34
|
+
#{if(&, '&', '*')} .e-calendar.e-rtl .e-header .e-date-icon-prev::before {
|
|
35
|
+
content: '\e85c';
|
|
36
|
+
}
|
|
37
|
+
#{if(&, '&', '*')}.e-rtl .e-start-end .e-change-icon::before {
|
|
38
|
+
content: '\e85b';
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.e-bigger {
|
|
43
|
+
#{if(&, '&', '*')} .e-input-group-icon.e-range-icon,
|
|
44
|
+
#{if(&, '&', '*')}.e-control-wrapper .e-input-group-icon.e-range-icon,
|
|
45
|
+
#{if(&, '&', '*')} .e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
46
|
+
font-size: $range-bigger-icon-font-size;
|
|
47
|
+
margin: $range-icon-bigger-margin;
|
|
48
|
+
outline: none;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
// mouse small icon
|
|
53
|
+
.e-small .e-input-group-icon.e-range-icon,
|
|
54
|
+
#{if(&, '&', '*')}.e-control-wrapper.e-small .e-input-group-icon.e-range-icon,
|
|
55
|
+
#{if(&, '&', '*')}.e-small .e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
56
|
+
font-size: $range-small-icon-font-size;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// Touch small icon
|
|
60
|
+
.e-small.e-bigger .e-input-group-icon.e-range-icon,
|
|
61
|
+
#{if(&, '&', '*')}.e-control-wrapper.e-small.e-bigger .e-input-group-icon.e-range-icon,
|
|
62
|
+
#{if(&, '&', '*')}.e-small.e-bigger .e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
63
|
+
font-size: $range-bigger-small-icon-font-size;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.e-daterangepick-mob-popup-wrap {
|
|
67
|
+
|
|
68
|
+
#{if(&, '&', '*')} .e-daterangepicker.e-popup-expand {
|
|
69
|
+
|
|
70
|
+
#{if(&, '&', '*')} .e-range-header,
|
|
71
|
+
#{if(&, '&', '*')} .e-model-header {
|
|
72
|
+
|
|
73
|
+
#{if(&, '&', '*')} .e-popup-close::before {
|
|
74
|
+
content: '\e7fc';
|
|
75
|
+
font-family: 'e-icons';
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
#{if(&, '&', '*')} .e-apply::before {
|
|
79
|
+
content: '\e7ff';
|
|
80
|
+
font-family: 'e-icons';
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
@include export-module('daterangepicker-bootstrap4-icons') {
|
|
2
|
+
|
|
3
|
+
/*! component icons */
|
|
4
|
+
.e-input-group-icon.e-range-icon,
|
|
5
|
+
#{if(&, '&', '*')}.e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
6
|
+
border-bottom-right-radius: $range-icon-bottom-right-radius;
|
|
7
|
+
@if $skin-name == 'bootstrap4' {
|
|
8
|
+
border-right: $range-control-border-right;
|
|
9
|
+
}
|
|
10
|
+
border-top-right-radius: $range-icon-top-right-radius;
|
|
11
|
+
font-size: $range-icon-font-size;
|
|
12
|
+
margin: $range-icon-margin;
|
|
13
|
+
min-height: $range-icon-container-min-height;
|
|
14
|
+
min-width: $range-icon-container-min-width;
|
|
15
|
+
outline: none;
|
|
16
|
+
|
|
17
|
+
#{if(&, '&', '*')}::before {
|
|
18
|
+
content: '\e7d7';
|
|
19
|
+
font-family: 'e-icons';
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
#{if(&, '&', '*')}:focus {
|
|
23
|
+
background: $range-icon-hover-color;
|
|
24
|
+
border-radius: $range-icon-border-radius;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.e-daterangepicker {
|
|
29
|
+
#{if(&, '&', '*')} .e-calendar .e-header .e-date-icon-next::before {
|
|
30
|
+
content: '\e76a';
|
|
31
|
+
}
|
|
32
|
+
#{if(&, '&', '*')} .e-calendar .e-header .e-date-icon-prev::before {
|
|
33
|
+
content: '\e70d';
|
|
34
|
+
}
|
|
35
|
+
#{if(&, '&', '*')} .e-change-icon::before {
|
|
36
|
+
content: '\e7ce';
|
|
37
|
+
}
|
|
38
|
+
#{if(&, '&', '*')} .e-calendar.e-rtl .e-header .e-date-icon-next::before {
|
|
39
|
+
content: '\e70d';
|
|
40
|
+
}
|
|
41
|
+
#{if(&, '&', '*')} .e-calendar.e-rtl .e-header .e-date-icon-prev::before {
|
|
42
|
+
content: '\e76a';
|
|
43
|
+
}
|
|
44
|
+
#{if(&, '&', '*')}.e-rtl .e-start-end .e-change-icon::before {
|
|
45
|
+
content: '\e7c1';
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.e-bigger {
|
|
50
|
+
#{if(&, '&', '*')} .e-input-group-icon.e-range-icon,
|
|
51
|
+
#{if(&, '&', '*')}.e-control-wrapper .e-input-group-icon.e-range-icon,
|
|
52
|
+
#{if(&, '&', '*')} .e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
53
|
+
font-size: $range-bigger-icon-font-size;
|
|
54
|
+
margin: $range-icon-bigger-margin;
|
|
55
|
+
min-height: $range-bigger-icon-container-min-height;
|
|
56
|
+
min-width: $range-bigger-icon-container-min-width;
|
|
57
|
+
outline: none;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
// mouse small icon
|
|
62
|
+
.e-small .e-input-group-icon.e-range-icon,
|
|
63
|
+
#{if(&, '&', '*')}.e-control-wrapper.e-small .e-input-group-icon.e-range-icon,
|
|
64
|
+
#{if(&, '&', '*')}.e-small .e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
65
|
+
font-size: $range-small-icon-font-size;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
// Touch small icon
|
|
69
|
+
.e-small.e-bigger .e-input-group-icon.e-range-icon,
|
|
70
|
+
#{if(&, '&', '*')}.e-control-wrapper.e-small.e-bigger .e-input-group-icon.e-range-icon,
|
|
71
|
+
#{if(&, '&', '*')}.e-small.e-bigger .e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
72
|
+
font-size: $range-bigger-small-icon-font-size;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.e-daterangepick-mob-popup-wrap {
|
|
76
|
+
|
|
77
|
+
#{if(&, '&', '*')} .e-daterangepicker.e-popup-expand {
|
|
78
|
+
|
|
79
|
+
#{if(&, '&', '*')} .e-range-header,
|
|
80
|
+
#{if(&, '&', '*')} .e-model-header {
|
|
81
|
+
|
|
82
|
+
#{if(&, '&', '*')} .e-popup-close::before {
|
|
83
|
+
content: '\e745';
|
|
84
|
+
font-family: 'e-icons';
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
#{if(&, '&', '*')} .e-apply::before {
|
|
88
|
+
content: '\e718';
|
|
89
|
+
font-family: 'e-icons';
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './bootstrap5.scss';
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
@include export-module('daterangepicker-bootstrap5-icons') {
|
|
2
|
+
|
|
3
|
+
/*! component icons */
|
|
4
|
+
.e-input-group-icon.e-range-icon,
|
|
5
|
+
#{if(&, '&', '*')}.e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
6
|
+
border-bottom-right-radius: $range-icon-bottom-right-radius;
|
|
7
|
+
border-right: $range-control-border-right;
|
|
8
|
+
border-top-right-radius: $range-icon-top-right-radius;
|
|
9
|
+
font-size: $range-icon-font-size;
|
|
10
|
+
margin: $range-icon-margin;
|
|
11
|
+
min-height: $range-icon-container-min-height;
|
|
12
|
+
min-width: $range-icon-container-min-width;
|
|
13
|
+
outline: none;
|
|
14
|
+
|
|
15
|
+
#{if(&, '&', '*')}::before {
|
|
16
|
+
content: '\e74c';
|
|
17
|
+
font-family: 'e-icons';
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
#{if(&, '&', '*')}:focus {
|
|
21
|
+
background: $range-icon-hover-color;
|
|
22
|
+
border-radius: $range-icon-border-radius;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.e-daterangepicker {
|
|
27
|
+
#{if(&, '&', '*')} .e-calendar .e-header .e-date-icon-next::before {
|
|
28
|
+
content: '\e748';
|
|
29
|
+
}
|
|
30
|
+
#{if(&, '&', '*')} .e-calendar .e-header .e-date-icon-prev::before {
|
|
31
|
+
content: '\e765';
|
|
32
|
+
}
|
|
33
|
+
#{if(&, '&', '*')} .e-change-icon::before {
|
|
34
|
+
content: '\e7f9';
|
|
35
|
+
}
|
|
36
|
+
#{if(&, '&', '*')} .e-calendar.e-rtl .e-header .e-date-icon-next::before {
|
|
37
|
+
content: '\e765';
|
|
38
|
+
}
|
|
39
|
+
#{if(&, '&', '*')} .e-calendar.e-rtl .e-header .e-date-icon-prev::before {
|
|
40
|
+
content: '\e748';
|
|
41
|
+
}
|
|
42
|
+
#{if(&, '&', '*')}.e-rtl .e-start-end .e-change-icon::before {
|
|
43
|
+
content: '\e773';
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.e-bigger {
|
|
48
|
+
#{if(&, '&', '*')} .e-input-group-icon.e-range-icon,
|
|
49
|
+
#{if(&, '&', '*')}.e-control-wrapper .e-input-group-icon.e-range-icon,
|
|
50
|
+
#{if(&, '&', '*')} .e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
51
|
+
font-size: $range-bigger-icon-font-size;
|
|
52
|
+
margin: $range-icon-bigger-margin;
|
|
53
|
+
min-height: $range-bigger-icon-container-min-height;
|
|
54
|
+
min-width: $range-bigger-icon-container-min-width;
|
|
55
|
+
outline: none;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// mouse small icon
|
|
60
|
+
.e-small .e-input-group-icon.e-range-icon,
|
|
61
|
+
#{if(&, '&', '*')}.e-control-wrapper.e-small .e-input-group-icon.e-range-icon,
|
|
62
|
+
#{if(&, '&', '*')}.e-small .e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
63
|
+
font-size: $range-small-icon-font-size;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
// Touch small icon
|
|
67
|
+
.e-small.e-bigger .e-input-group-icon.e-range-icon,
|
|
68
|
+
#{if(&, '&', '*')}.e-control-wrapper.e-small.e-bigger .e-input-group-icon.e-range-icon,
|
|
69
|
+
#{if(&, '&', '*')}.e-small.e-bigger .e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
70
|
+
font-size: $range-bigger-small-icon-font-size;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.e-daterangepick-mob-popup-wrap {
|
|
74
|
+
|
|
75
|
+
#{if(&, '&', '*')} .e-daterangepicker.e-popup-expand {
|
|
76
|
+
|
|
77
|
+
#{if(&, '&', '*')} .e-range-header,
|
|
78
|
+
#{if(&, '&', '*')} .e-model-header {
|
|
79
|
+
|
|
80
|
+
#{if(&, '&', '*')} .e-popup-close::before {
|
|
81
|
+
content: '\e7e7';
|
|
82
|
+
font-family: 'e-icons';
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
#{if(&, '&', '*')} .e-apply::before {
|
|
86
|
+
content: '\e774';
|
|
87
|
+
font-family: 'e-icons';
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
@include export-module('daterangepicker-fabric-icons') {
|
|
2
|
+
|
|
3
|
+
/*! component icons */
|
|
4
|
+
.e-input-group-icon.e-range-icon,
|
|
5
|
+
#{if(&, '&', '*')}.e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
6
|
+
font-size: $range-icon-font-size;
|
|
7
|
+
margin: $range-icon-margin;
|
|
8
|
+
outline: none;
|
|
9
|
+
|
|
10
|
+
#{if(&, '&', '*')}::before {
|
|
11
|
+
content: '\e244';
|
|
12
|
+
font-family: 'e-icons';
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
#{if(&, '&', '*')}:focus {
|
|
16
|
+
background: $range-icon-hover-color;
|
|
17
|
+
border-radius: $range-icon-border-radius;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.e-daterangepicker {
|
|
22
|
+
#{if(&, '&', '*')} .e-calendar .e-header .e-date-icon-next::before {
|
|
23
|
+
content: '\e85c';
|
|
24
|
+
}
|
|
25
|
+
#{if(&, '&', '*')} .e-calendar .e-header .e-date-icon-prev::before {
|
|
26
|
+
content: '\e98f';
|
|
27
|
+
}
|
|
28
|
+
#{if(&, '&', '*')} .e-change-icon::before {
|
|
29
|
+
content: '\e85f';
|
|
30
|
+
}
|
|
31
|
+
#{if(&, '&', '*')} .e-calendar.e-rtl .e-header .e-date-icon-next::before {
|
|
32
|
+
content: '\e98f';
|
|
33
|
+
}
|
|
34
|
+
#{if(&, '&', '*')} .e-calendar.e-rtl .e-header .e-date-icon-prev::before {
|
|
35
|
+
content: '\e85c';
|
|
36
|
+
}
|
|
37
|
+
#{if(&, '&', '*')}.e-rtl .e-start-end .e-change-icon::before {
|
|
38
|
+
content: '\e85b';
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.e-bigger {
|
|
43
|
+
#{if(&, '&', '*')} .e-input-group-icon.e-range-icon,
|
|
44
|
+
#{if(&, '&', '*')}.e-control-wrapper .e-input-group-icon.e-range-icon,
|
|
45
|
+
#{if(&, '&', '*')} .e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
46
|
+
font-size: $range-bigger-icon-font-size;
|
|
47
|
+
margin: $range-icon-bigger-margin;
|
|
48
|
+
outline: none;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
// mouse small icon
|
|
53
|
+
.e-small .e-input-group-icon.e-range-icon,
|
|
54
|
+
#{if(&, '&', '*')}.e-control-wrapper.e-small .e-input-group-icon.e-range-icon,
|
|
55
|
+
#{if(&, '&', '*')}.e-small .e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
56
|
+
font-size: $range-small-icon-font-size;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// Touch small icon
|
|
60
|
+
.e-small.e-bigger .e-input-group-icon.e-range-icon,
|
|
61
|
+
#{if(&, '&', '*')}.e-control-wrapper.e-small.e-bigger .e-input-group-icon.e-range-icon,
|
|
62
|
+
#{if(&, '&', '*')}.e-small.e-bigger .e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
63
|
+
font-size: $range-bigger-small-icon-font-size;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.e-daterangepick-mob-popup-wrap {
|
|
67
|
+
|
|
68
|
+
#{if(&, '&', '*')} .e-daterangepicker.e-popup-expand {
|
|
69
|
+
|
|
70
|
+
#{if(&, '&', '*')} .e-range-header,
|
|
71
|
+
#{if(&, '&', '*')} .e-model-header {
|
|
72
|
+
|
|
73
|
+
#{if(&, '&', '*')} .e-popup-close::before {
|
|
74
|
+
content: '\e7fc';
|
|
75
|
+
font-family: 'e-icons';
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
#{if(&, '&', '*')} .e-apply::before {
|
|
79
|
+
content: '\e7ff';
|
|
80
|
+
font-family: 'e-icons';
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
@include export-module('daterangepicker-fabric-icons') {
|
|
2
|
+
|
|
3
|
+
/*! component icons */
|
|
4
|
+
.e-input-group-icon.e-range-icon,
|
|
5
|
+
#{if(&, '&', '*')}.e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
6
|
+
font-size: $range-icon-font-size;
|
|
7
|
+
margin: $range-icon-margin;
|
|
8
|
+
outline: none;
|
|
9
|
+
|
|
10
|
+
#{if(&, '&', '*')}::before {
|
|
11
|
+
content: '\e244';
|
|
12
|
+
font-family: 'e-icons';
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
#{if(&, '&', '*')}:focus {
|
|
16
|
+
background: $range-icon-hover-color;
|
|
17
|
+
border-radius: $range-icon-border-radius;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.e-daterangepicker {
|
|
22
|
+
#{if(&, '&', '*')} .e-calendar .e-header .e-date-icon-next::before {
|
|
23
|
+
content: '\e85c';
|
|
24
|
+
}
|
|
25
|
+
#{if(&, '&', '*')} .e-calendar .e-header .e-date-icon-prev::before {
|
|
26
|
+
content: '\e98f';
|
|
27
|
+
}
|
|
28
|
+
#{if(&, '&', '*')} .e-change-icon::before {
|
|
29
|
+
content: '\e85f';
|
|
30
|
+
}
|
|
31
|
+
#{if(&, '&', '*')} .e-calendar.e-rtl .e-header .e-date-icon-next::before {
|
|
32
|
+
content: '\e98f';
|
|
33
|
+
}
|
|
34
|
+
#{if(&, '&', '*')} .e-calendar.e-rtl .e-header .e-date-icon-prev::before {
|
|
35
|
+
content: '\e85c';
|
|
36
|
+
}
|
|
37
|
+
#{if(&, '&', '*')}.e-rtl .e-start-end .e-change-icon::before {
|
|
38
|
+
content: '\e85b';
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.e-bigger {
|
|
43
|
+
#{if(&, '&', '*')} .e-input-group-icon.e-range-icon,
|
|
44
|
+
#{if(&, '&', '*')}.e-control-wrapper .e-input-group-icon.e-range-icon,
|
|
45
|
+
#{if(&, '&', '*')} .e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
46
|
+
font-size: $range-bigger-icon-font-size;
|
|
47
|
+
margin: $range-icon-bigger-margin;
|
|
48
|
+
outline: none;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
// mouse small icon
|
|
53
|
+
.e-small .e-input-group-icon.e-range-icon,
|
|
54
|
+
#{if(&, '&', '*')}.e-control-wrapper.e-small .e-input-group-icon.e-range-icon,
|
|
55
|
+
#{if(&, '&', '*')}.e-small .e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
56
|
+
font-size: $range-small-icon-font-size;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// Touch small icon
|
|
60
|
+
.e-small.e-bigger .e-input-group-icon.e-range-icon,
|
|
61
|
+
#{if(&, '&', '*')}.e-control-wrapper.e-small.e-bigger .e-input-group-icon.e-range-icon,
|
|
62
|
+
#{if(&, '&', '*')}.e-small.e-bigger .e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
63
|
+
font-size: $range-bigger-small-icon-font-size;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.e-daterangepick-mob-popup-wrap {
|
|
67
|
+
|
|
68
|
+
#{if(&, '&', '*')} .e-daterangepicker.e-popup-expand {
|
|
69
|
+
|
|
70
|
+
#{if(&, '&', '*')} .e-range-header,
|
|
71
|
+
#{if(&, '&', '*')} .e-model-header {
|
|
72
|
+
|
|
73
|
+
#{if(&, '&', '*')} .e-popup-close::before {
|
|
74
|
+
content: '\e7fc';
|
|
75
|
+
font-family: 'e-icons';
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
#{if(&, '&', '*')} .e-apply::before {
|
|
79
|
+
content: '\e7ff';
|
|
80
|
+
font-family: 'e-icons';
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './fluent.scss';
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
@include export-module('daterangepicker-fluent-icons') {
|
|
2
|
+
|
|
3
|
+
/*! component icons */
|
|
4
|
+
.e-input-group-icon.e-range-icon,
|
|
5
|
+
#{if(&, '&', '*')}.e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
6
|
+
border-bottom-right-radius: $range-icon-bottom-right-radius;
|
|
7
|
+
border-right: $range-control-border-right;
|
|
8
|
+
border-top-right-radius: $range-icon-top-right-radius;
|
|
9
|
+
font-size: $range-icon-font-size;
|
|
10
|
+
margin: $range-icon-margin;
|
|
11
|
+
min-height: $range-icon-container-min-height;
|
|
12
|
+
min-width: $range-icon-container-min-width;
|
|
13
|
+
outline: none;
|
|
14
|
+
|
|
15
|
+
#{if(&, '&', '*')}::before {
|
|
16
|
+
content: '\e7da';
|
|
17
|
+
font-family: 'e-icons';
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
#{if(&, '&', '*')}:focus {
|
|
21
|
+
background: $range-icon-hover-color;
|
|
22
|
+
border-radius: $range-icon-border-radius;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.e-daterangepicker {
|
|
27
|
+
#{if(&, '&', '*')} .e-calendar .e-header .e-date-icon-next::before {
|
|
28
|
+
content: '\e7d8';
|
|
29
|
+
}
|
|
30
|
+
#{if(&, '&', '*')} .e-calendar .e-header .e-date-icon-prev::before {
|
|
31
|
+
content: '\e7df';
|
|
32
|
+
}
|
|
33
|
+
#{if(&, '&', '*')} .e-change-icon::before {
|
|
34
|
+
content: '\e7f9';
|
|
35
|
+
}
|
|
36
|
+
#{if(&, '&', '*')} .e-calendar.e-rtl .e-header .e-date-icon-next::before {
|
|
37
|
+
content: '\e7d8';
|
|
38
|
+
}
|
|
39
|
+
#{if(&, '&', '*')} .e-calendar.e-rtl .e-header .e-date-icon-prev::before {
|
|
40
|
+
content: '\e7df';
|
|
41
|
+
}
|
|
42
|
+
#{if(&, '&', '*')}.e-rtl .e-start-end .e-change-icon::before {
|
|
43
|
+
content: '\e773';
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.e-bigger {
|
|
48
|
+
#{if(&, '&', '*')} .e-input-group-icon.e-range-icon,
|
|
49
|
+
#{if(&, '&', '*')}.e-control-wrapper .e-input-group-icon.e-range-icon,
|
|
50
|
+
#{if(&, '&', '*')} .e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
51
|
+
font-size: $range-bigger-icon-font-size;
|
|
52
|
+
margin: $range-icon-bigger-margin;
|
|
53
|
+
min-height: $range-bigger-icon-container-min-height;
|
|
54
|
+
min-width: $range-bigger-icon-container-min-width;
|
|
55
|
+
outline: none;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// mouse small icon
|
|
60
|
+
.e-small .e-input-group-icon.e-range-icon,
|
|
61
|
+
#{if(&, '&', '*')}.e-control-wrapper.e-small .e-input-group-icon.e-range-icon,
|
|
62
|
+
#{if(&, '&', '*')}.e-small .e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
63
|
+
font-size: $range-small-icon-font-size;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
// Touch small icon
|
|
67
|
+
.e-small.e-bigger .e-input-group-icon.e-range-icon,
|
|
68
|
+
#{if(&, '&', '*')}.e-control-wrapper.e-small.e-bigger .e-input-group-icon.e-range-icon,
|
|
69
|
+
#{if(&, '&', '*')}.e-small.e-bigger .e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
70
|
+
font-size: $range-bigger-small-icon-font-size;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.e-daterangepick-mob-popup-wrap {
|
|
74
|
+
|
|
75
|
+
#{if(&, '&', '*')} .e-daterangepicker.e-popup-expand {
|
|
76
|
+
|
|
77
|
+
#{if(&, '&', '*')} .e-range-header,
|
|
78
|
+
#{if(&, '&', '*')} .e-model-header {
|
|
79
|
+
|
|
80
|
+
#{if(&, '&', '*')} .e-popup-close::before {
|
|
81
|
+
content: '\e7e7';
|
|
82
|
+
font-family: 'e-icons';
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
#{if(&, '&', '*')} .e-apply::before {
|
|
86
|
+
content: '\e774';
|
|
87
|
+
font-family: 'e-icons';
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
@include export-module('daterangepicker-fusionnew-icons') {
|
|
2
|
+
|
|
3
|
+
/*! component icons */
|
|
4
|
+
.e-input-group-icon.e-range-icon,
|
|
5
|
+
#{if(&, '&', '*')}.e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
6
|
+
border-bottom-right-radius: $range-icon-bottom-right-radius;
|
|
7
|
+
border-right: $range-control-border-right;
|
|
8
|
+
border-top-right-radius: $range-icon-top-right-radius;
|
|
9
|
+
font-size: $range-icon-font-size;
|
|
10
|
+
margin: $range-icon-margin;
|
|
11
|
+
min-height: $range-icon-container-min-height;
|
|
12
|
+
min-width: $range-icon-container-min-width;
|
|
13
|
+
outline: none;
|
|
14
|
+
|
|
15
|
+
#{if(&, '&', '*')}::before {
|
|
16
|
+
content: '\e74c';
|
|
17
|
+
font-family: 'e-icons';
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
#{if(&, '&', '*')}:focus {
|
|
21
|
+
background: $range-icon-hover-color;
|
|
22
|
+
border-radius: $range-icon-border-radius;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.e-daterangepicker {
|
|
27
|
+
#{if(&, '&', '*')} .e-calendar .e-header .e-date-icon-next::before {
|
|
28
|
+
content: '\e748';
|
|
29
|
+
}
|
|
30
|
+
#{if(&, '&', '*')} .e-calendar .e-header .e-date-icon-prev::before {
|
|
31
|
+
content: '\e765';
|
|
32
|
+
}
|
|
33
|
+
#{if(&, '&', '*')} .e-change-icon::before {
|
|
34
|
+
content: '\e7f9';
|
|
35
|
+
}
|
|
36
|
+
#{if(&, '&', '*')} .e-calendar.e-rtl .e-header .e-date-icon-next::before {
|
|
37
|
+
content: '\e765';
|
|
38
|
+
}
|
|
39
|
+
#{if(&, '&', '*')} .e-calendar.e-rtl .e-header .e-date-icon-prev::before {
|
|
40
|
+
content: '\e748';
|
|
41
|
+
}
|
|
42
|
+
#{if(&, '&', '*')}.e-rtl .e-start-end .e-change-icon::before {
|
|
43
|
+
content: '\e773';
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.e-bigger {
|
|
48
|
+
#{if(&, '&', '*')} .e-input-group-icon.e-range-icon,
|
|
49
|
+
#{if(&, '&', '*')}.e-control-wrapper .e-input-group-icon.e-range-icon,
|
|
50
|
+
#{if(&, '&', '*')} .e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
51
|
+
font-size: $range-bigger-icon-font-size;
|
|
52
|
+
margin: $range-icon-bigger-margin;
|
|
53
|
+
min-height: $range-bigger-icon-container-min-height;
|
|
54
|
+
min-width: $range-bigger-icon-container-min-width;
|
|
55
|
+
outline: none;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// mouse small icon
|
|
60
|
+
.e-small .e-input-group-icon.e-range-icon,
|
|
61
|
+
#{if(&, '&', '*')}.e-control-wrapper.e-small .e-input-group-icon.e-range-icon,
|
|
62
|
+
#{if(&, '&', '*')}.e-small .e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
63
|
+
font-size: $range-small-icon-font-size;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
// Touch small icon
|
|
67
|
+
.e-small.e-bigger .e-input-group-icon.e-range-icon,
|
|
68
|
+
#{if(&, '&', '*')}.e-control-wrapper.e-small.e-bigger .e-input-group-icon.e-range-icon,
|
|
69
|
+
#{if(&, '&', '*')}.e-small.e-bigger .e-control-wrapper .e-input-group-icon.e-range-icon {
|
|
70
|
+
font-size: $range-bigger-small-icon-font-size;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.e-daterangepick-mob-popup-wrap {
|
|
74
|
+
|
|
75
|
+
#{if(&, '&', '*')} .e-daterangepicker.e-popup-expand {
|
|
76
|
+
|
|
77
|
+
#{if(&, '&', '*')} .e-range-header,
|
|
78
|
+
#{if(&, '&', '*')} .e-model-header {
|
|
79
|
+
|
|
80
|
+
#{if(&, '&', '*')} .e-popup-close::before {
|
|
81
|
+
content: '\e932';
|
|
82
|
+
font-family: 'e-icons';
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
#{if(&, '&', '*')} .e-apply::before {
|
|
86
|
+
content: '\e7ff';
|
|
87
|
+
font-family: 'e-icons';
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|