@syncfusion/ej2-angular-calendars 23.1.38-ngcc → 23.1.38
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,434 @@
|
|
|
1
|
+
@include export-module('datepicker-layout') {
|
|
2
|
+
|
|
3
|
+
.e-input-group.e-control-wrapper.e-date-wrapper.e-non-edit.e-input-focus .e-input:focus ~ .e-clear-icon,
|
|
4
|
+
.e-float-input.e-control-wrapper.e-input-group.e-date-wrapper.e-non-edit.e-input-focus input:focus ~ .e-clear-icon {
|
|
5
|
+
display: flex;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.e-date-wrapper:not(.e-filled) {
|
|
9
|
+
#{if(&, '&', '*')} .e-date-icon.e-icons {
|
|
10
|
+
@if $skin-name == 'material' or $skin-name == 'material-dark' or $skin-name == 'Material3' {
|
|
11
|
+
box-sizing: $datepicker-box-sizing;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
#{&}.e-datepicker.e-bigger,
|
|
17
|
+
.e-bigger #{&}.e-datepicker {
|
|
18
|
+
#{if(&, '&', '*')}.e-popup-wrapper {
|
|
19
|
+
@if $skin-name == 'tailwind' {
|
|
20
|
+
margin-top: $datepicker-popup-bigger-margin-top;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
#{&}.e-datepicker {
|
|
26
|
+
#{if(&, '&', '*')} .e-calendar {
|
|
27
|
+
|
|
28
|
+
#{if(&, '&', '*')} .e-content table tbody tr.e-month-hide:last-child {
|
|
29
|
+
display: $datepicker-othermonth-row;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
#{if(&, '&', '*')}.e-popup-wrapper {
|
|
34
|
+
border-radius: $datepicker-popup-border-radius;
|
|
35
|
+
overflow-y: hidden;
|
|
36
|
+
pointer-events: auto;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
#{if(&, '&', '*')}.e-date-modal {
|
|
40
|
+
@if $skin-name != 'Material3' {
|
|
41
|
+
background-color: $datepicker-overlay;
|
|
42
|
+
}
|
|
43
|
+
@if $skin-name == 'Material3' {
|
|
44
|
+
background: $datepicker-overlay;
|
|
45
|
+
}
|
|
46
|
+
height: 100%;
|
|
47
|
+
left: 0;
|
|
48
|
+
opacity: .5;
|
|
49
|
+
pointer-events: auto;
|
|
50
|
+
position: fixed;
|
|
51
|
+
top: 0;
|
|
52
|
+
width: 100%;
|
|
53
|
+
z-index: 999;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
#{if(&, '&', '*')} .e-model-header {
|
|
57
|
+
@if $skin-name != 'Material3' {
|
|
58
|
+
background-color: $datepicker-modal-header-bg;
|
|
59
|
+
}
|
|
60
|
+
@if $skin-name == 'Material3' {
|
|
61
|
+
background: $datepicker-modal-header-bg;
|
|
62
|
+
}
|
|
63
|
+
color: $datepicker-modal-header-color;
|
|
64
|
+
cursor: default;
|
|
65
|
+
display: $datepicker-modal-header-display;
|
|
66
|
+
padding: 10px 10px 10px 15px;
|
|
67
|
+
|
|
68
|
+
#{if(&, '&', '*')} .e-model-year {
|
|
69
|
+
font-size: $modal-year-font-size;
|
|
70
|
+
font-weight: $modal-year-font-weight;
|
|
71
|
+
line-height: $modal-year-line-height;
|
|
72
|
+
margin: 0;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
#{if(&, '&', '*')} .e-model-month,
|
|
77
|
+
#{if(&, '&', '*')} .e-model-day {
|
|
78
|
+
font-size: $modal-month-font-size;
|
|
79
|
+
font-weight: $modal-month-font-weight;
|
|
80
|
+
line-height: $modal-month-line-height;
|
|
81
|
+
margin: 0;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
/* stylelint-disable */
|
|
87
|
+
.e-date-overflow {
|
|
88
|
+
overflow: hidden !important;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.e-datepick-mob-popup-wrap {
|
|
92
|
+
align-items: center;
|
|
93
|
+
display: flex;
|
|
94
|
+
flex-direction: column;
|
|
95
|
+
height: 100%;
|
|
96
|
+
justify-content: center;
|
|
97
|
+
left: 0;
|
|
98
|
+
max-height: 100%;
|
|
99
|
+
position: fixed;
|
|
100
|
+
top: 0;
|
|
101
|
+
width: 100%;
|
|
102
|
+
z-index: 1002;
|
|
103
|
+
|
|
104
|
+
.e-datepicker.e-popup-wrapper.e-lib.e-popup.e-control.e-popup-open {
|
|
105
|
+
position: relative;
|
|
106
|
+
top:0 !important;
|
|
107
|
+
left: 0 !important;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.e-datepicker.e-popup-wrapper.e-popup-expand.e-lib.e-popup.e-control.e-popup-open {
|
|
111
|
+
min-width: 100%;
|
|
112
|
+
min-height:100%;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.e-content-placeholder.e-datepicker.e-placeholder-datepicker {
|
|
118
|
+
background-size: 250px 33px;
|
|
119
|
+
min-height: 33px;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.e-bigger .e-content-placeholder.e-datepicker.e-placeholder-datepicker,
|
|
123
|
+
.e-bigger.e-content-placeholder.e-datepicker.e-placeholder-datepicker {
|
|
124
|
+
background-size: 250px 40px;
|
|
125
|
+
min-height: 40px;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
@media screen and (orientation: landscape) {
|
|
129
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-content.e-month td.e-today span.e-day {
|
|
130
|
+
line-height: $modal-tablet-content-dimension;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.e-datepick-mob-popup-wrap {
|
|
135
|
+
|
|
136
|
+
#{if(&, '&', '*')} .e-datepicker.e-popup-expand {
|
|
137
|
+
border-radius: 0;
|
|
138
|
+
|
|
139
|
+
#{if(&, '&', '*')} .e-model-header.e-blazor-device {
|
|
140
|
+
height: 15vh;
|
|
141
|
+
.e-popup-close {
|
|
142
|
+
float: right;
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
#{if(&, '&', '*')} .e-model-header.e-blazor-device {
|
|
147
|
+
height: 15vh;
|
|
148
|
+
.e-popup-close {
|
|
149
|
+
float: right;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
#{if(&, '&', '*')} .e-model-header {
|
|
154
|
+
height: $modal-portrait-header-height;
|
|
155
|
+
padding: $modal-portrait-header-padding;
|
|
156
|
+
|
|
157
|
+
#{if(&, '&', '*')} .e-day-wrapper {
|
|
158
|
+
margin: $modal-portrait-header-year-margin;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
#{if(&, '&', '*')} .e-popup-close {
|
|
162
|
+
color: $modal-portrait-cancel-icon-color;
|
|
163
|
+
float: $modal-portrait-cancel-icon-float-style;
|
|
164
|
+
font-size: $datepicker-bigger-icon-font-size;
|
|
165
|
+
@media (min-device-width: 768px) {
|
|
166
|
+
font-size: $modal-tablet-font-size;
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
#{if(&, '&', '*')} .e-btn.e-flat.e-popup-close {
|
|
171
|
+
background: transparent;
|
|
172
|
+
border-color: transparent;
|
|
173
|
+
box-shadow: none;
|
|
174
|
+
font-weight: 400;
|
|
175
|
+
padding: 0;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
#{if(&, '&', '*')} .e-today.e-flat.e-primary {
|
|
179
|
+
color: $modal-today-text-color;
|
|
180
|
+
float: $modal-portrait-today-float-style;
|
|
181
|
+
@if $skin-name == 'bootstrap5' {
|
|
182
|
+
background-color: transparent;
|
|
183
|
+
}
|
|
184
|
+
@media (min-device-width: 768px) {
|
|
185
|
+
font-size: $modal-tablet-font-size;
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
#{if(&, '&', '*')} .e-model-month,
|
|
191
|
+
#{if(&, '&', '*')} .e-model-day {
|
|
192
|
+
font-size: $modal-portrait-month-font-size;
|
|
193
|
+
line-height: $modal-header-day-line-height;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
#{if(&, '&', '*')} .e-calendar {
|
|
197
|
+
min-width: $modal-portrait-calendar-min-width;
|
|
198
|
+
min-height: $modal-portrait-calendar-min-height;
|
|
199
|
+
height: $modal-portrait-calendar-height;
|
|
200
|
+
@if ($skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark') {
|
|
201
|
+
padding: $modal-portrait-calendar-padding;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
#{if(&, '&', '*')} .e-header.e-month,
|
|
205
|
+
#{if(&, '&', '*')} .e-header.e-year,
|
|
206
|
+
#{if(&, '&', '*')} .e-header.e-decade {
|
|
207
|
+
height: $modal-portrait-header-month-height;
|
|
208
|
+
border-style: $modal-header-border-style;
|
|
209
|
+
border-width: $modal-header-border-width;
|
|
210
|
+
border-color: $modal-header-border-color;
|
|
211
|
+
padding: $modal-portrait-month-header-padding;
|
|
212
|
+
line-height: $modal-month-header-line-height;
|
|
213
|
+
|
|
214
|
+
#{if(&, '&', '*')} .e-title {
|
|
215
|
+
margin-left: $modal-portrait-header-title-margin;
|
|
216
|
+
position: $modal-portrait-header-title-position;
|
|
217
|
+
text-align: $modal-portrait-header-title-text;
|
|
218
|
+
vertical-align: $modal-portrait-month-header-vertical-align;
|
|
219
|
+
width: $modal-portrait-header-title-width;
|
|
220
|
+
line-height: $modal-month-header-title-line-height;
|
|
221
|
+
@media (min-device-width: 768px) {
|
|
222
|
+
font-size: $modal-tablet-font-size;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
#{if(&, '&', '*')} .e-prev {
|
|
227
|
+
margin-right: $modal-portrait-prev-icon-margin;
|
|
228
|
+
vertical-align: inherit;
|
|
229
|
+
height: 35px;
|
|
230
|
+
width: 35px;
|
|
231
|
+
@media (min-device-width: 768px) {
|
|
232
|
+
height: 55px;
|
|
233
|
+
width: 55px;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
#{if(&, '&', '*')} .e-icons {
|
|
237
|
+
vertical-align: inherit;
|
|
238
|
+
@media (min-device-width: 768px) {
|
|
239
|
+
font-size: $modal-tablet-font-size;
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
#{if(&, '&', '*')} .e-next {
|
|
245
|
+
margin-right: $modal-portrait-next-icon-margin;
|
|
246
|
+
vertical-align: inherit;
|
|
247
|
+
height: 35px;
|
|
248
|
+
width:35px;
|
|
249
|
+
@media (min-device-width: 768px) {
|
|
250
|
+
height: 55px;
|
|
251
|
+
width: 55px;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
#{if(&, '&', '*')} .e-icons {
|
|
255
|
+
vertical-align: inherit;
|
|
256
|
+
@media (min-device-width: 768px) {
|
|
257
|
+
font-size: $modal-tablet-font-size;
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
#{if(&, '&', '*')} .e-icon-container {
|
|
263
|
+
float: $modal-portrait-icon-float;
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
#{if(&, '&', '*')} th {
|
|
268
|
+
@media (min-device-width: 768px) {
|
|
269
|
+
font-size: $modal-tablet-font-size;
|
|
270
|
+
height: $modal-tablet-table-header-height;
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
#{if(&, '&', '*')} .e-content span.e-day {
|
|
275
|
+
@media (min-device-width: 768px) {
|
|
276
|
+
font-size: $modal-tablet-font-size;
|
|
277
|
+
height: $modal-tablet-content-dimension;
|
|
278
|
+
width: $modal-tablet-content-dimension;
|
|
279
|
+
line-height: $modal-tablet-content-dimension;
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
#{if(&, '&', '*')} .e-calendar-cell-container {
|
|
286
|
+
height: $modal-portrait-calendar-container-height;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.e-footer-container
|
|
290
|
+
{
|
|
291
|
+
display: $modal-portrait-footer-display-style;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
#{if(&, '&', '*')} .e-content.e-month
|
|
295
|
+
{
|
|
296
|
+
height: $modal-portrait-calendar-content-height;
|
|
297
|
+
table
|
|
298
|
+
{
|
|
299
|
+
height: $modal-portrait-calendar-tabel-height;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
@media screen and (orientation: landscape) {
|
|
308
|
+
.e-datepick-mob-popup-wrap {
|
|
309
|
+
#{if(&, '&', '*')} .e-datepicker.e-popup-expand {
|
|
310
|
+
|
|
311
|
+
#{if(&, '&', '*')} .e-model-header.e-blazor-device {
|
|
312
|
+
height: 25vh;
|
|
313
|
+
.e-popup-close {
|
|
314
|
+
float: right;
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
#{if(&, '&', '*')} .e-calendar-cell-container {
|
|
319
|
+
|
|
320
|
+
#{if(&, '&', '*')} .e-content.e-month,
|
|
321
|
+
#{if(&, '&', '*')} .e-content.e-year,
|
|
322
|
+
#{if(&, '&', '*')} .e-content.e-decade {
|
|
323
|
+
@media (max-height: 600px) {
|
|
324
|
+
height: 50vh;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
@media (min-height: 600px) {
|
|
328
|
+
height: 60vh;
|
|
329
|
+
}
|
|
330
|
+
overflow-y: auto;
|
|
331
|
+
|
|
332
|
+
#{if(&, '&', '*')} table {
|
|
333
|
+
@media (min-height: 600px) {
|
|
334
|
+
height: 60vh;
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
#{if(&, '&', '*')} .e-footer-container {
|
|
339
|
+
@media (min-height: 600px) {
|
|
340
|
+
padding: 10px 0;
|
|
341
|
+
height: 10%;
|
|
342
|
+
font-size: 24px;
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
#{if(&, '&', '*')} .e-model-header {
|
|
348
|
+
|
|
349
|
+
@media (max-height: 600px) {
|
|
350
|
+
height: $modal-landscape-header-height;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
@media (min-height: 600px) {
|
|
354
|
+
height: $modal-landscape-header-big-height;
|
|
355
|
+
}
|
|
356
|
+
width: $datepicker-modal-popup-landscape-max-width;
|
|
357
|
+
|
|
358
|
+
.e-popup-close {
|
|
359
|
+
float: $modal-portrait-cancel-icon-float-style;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.e-day-wrapper {
|
|
363
|
+
margin: $modal-landscape-header-year-margin;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
#{if(&, '&', '*')} .e-model-month,
|
|
367
|
+
#{if(&, '&', '*')} .e-model-day {
|
|
368
|
+
font-size: $modal-month-landscape-font-size;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
#{if(&, '&', '*')} .e-calendar .e-header.e-month,
|
|
374
|
+
#{if(&, '&', '*')} .e-calendar .e-header.e-year,
|
|
375
|
+
#{if(&, '&', '*')} .e-calendar .e-header.e-decade {
|
|
376
|
+
|
|
377
|
+
#{if(&, '&', '*')} .e-prev {
|
|
378
|
+
margin-right: $modal-landscape-prev-icon-margin;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
#{if(&, '&', '*')} .e-title {
|
|
382
|
+
@media (max-height: 600px) {
|
|
383
|
+
line-height: $modal-month-landscape-title-line-height;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
@media (min-height: 600px) {
|
|
387
|
+
line-height: $modal-month-header-title-line-height;
|
|
388
|
+
}
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
#{if(&, '&', '*')} .e-content.e-month,
|
|
393
|
+
#{if(&, '&', '*')} .e-content.e-year,
|
|
394
|
+
#{if(&, '&', '*')} .e-content.e-decade {
|
|
395
|
+
@media (max-height: 600px) {
|
|
396
|
+
height: $modal-landscape-calendar-content-height;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
@media (min-height: 600px) {
|
|
400
|
+
height: $modal-landscape-calendar-content-big-height;
|
|
401
|
+
}
|
|
402
|
+
overflow-y: auto;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.e-calendar {
|
|
406
|
+
display: $datepicker-modal-header-display;
|
|
407
|
+
max-width: $datepicker-modal-popup-landscape-max-width;
|
|
408
|
+
overflow: $datepicker-modal-landscape-overflow;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.e-calendar-cell-container {
|
|
412
|
+
height: 70%;
|
|
413
|
+
width: 100%;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.e-calendar.e-device .e-month table tbody {
|
|
417
|
+
display: table-row-group;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
#{if(&, '&', '*')} .e-content.e-month table ,
|
|
421
|
+
#{if(&, '&', '*')} .e-content.e-decade table ,
|
|
422
|
+
#{if(&, '&', '*')} .e-content.e-year table {
|
|
423
|
+
@media (max-height: 600px) {
|
|
424
|
+
height: $modal-portrait-calendar-content-height;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
@media (min-height: 600px) {
|
|
428
|
+
height: $modal-landscape-calendar-content-table-height;
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
/* stylelint-enable */
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
//default
|
|
2
|
+
$datepicker-icon-color: $accent !default;
|
|
3
|
+
$datepicker-active-icon-color: $datepicker-icon-color !default;
|
|
4
|
+
$datepicker-popup-box-shadow: 0 5px 5px -3px rgba($grey-light-font, .2), 0 8px 10px 1px rgba($grey-light-font, .14), 0 3px 14px 2px rgba($grey-light-font, .12) !default;
|
|
5
|
+
$datepicker-input-border-style: none !default;
|
|
6
|
+
$datepicker-calendar-border-style: none !default;
|
|
7
|
+
$datepicker-icon: '\e901' !default;
|
|
8
|
+
$datepicker-popup-border: none !default;
|
|
9
|
+
$datepicker-icon-font-size: 16px !default;
|
|
10
|
+
$datepicker-icon-container-min-height: 24px !default;
|
|
11
|
+
$datepicker-icon-container-min-width: 24px !default;
|
|
12
|
+
$datepicker-bigger-icon-container-min-height: 26px !default;
|
|
13
|
+
$datepicker-bigger-icon-container-min-width: 26px !default;
|
|
14
|
+
$datepicker-bigger-icon-font-size: 18px !default;
|
|
15
|
+
$datepicker-overlay: rgba($grey-black, .6) !default;
|
|
16
|
+
$datepicker-icon-normal-margin: 0 0 4px 0 !default;
|
|
17
|
+
$datepicker-icon-bigger-margin: 5px 0 6px 0 !default;
|
|
18
|
+
$datepicker-icon-hover-color: $hover-bg-color !default;
|
|
19
|
+
$datepicker-icon-border-radius: 50% !default;
|
|
20
|
+
$datepicker-popup-border-radius: 0 !default;
|
|
21
|
+
$datepicker-box-sizing: border-box !default;
|
|
22
|
+
$datepicker-popup-bg-color: $grey-800 !default;
|
|
23
|
+
$datepicker-othermonth-row: none !default;
|
|
24
|
+
$datepicker-modal-header-bg: $accent !default;
|
|
25
|
+
$datepicker-modal-header-color: $grey-white !default;
|
|
26
|
+
$datepicker-modal-header-display: block !default;
|
|
27
|
+
$datepicker-calendar-tbody-landscape-height: 130px !default;
|
|
28
|
+
$modal-header-day-line-height: 6vw !default;
|
|
29
|
+
|
|
30
|
+
// mouse small icon
|
|
31
|
+
$datepicker-small-icon-font-size: 14px !default;
|
|
32
|
+
|
|
33
|
+
// Touch small icon
|
|
34
|
+
$datepicker-bigger-small-icon-font-size: 18px !default;
|
|
35
|
+
$zero-value: 0 !default;
|
|
36
|
+
$modal-year-font-size: 14px !default;
|
|
37
|
+
$modal-year-font-weight: 500 !default;
|
|
38
|
+
$modal-year-line-height: 32px !default;
|
|
39
|
+
$modal-month-font-size: 20px !default;
|
|
40
|
+
$modal-month-font-weight: 500 !default;
|
|
41
|
+
$modal-month-line-height: 32px !default;
|
|
42
|
+
|
|
43
|
+
// modal dialog dimensions and styles
|
|
44
|
+
$modal-portrait-year-font-size: 4vw !default;
|
|
45
|
+
$modal-portrait-header-year-margin: 12vh 0 0 0 !default;
|
|
46
|
+
$modal-portrait-month-font-size: 5vw !default;
|
|
47
|
+
$modal-portrait-header-padding: 2vh 6vw !default;
|
|
48
|
+
$modal-portrait-month-header-padding: 2vh 2vw !default;
|
|
49
|
+
$modal-portrait-month-header-vertical-align: middle !default;
|
|
50
|
+
$modal-month-header-line-height: 5vh !default;
|
|
51
|
+
$modal-month-header-title-line-height: inherit !default;
|
|
52
|
+
|
|
53
|
+
$modal-header-border-style: none !default;
|
|
54
|
+
$modal-header-border-width: 0 !default;
|
|
55
|
+
|
|
56
|
+
// Touch modal popup cancel icon style
|
|
57
|
+
$modal-portrait-cancel-icon-float-style: left !default;
|
|
58
|
+
$modal-portrait-cancel-icon-padding: 2px !default;
|
|
59
|
+
$modal-portrait-prev-icon-margin: 0 !default;
|
|
60
|
+
$modal-portrait-next-icon-margin: 0 !default;
|
|
61
|
+
$modal-portrait-header-title-margin: 5vw !default;
|
|
62
|
+
$modal-portrait-header-title-position: inherit !default;
|
|
63
|
+
$modal-portrait-header-title-text: left !default;
|
|
64
|
+
$modal-portrait-header-title-width: 60vw !default;
|
|
65
|
+
$modal-portrait-cancel-icon-color: inherit !default;
|
|
66
|
+
|
|
67
|
+
//Touch modal popup today styles
|
|
68
|
+
$modal-portrait-today-float-style: right !default;
|
|
69
|
+
$modal-today-text-color: inherit !default;
|
|
70
|
+
$modal-portrait-footer-display-style: none !default;
|
|
71
|
+
$modal-header-border-color: $grey-700 !default;
|
|
72
|
+
$modal-portrait-icon-float: right !default;
|
|
73
|
+
|
|
74
|
+
// Touch modal popup styles
|
|
75
|
+
$modal-portrait-header-height: 20vh !default;
|
|
76
|
+
$modal-portrait-header-month-height: 10vh !default;
|
|
77
|
+
$modal-portrait-calendar-container-height: 79vh !default;
|
|
78
|
+
$modal-portrait-calendar-min-height: 100% !default;
|
|
79
|
+
$modal-portrait-calendar-min-width: 100% !default;
|
|
80
|
+
$modal-portrait-calendar-height: 100% !default;
|
|
81
|
+
$modal-portrait-calendar-content-height: 69vh !default;
|
|
82
|
+
$modal-portrait-calendar-tabel-height: 69vh !default;
|
|
83
|
+
|
|
84
|
+
// Touch modal popup landscape styles
|
|
85
|
+
$datepicker-modal-popup-landscape-max-width: 100% !default;
|
|
86
|
+
$modal-landscape-header-height: 30vh !default;
|
|
87
|
+
$modal-landscape-header-big-height: 25vh !default;
|
|
88
|
+
$modal-landscape-calendar-content-height: 60vh !default;
|
|
89
|
+
$modal-landscape-calendar-content-table-height: 65vh !default;
|
|
90
|
+
$modal-landscape-calendar-content-big-height: 65vh !default;
|
|
91
|
+
$modal-landscape-header-year-margin: 12vh 0 0 0 !default;
|
|
92
|
+
$modal-landscape-prev-icon-margin: $modal-portrait-prev-icon-margin !default;
|
|
93
|
+
$modal-year-landscape-font-size: 3vw !default;
|
|
94
|
+
$modal-month-landscape-font-size: 4vw !default;
|
|
95
|
+
$datepicker-modal-landscape-overflow: visible !default;
|
|
96
|
+
$modal-month-landscape-title-line-height: 12vh !default;
|
|
97
|
+
|
|
98
|
+
// tablet device style changes for modal popup
|
|
99
|
+
$modal-tablet-font-size: 18px !default;
|
|
100
|
+
$modal-tablet-content-dimension: 64px !default;
|
|
101
|
+
$modal-tablet-table-header-height: 48px !default;
|
|
102
|
+
|
|
103
|
+
//enddefault
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
$datepicker-icon-color: $accent !default;
|
|
2
|
+
$datepicker-active-icon-color: $datepicker-icon-color !default;
|
|
3
|
+
$datepicker-popup-box-shadow: 0 5px 5px -3px rgba($grey-light-font, .2), 0 8px 10px 1px rgba($grey-light-font, .14), 0 3px 14px 2px rgba($grey-light-font, .12) !default;
|
|
4
|
+
$datepicker-input-border-style: none !default;
|
|
5
|
+
$datepicker-calendar-border-style: none !default;
|
|
6
|
+
$datepicker-icon: '\e901' !default;
|
|
7
|
+
$datepicker-popup-bg-color: $grey-white !default;
|
|
8
|
+
$datepicker-popup-border: none !default;
|
|
9
|
+
$datepicker-icon-font-size: 16px !default;
|
|
10
|
+
$datepicker-icon-container-min-height: 24px !default;
|
|
11
|
+
$datepicker-icon-container-min-width: 24px !default;
|
|
12
|
+
$datepicker-bigger-icon-container-min-height: 26px !default;
|
|
13
|
+
$datepicker-bigger-icon-container-min-width: 26px !default;
|
|
14
|
+
$datepicker-bigger-icon-font-size: 18px !default;
|
|
15
|
+
$datepicker-overlay: rgba($grey-black, .6) !default;
|
|
16
|
+
$datepicker-icon-normal-margin: 0 0 4px 0 !default;
|
|
17
|
+
$datepicker-icon-bigger-margin: 5px 0 6px 0 !default;
|
|
18
|
+
$datepicker-icon-hover-color: $hover-bg-color !default;
|
|
19
|
+
$datepicker-icon-border-radius: 50% !default;
|
|
20
|
+
$datepicker-popup-border-radius: 0 !default;
|
|
21
|
+
$datepicker-box-sizing: border-box !default;
|
|
22
|
+
$datepicker-othermonth-row: none !default;
|
|
23
|
+
$datepicker-modal-header-bg: $accent !default;
|
|
24
|
+
$datepicker-modal-header-color: $grey-white !default;
|
|
25
|
+
$datepicker-modal-header-display: block !default;
|
|
26
|
+
$datepicker-calendar-tbody-landscape-height: 130px !default;
|
|
27
|
+
|
|
28
|
+
// mouse small icon
|
|
29
|
+
$datepicker-small-icon-font-size: 14px !default;
|
|
30
|
+
|
|
31
|
+
// Touch small icon
|
|
32
|
+
$datepicker-bigger-small-icon-font-size: 18px !default;
|
|
33
|
+
$zero-value: 0 !default;
|
|
34
|
+
$modal-year-font-size: 14px !default;
|
|
35
|
+
$modal-year-font-weight: 500 !default;
|
|
36
|
+
$modal-year-line-height: 32px !default;
|
|
37
|
+
$modal-month-font-size: 20px !default;
|
|
38
|
+
$modal-month-font-weight: 500 !default;
|
|
39
|
+
$modal-month-line-height: 32px !default;
|
|
40
|
+
|
|
41
|
+
// modal dialog dimensions and styles
|
|
42
|
+
$modal-portrait-year-font-size: 4vw !default;
|
|
43
|
+
$modal-portrait-header-year-margin: 12vh 0 0 0 !default;
|
|
44
|
+
$modal-portrait-month-font-size: 5vw !default;
|
|
45
|
+
$modal-portrait-header-padding: 2vh 6vw !default;
|
|
46
|
+
$modal-portrait-month-header-padding: 2vh 2vw !default;
|
|
47
|
+
$modal-portrait-month-header-vertical-align: middle !default;
|
|
48
|
+
$modal-month-header-line-height: 5vh !default;
|
|
49
|
+
$modal-month-header-title-line-height: inherit !default;
|
|
50
|
+
|
|
51
|
+
$modal-header-border-style: none !default;
|
|
52
|
+
$modal-header-border-width: 0 !default;
|
|
53
|
+
|
|
54
|
+
// Touch modal popup cancel icon style
|
|
55
|
+
$modal-portrait-cancel-icon-float-style: left !default;
|
|
56
|
+
$modal-portrait-cancel-icon-padding: 2px !default;
|
|
57
|
+
$modal-portrait-prev-icon-margin: 0 !default;
|
|
58
|
+
$modal-portrait-next-icon-margin: 0 !default;
|
|
59
|
+
$modal-portrait-header-title-margin: 5vw !default;
|
|
60
|
+
$modal-portrait-header-title-position: inherit !default;
|
|
61
|
+
$modal-portrait-header-title-text: left !default;
|
|
62
|
+
$modal-portrait-header-title-width: 60vw !default;
|
|
63
|
+
$modal-portrait-cancel-icon-color: inherit !default;
|
|
64
|
+
$modal-header-day-line-height: 6vw !default;
|
|
65
|
+
|
|
66
|
+
//Touch modal popup today styles
|
|
67
|
+
$modal-portrait-today-float-style: right !default;
|
|
68
|
+
$modal-today-text-color: inherit !default;
|
|
69
|
+
$modal-portrait-footer-display-style: none !default;
|
|
70
|
+
$modal-header-border-color: rgba($grey-black, .12) !default;
|
|
71
|
+
$modal-portrait-icon-float: right !default;
|
|
72
|
+
|
|
73
|
+
// Touch modal popup styles
|
|
74
|
+
$modal-portrait-header-height: 20vh !default;
|
|
75
|
+
$modal-portrait-header-month-height: 10vh !default;
|
|
76
|
+
$modal-portrait-calendar-container-height: 79vh !default;
|
|
77
|
+
$modal-portrait-calendar-min-height: 100% !default;
|
|
78
|
+
$modal-portrait-calendar-min-width: 100% !default;
|
|
79
|
+
$modal-portrait-calendar-height: 100% !default;
|
|
80
|
+
$modal-portrait-calendar-content-height: 69vh !default;
|
|
81
|
+
$modal-portrait-calendar-tabel-height: 69vh !default;
|
|
82
|
+
|
|
83
|
+
// Touch modal popup landscape styles
|
|
84
|
+
$datepicker-modal-popup-landscape-max-width: 100% !default;
|
|
85
|
+
$modal-landscape-header-height: 30vh !default;
|
|
86
|
+
$modal-landscape-header-big-height: 25vh !default;
|
|
87
|
+
$modal-landscape-calendar-content-height: 60vh !default;
|
|
88
|
+
$modal-landscape-calendar-content-table-height: 65vh !default;
|
|
89
|
+
$modal-landscape-calendar-content-big-height: 65vh !default;
|
|
90
|
+
$modal-landscape-header-year-margin: 12vh 0 0 0 !default;
|
|
91
|
+
$modal-landscape-prev-icon-margin: $modal-portrait-prev-icon-margin !default;
|
|
92
|
+
$modal-year-landscape-font-size: 3vw !default;
|
|
93
|
+
$modal-month-landscape-font-size: 4vw !default;
|
|
94
|
+
$datepicker-modal-landscape-overflow: visible !default;
|
|
95
|
+
$modal-month-landscape-title-line-height: 12vh !default;
|
|
96
|
+
|
|
97
|
+
// tablet device style changes for modal popup
|
|
98
|
+
$modal-tablet-font-size: 18px !default;
|
|
99
|
+
$modal-tablet-content-dimension: 64px !default;
|
|
100
|
+
$modal-tablet-table-header-height: 48px !default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './material3-definition.scss';
|