@syncfusion/ej2-schedule 32.1.24 → 32.1.25-810416

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.
Files changed (460) hide show
  1. package/.eslintrc.json +243 -243
  2. package/.gitleaksignore +4 -4
  3. package/README.md +91 -91
  4. package/dist/ej2-schedule.umd.min.js +1 -10
  5. package/dist/ej2-schedule.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-schedule.es2015.js +98 -107
  7. package/dist/es6/ej2-schedule.es2015.js.map +1 -1
  8. package/dist/es6/ej2-schedule.es5.js +562 -574
  9. package/dist/es6/ej2-schedule.es5.js.map +1 -1
  10. package/ej2-schedule-component.sln +32 -0
  11. package/license +9 -9
  12. package/package.json +42 -42
  13. package/src/global.d.ts +1 -0
  14. package/src/recurrence-editor/recurrence-editor-model.d.ts +75 -75
  15. package/src/recurrence-editor/recurrence-editor.js +19 -19
  16. package/src/schedule/actions/action-base.js +1 -1
  17. package/src/schedule/actions/drag.js +13 -13
  18. package/src/schedule/actions/keyboard.js +12 -12
  19. package/src/schedule/actions/resize.js +27 -41
  20. package/src/schedule/base/interface.d.ts +2 -2
  21. package/src/schedule/base/schedule-model.d.ts +886 -886
  22. package/src/schedule/base/schedule.js +19 -19
  23. package/src/schedule/event-renderer/agenda-base.js +13 -13
  24. package/src/schedule/event-renderer/event-base.js +6 -4
  25. package/src/schedule/event-renderer/month.js +13 -13
  26. package/src/schedule/event-renderer/timeline-view.js +13 -13
  27. package/src/schedule/event-renderer/vertical-view.js +13 -13
  28. package/src/schedule/event-renderer/year.js +13 -13
  29. package/src/schedule/models/event-settings-model.d.ts +156 -156
  30. package/src/schedule/models/event-settings.js +19 -19
  31. package/src/schedule/models/field-options-model.d.ts +22 -22
  32. package/src/schedule/models/field-options.js +19 -19
  33. package/src/schedule/models/fields-model.d.ts +92 -92
  34. package/src/schedule/models/fields.js +19 -19
  35. package/src/schedule/models/group-model.d.ts +48 -48
  36. package/src/schedule/models/group.js +19 -19
  37. package/src/schedule/models/header-rows-model.d.ts +22 -22
  38. package/src/schedule/models/header-rows.js +19 -19
  39. package/src/schedule/models/quick-info-templates-model.d.ts +37 -37
  40. package/src/schedule/models/quick-info-templates.js +19 -19
  41. package/src/schedule/models/resources-model.d.ts +85 -85
  42. package/src/schedule/models/resources.js +19 -19
  43. package/src/schedule/models/time-scale-model.d.ts +40 -40
  44. package/src/schedule/models/time-scale.js +19 -19
  45. package/src/schedule/models/toolbar-model.d.ts +187 -187
  46. package/src/schedule/models/toolbar.js +19 -19
  47. package/src/schedule/models/views-model.d.ts +361 -361
  48. package/src/schedule/models/views.js +19 -19
  49. package/src/schedule/models/work-hours-model.d.ts +16 -16
  50. package/src/schedule/models/work-hours.js +19 -19
  51. package/src/schedule/renderer/agenda.js +13 -13
  52. package/src/schedule/renderer/day.js +13 -13
  53. package/src/schedule/renderer/header-renderer.js +11 -11
  54. package/src/schedule/renderer/month-agenda.js +13 -13
  55. package/src/schedule/renderer/month.js +13 -13
  56. package/src/schedule/renderer/timeline-month.js +13 -13
  57. package/src/schedule/renderer/timeline-view.js +13 -13
  58. package/src/schedule/renderer/timeline-year.js +13 -13
  59. package/src/schedule/renderer/vertical-view.js +13 -13
  60. package/src/schedule/renderer/week.js +13 -13
  61. package/src/schedule/renderer/work-week.js +13 -13
  62. package/src/schedule/renderer/year.js +13 -13
  63. package/styles/bds-lite.css +0 -12
  64. package/styles/bds-lite.scss +2 -2
  65. package/styles/bds.css +0 -20
  66. package/styles/bds.scss +4 -4
  67. package/styles/bootstrap-dark-lite.scss +2 -2
  68. package/styles/bootstrap-dark.scss +4 -4
  69. package/styles/bootstrap-lite.scss +2 -2
  70. package/styles/bootstrap.scss +4 -4
  71. package/styles/bootstrap4-lite.scss +2 -2
  72. package/styles/bootstrap4.scss +4 -4
  73. package/styles/bootstrap5-dark-lite.scss +2 -2
  74. package/styles/bootstrap5-dark.scss +4 -4
  75. package/styles/bootstrap5-lite.scss +2 -2
  76. package/styles/bootstrap5.3-lite.css +0 -252
  77. package/styles/bootstrap5.3-lite.scss +2 -2
  78. package/styles/bootstrap5.3.css +0 -420
  79. package/styles/bootstrap5.3.scss +4 -4
  80. package/styles/bootstrap5.scss +4 -4
  81. package/styles/fabric-dark-lite.scss +2 -2
  82. package/styles/fabric-dark.scss +4 -4
  83. package/styles/fabric-lite.scss +2 -2
  84. package/styles/fabric.scss +4 -4
  85. package/styles/fluent-dark-lite.scss +2 -2
  86. package/styles/fluent-dark.scss +4 -4
  87. package/styles/fluent-lite.scss +2 -2
  88. package/styles/fluent.scss +4 -4
  89. package/styles/fluent2-lite.css +0 -258
  90. package/styles/fluent2-lite.scss +2 -2
  91. package/styles/fluent2.css +0 -430
  92. package/styles/fluent2.scss +4 -4
  93. package/styles/highcontrast-light-lite.scss +2 -2
  94. package/styles/highcontrast-light.scss +4 -4
  95. package/styles/highcontrast-lite.scss +2 -2
  96. package/styles/highcontrast.scss +4 -4
  97. package/styles/material-dark-lite.scss +2 -2
  98. package/styles/material-dark.scss +4 -4
  99. package/styles/material-lite.scss +2 -2
  100. package/styles/material.scss +4 -4
  101. package/styles/material3-dark-lite.css +0 -246
  102. package/styles/material3-dark-lite.scss +2 -2
  103. package/styles/material3-dark.css +0 -410
  104. package/styles/material3-dark.scss +4 -4
  105. package/styles/material3-lite.css +0 -252
  106. package/styles/material3-lite.scss +2 -2
  107. package/styles/material3.css +0 -420
  108. package/styles/material3.scss +4 -4
  109. package/styles/recurrence-editor/_all.scss +2 -2
  110. package/styles/recurrence-editor/_bds-definition.scss +41 -41
  111. package/styles/recurrence-editor/_bigger.scss +135 -134
  112. package/styles/recurrence-editor/_bootstrap-dark-definition.scss +41 -41
  113. package/styles/recurrence-editor/_bootstrap-definition.scss +41 -41
  114. package/styles/recurrence-editor/_bootstrap4-definition.scss +41 -41
  115. package/styles/recurrence-editor/_bootstrap5-dark-definition.scss +41 -41
  116. package/styles/recurrence-editor/_bootstrap5-definition.scss +41 -41
  117. package/styles/recurrence-editor/_bootstrap5.3-definition.scss +41 -41
  118. package/styles/recurrence-editor/_fabric-dark-definition.scss +41 -41
  119. package/styles/recurrence-editor/_fabric-definition.scss +41 -41
  120. package/styles/recurrence-editor/_fluent-dark-definition.scss +41 -41
  121. package/styles/recurrence-editor/_fluent-definition.scss +41 -41
  122. package/styles/recurrence-editor/_fluent2-definition.scss +41 -41
  123. package/styles/recurrence-editor/_fusionnew-definition.scss +41 -41
  124. package/styles/recurrence-editor/_highcontrast-definition.scss +41 -41
  125. package/styles/recurrence-editor/_highcontrast-light-definition.scss +41 -41
  126. package/styles/recurrence-editor/_layout.scss +426 -425
  127. package/styles/recurrence-editor/_material-dark-definition.scss +41 -41
  128. package/styles/recurrence-editor/_material-definition.scss +41 -41
  129. package/styles/recurrence-editor/_material3-dark-definition.scss +41 -41
  130. package/styles/recurrence-editor/_material3-definition.scss +41 -41
  131. package/styles/recurrence-editor/_tailwind-dark-definition.scss +41 -41
  132. package/styles/recurrence-editor/_tailwind-definition.scss +41 -41
  133. package/styles/recurrence-editor/_tailwind3-definition.scss +41 -41
  134. package/styles/recurrence-editor/_theme.scss +1 -1
  135. package/styles/recurrence-editor/bds.css +0 -8
  136. package/styles/recurrence-editor/bds.scss +2 -2
  137. package/styles/recurrence-editor/bootstrap-dark.scss +2 -2
  138. package/styles/recurrence-editor/bootstrap.scss +2 -2
  139. package/styles/recurrence-editor/bootstrap4.scss +2 -2
  140. package/styles/recurrence-editor/bootstrap5-dark.scss +2 -2
  141. package/styles/recurrence-editor/bootstrap5.3.css +0 -168
  142. package/styles/recurrence-editor/bootstrap5.3.scss +2 -2
  143. package/styles/recurrence-editor/bootstrap5.scss +2 -2
  144. package/styles/recurrence-editor/fabric-dark.scss +2 -2
  145. package/styles/recurrence-editor/fabric.scss +2 -2
  146. package/styles/recurrence-editor/fluent-dark.scss +2 -2
  147. package/styles/recurrence-editor/fluent.scss +2 -2
  148. package/styles/recurrence-editor/fluent2.css +0 -172
  149. package/styles/recurrence-editor/fluent2.scss +2 -2
  150. package/styles/recurrence-editor/highcontrast-light.scss +2 -2
  151. package/styles/recurrence-editor/highcontrast.scss +2 -2
  152. package/styles/recurrence-editor/material-dark.scss +2 -2
  153. package/styles/recurrence-editor/material.scss +2 -2
  154. package/styles/recurrence-editor/material3-dark.css +0 -164
  155. package/styles/recurrence-editor/material3-dark.scss +2 -2
  156. package/styles/recurrence-editor/material3.css +0 -168
  157. package/styles/recurrence-editor/material3.scss +2 -2
  158. package/styles/recurrence-editor/tailwind-dark.scss +2 -2
  159. package/styles/recurrence-editor/tailwind.scss +2 -2
  160. package/styles/recurrence-editor/tailwind3.css +0 -148
  161. package/styles/recurrence-editor/tailwind3.scss +2 -2
  162. package/styles/schedule/_all.scss +2 -2
  163. package/styles/schedule/_bds-definition.scss +381 -381
  164. package/styles/schedule/_bigger.scss +803 -802
  165. package/styles/schedule/_bootstrap-dark-definition.scss +381 -381
  166. package/styles/schedule/_bootstrap-definition.scss +381 -381
  167. package/styles/schedule/_bootstrap4-definition.scss +384 -384
  168. package/styles/schedule/_bootstrap5-dark-definition.scss +385 -385
  169. package/styles/schedule/_bootstrap5-definition.scss +385 -385
  170. package/styles/schedule/_bootstrap5.3-definition.scss +385 -385
  171. package/styles/schedule/_fabric-dark-definition.scss +380 -380
  172. package/styles/schedule/_fabric-definition.scss +381 -381
  173. package/styles/schedule/_fluent-dark-definition.scss +385 -385
  174. package/styles/schedule/_fluent-definition.scss +385 -385
  175. package/styles/schedule/_fluent2-definition.scss +382 -382
  176. package/styles/schedule/_fusionnew-definition.scss +380 -380
  177. package/styles/schedule/_highcontrast-definition.scss +382 -382
  178. package/styles/schedule/_highcontrast-light-definition.scss +382 -382
  179. package/styles/schedule/_layout.scss +3875 -3874
  180. package/styles/schedule/_material-dark-definition.scss +379 -379
  181. package/styles/schedule/_material-definition.scss +379 -379
  182. package/styles/schedule/_material3-dark-definition.scss +384 -384
  183. package/styles/schedule/_material3-definition.scss +384 -384
  184. package/styles/schedule/_tailwind-dark-definition.scss +380 -380
  185. package/styles/schedule/_tailwind-definition.scss +380 -380
  186. package/styles/schedule/_tailwind3-definition.scss +385 -385
  187. package/styles/schedule/_theme.scss +587 -586
  188. package/styles/schedule/bds.css +0 -12
  189. package/styles/schedule/bds.scss +2 -2
  190. package/styles/schedule/bootstrap-dark.scss +2 -2
  191. package/styles/schedule/bootstrap.scss +2 -2
  192. package/styles/schedule/bootstrap4.scss +2 -2
  193. package/styles/schedule/bootstrap5-dark.scss +2 -2
  194. package/styles/schedule/bootstrap5.3.css +0 -252
  195. package/styles/schedule/bootstrap5.3.scss +2 -2
  196. package/styles/schedule/bootstrap5.scss +2 -2
  197. package/styles/schedule/fabric-dark.scss +2 -2
  198. package/styles/schedule/fabric.scss +2 -2
  199. package/styles/schedule/fluent-dark.scss +2 -2
  200. package/styles/schedule/fluent.scss +2 -2
  201. package/styles/schedule/fluent2.css +0 -258
  202. package/styles/schedule/fluent2.scss +2 -2
  203. package/styles/schedule/highcontrast-light.scss +2 -2
  204. package/styles/schedule/highcontrast.scss +2 -2
  205. package/styles/schedule/icons/_bds.scss +221 -221
  206. package/styles/schedule/icons/_bootstrap-dark.scss +224 -224
  207. package/styles/schedule/icons/_bootstrap.scss +224 -224
  208. package/styles/schedule/icons/_bootstrap4.scss +218 -218
  209. package/styles/schedule/icons/_bootstrap5.3.scss +221 -221
  210. package/styles/schedule/icons/_bootstrap5.scss +221 -221
  211. package/styles/schedule/icons/_fabric-dark.scss +224 -224
  212. package/styles/schedule/icons/_fabric.scss +224 -224
  213. package/styles/schedule/icons/_fluent.scss +221 -221
  214. package/styles/schedule/icons/_fluent2.scss +221 -221
  215. package/styles/schedule/icons/_fusionnew.scss +221 -221
  216. package/styles/schedule/icons/_highcontrast-light.scss +224 -224
  217. package/styles/schedule/icons/_highcontrast.scss +224 -224
  218. package/styles/schedule/icons/_material-dark.scss +224 -224
  219. package/styles/schedule/icons/_material.scss +224 -224
  220. package/styles/schedule/icons/_material3.scss +221 -221
  221. package/styles/schedule/icons/_tailwind.scss +221 -221
  222. package/styles/schedule/icons/_tailwind3.scss +221 -221
  223. package/styles/schedule/material-dark.scss +2 -2
  224. package/styles/schedule/material.scss +2 -2
  225. package/styles/schedule/material3-dark.css +0 -246
  226. package/styles/schedule/material3-dark.scss +2 -2
  227. package/styles/schedule/material3.css +0 -252
  228. package/styles/schedule/material3.scss +2 -2
  229. package/styles/schedule/tailwind-dark.scss +2 -2
  230. package/styles/schedule/tailwind.scss +2 -2
  231. package/styles/schedule/tailwind3.css +0 -222
  232. package/styles/schedule/tailwind3.scss +2 -2
  233. package/styles/tailwind-dark-lite.scss +2 -2
  234. package/styles/tailwind-dark.scss +4 -4
  235. package/styles/tailwind-lite.scss +2 -2
  236. package/styles/tailwind.scss +4 -4
  237. package/styles/tailwind3-lite.css +0 -222
  238. package/styles/tailwind3-lite.scss +2 -2
  239. package/styles/tailwind3.css +0 -370
  240. package/styles/tailwind3.scss +4 -4
  241. package/dist/ej2-schedule.min.js +0 -10
  242. package/dist/global/ej2-schedule.min.js +0 -11
  243. package/dist/global/ej2-schedule.min.js.map +0 -1
  244. package/dist/global/index.d.ts +0 -14
  245. package/helpers/e2e/index.d.ts +0 -5
  246. package/helpers/e2e/index.js +0 -9
  247. package/helpers/e2e/recurrence-editor.d.ts +0 -30
  248. package/helpers/e2e/recurrence-editor.js +0 -42
  249. package/helpers/e2e/schedule.d.ts +0 -50
  250. package/helpers/e2e/schedule.js +0 -45
  251. package/styles/recurrence-editor/_all.bds.scss +0 -2
  252. package/styles/recurrence-editor/_all.bootstrap-dark.scss +0 -2
  253. package/styles/recurrence-editor/_all.bootstrap.scss +0 -2
  254. package/styles/recurrence-editor/_all.bootstrap4.scss +0 -2
  255. package/styles/recurrence-editor/_all.bootstrap5-dark.scss +0 -2
  256. package/styles/recurrence-editor/_all.bootstrap5.3.scss +0 -2
  257. package/styles/recurrence-editor/_all.bootstrap5.scss +0 -2
  258. package/styles/recurrence-editor/_all.fabric-dark.scss +0 -2
  259. package/styles/recurrence-editor/_all.fabric.scss +0 -2
  260. package/styles/recurrence-editor/_all.fluent-dark.scss +0 -2
  261. package/styles/recurrence-editor/_all.fluent.scss +0 -2
  262. package/styles/recurrence-editor/_all.fluent2.scss +0 -2
  263. package/styles/recurrence-editor/_all.highcontrast-light.scss +0 -2
  264. package/styles/recurrence-editor/_all.highcontrast.scss +0 -2
  265. package/styles/recurrence-editor/_all.material-dark.scss +0 -2
  266. package/styles/recurrence-editor/_all.material.scss +0 -2
  267. package/styles/recurrence-editor/_all.material3-dark.scss +0 -2
  268. package/styles/recurrence-editor/_all.material3.scss +0 -2
  269. package/styles/recurrence-editor/_all.tailwind-dark.scss +0 -2
  270. package/styles/recurrence-editor/_all.tailwind.scss +0 -2
  271. package/styles/recurrence-editor/_all.tailwind3.scss +0 -2
  272. package/styles/recurrence-editor/_bigger.bds.scss +0 -3
  273. package/styles/recurrence-editor/_bigger.bootstrap-dark.scss +0 -3
  274. package/styles/recurrence-editor/_bigger.bootstrap.scss +0 -3
  275. package/styles/recurrence-editor/_bigger.bootstrap4.scss +0 -3
  276. package/styles/recurrence-editor/_bigger.bootstrap5-dark.scss +0 -3
  277. package/styles/recurrence-editor/_bigger.bootstrap5.3.scss +0 -3
  278. package/styles/recurrence-editor/_bigger.bootstrap5.scss +0 -3
  279. package/styles/recurrence-editor/_bigger.fabric-dark.scss +0 -3
  280. package/styles/recurrence-editor/_bigger.fabric.scss +0 -3
  281. package/styles/recurrence-editor/_bigger.fluent-dark.scss +0 -3
  282. package/styles/recurrence-editor/_bigger.fluent.scss +0 -3
  283. package/styles/recurrence-editor/_bigger.fluent2.scss +0 -3
  284. package/styles/recurrence-editor/_bigger.highcontrast-light.scss +0 -3
  285. package/styles/recurrence-editor/_bigger.highcontrast.scss +0 -3
  286. package/styles/recurrence-editor/_bigger.material-dark.scss +0 -3
  287. package/styles/recurrence-editor/_bigger.material.scss +0 -3
  288. package/styles/recurrence-editor/_bigger.material3-dark.scss +0 -3
  289. package/styles/recurrence-editor/_bigger.material3.scss +0 -3
  290. package/styles/recurrence-editor/_bigger.tailwind-dark.scss +0 -3
  291. package/styles/recurrence-editor/_bigger.tailwind.scss +0 -3
  292. package/styles/recurrence-editor/_bigger.tailwind3.scss +0 -3
  293. package/styles/recurrence-editor/_layout.bds.scss +0 -3
  294. package/styles/recurrence-editor/_layout.bootstrap-dark.scss +0 -3
  295. package/styles/recurrence-editor/_layout.bootstrap.scss +0 -3
  296. package/styles/recurrence-editor/_layout.bootstrap4.scss +0 -3
  297. package/styles/recurrence-editor/_layout.bootstrap5-dark.scss +0 -3
  298. package/styles/recurrence-editor/_layout.bootstrap5.3.scss +0 -3
  299. package/styles/recurrence-editor/_layout.bootstrap5.scss +0 -3
  300. package/styles/recurrence-editor/_layout.fabric-dark.scss +0 -3
  301. package/styles/recurrence-editor/_layout.fabric.scss +0 -3
  302. package/styles/recurrence-editor/_layout.fluent-dark.scss +0 -3
  303. package/styles/recurrence-editor/_layout.fluent.scss +0 -3
  304. package/styles/recurrence-editor/_layout.fluent2.scss +0 -3
  305. package/styles/recurrence-editor/_layout.highcontrast-light.scss +0 -3
  306. package/styles/recurrence-editor/_layout.highcontrast.scss +0 -3
  307. package/styles/recurrence-editor/_layout.material-dark.scss +0 -3
  308. package/styles/recurrence-editor/_layout.material.scss +0 -3
  309. package/styles/recurrence-editor/_layout.material3-dark.scss +0 -3
  310. package/styles/recurrence-editor/_layout.material3.scss +0 -3
  311. package/styles/recurrence-editor/_layout.tailwind-dark.scss +0 -3
  312. package/styles/recurrence-editor/_layout.tailwind.scss +0 -3
  313. package/styles/recurrence-editor/_layout.tailwind3.scss +0 -3
  314. package/styles/recurrence-editor/_theme-variables.bds.scss +0 -1
  315. package/styles/recurrence-editor/_theme-variables.bootstrap-dark.scss +0 -1
  316. package/styles/recurrence-editor/_theme-variables.bootstrap.scss +0 -1
  317. package/styles/recurrence-editor/_theme-variables.bootstrap4.scss +0 -1
  318. package/styles/recurrence-editor/_theme-variables.bootstrap5-dark.scss +0 -1
  319. package/styles/recurrence-editor/_theme-variables.bootstrap5.3.scss +0 -1
  320. package/styles/recurrence-editor/_theme-variables.bootstrap5.scss +0 -1
  321. package/styles/recurrence-editor/_theme-variables.fabric-dark.scss +0 -1
  322. package/styles/recurrence-editor/_theme-variables.fabric.scss +0 -1
  323. package/styles/recurrence-editor/_theme-variables.fluent-dark.scss +0 -1
  324. package/styles/recurrence-editor/_theme-variables.fluent.scss +0 -1
  325. package/styles/recurrence-editor/_theme-variables.fluent2.scss +0 -1
  326. package/styles/recurrence-editor/_theme-variables.highcontrast-light.scss +0 -1
  327. package/styles/recurrence-editor/_theme-variables.highcontrast.scss +0 -1
  328. package/styles/recurrence-editor/_theme-variables.material-dark.scss +0 -1
  329. package/styles/recurrence-editor/_theme-variables.material.scss +0 -1
  330. package/styles/recurrence-editor/_theme-variables.material3-dark.scss +0 -1
  331. package/styles/recurrence-editor/_theme-variables.material3.scss +0 -1
  332. package/styles/recurrence-editor/_theme-variables.tailwind-dark.scss +0 -1
  333. package/styles/recurrence-editor/_theme-variables.tailwind.scss +0 -1
  334. package/styles/recurrence-editor/_theme.bds.scss +0 -1
  335. package/styles/recurrence-editor/_theme.bootstrap-dark.scss +0 -1
  336. package/styles/recurrence-editor/_theme.bootstrap.scss +0 -1
  337. package/styles/recurrence-editor/_theme.bootstrap4.scss +0 -1
  338. package/styles/recurrence-editor/_theme.bootstrap5-dark.scss +0 -1
  339. package/styles/recurrence-editor/_theme.bootstrap5.3.scss +0 -1
  340. package/styles/recurrence-editor/_theme.bootstrap5.scss +0 -1
  341. package/styles/recurrence-editor/_theme.fabric-dark.scss +0 -1
  342. package/styles/recurrence-editor/_theme.fabric.scss +0 -1
  343. package/styles/recurrence-editor/_theme.fluent-dark.scss +0 -1
  344. package/styles/recurrence-editor/_theme.fluent.scss +0 -1
  345. package/styles/recurrence-editor/_theme.fluent2.scss +0 -1
  346. package/styles/recurrence-editor/_theme.highcontrast-light.scss +0 -1
  347. package/styles/recurrence-editor/_theme.highcontrast.scss +0 -1
  348. package/styles/recurrence-editor/_theme.material-dark.scss +0 -1
  349. package/styles/recurrence-editor/_theme.material.scss +0 -1
  350. package/styles/recurrence-editor/_theme.material3-dark.scss +0 -1
  351. package/styles/recurrence-editor/_theme.material3.scss +0 -1
  352. package/styles/recurrence-editor/_theme.tailwind-dark.scss +0 -1
  353. package/styles/recurrence-editor/_theme.tailwind.scss +0 -1
  354. package/styles/recurrence-editor/_theme.tailwind3.scss +0 -1
  355. package/styles/schedule/_all.bds.scss +0 -2
  356. package/styles/schedule/_all.bootstrap-dark.scss +0 -2
  357. package/styles/schedule/_all.bootstrap.scss +0 -2
  358. package/styles/schedule/_all.bootstrap4.scss +0 -2
  359. package/styles/schedule/_all.bootstrap5-dark.scss +0 -2
  360. package/styles/schedule/_all.bootstrap5.3.scss +0 -2
  361. package/styles/schedule/_all.bootstrap5.scss +0 -2
  362. package/styles/schedule/_all.fabric-dark.scss +0 -2
  363. package/styles/schedule/_all.fabric.scss +0 -2
  364. package/styles/schedule/_all.fluent-dark.scss +0 -2
  365. package/styles/schedule/_all.fluent.scss +0 -2
  366. package/styles/schedule/_all.fluent2.scss +0 -2
  367. package/styles/schedule/_all.highcontrast-light.scss +0 -2
  368. package/styles/schedule/_all.highcontrast.scss +0 -2
  369. package/styles/schedule/_all.material-dark.scss +0 -2
  370. package/styles/schedule/_all.material.scss +0 -2
  371. package/styles/schedule/_all.material3-dark.scss +0 -2
  372. package/styles/schedule/_all.material3.scss +0 -2
  373. package/styles/schedule/_all.tailwind-dark.scss +0 -2
  374. package/styles/schedule/_all.tailwind.scss +0 -2
  375. package/styles/schedule/_all.tailwind3.scss +0 -2
  376. package/styles/schedule/_bigger.bds.scss +0 -3
  377. package/styles/schedule/_bigger.bootstrap-dark.scss +0 -3
  378. package/styles/schedule/_bigger.bootstrap.scss +0 -3
  379. package/styles/schedule/_bigger.bootstrap4.scss +0 -3
  380. package/styles/schedule/_bigger.bootstrap5-dark.scss +0 -3
  381. package/styles/schedule/_bigger.bootstrap5.3.scss +0 -3
  382. package/styles/schedule/_bigger.bootstrap5.scss +0 -3
  383. package/styles/schedule/_bigger.fabric-dark.scss +0 -3
  384. package/styles/schedule/_bigger.fabric.scss +0 -3
  385. package/styles/schedule/_bigger.fluent-dark.scss +0 -3
  386. package/styles/schedule/_bigger.fluent.scss +0 -3
  387. package/styles/schedule/_bigger.fluent2.scss +0 -3
  388. package/styles/schedule/_bigger.highcontrast-light.scss +0 -3
  389. package/styles/schedule/_bigger.highcontrast.scss +0 -3
  390. package/styles/schedule/_bigger.material-dark.scss +0 -3
  391. package/styles/schedule/_bigger.material.scss +0 -3
  392. package/styles/schedule/_bigger.material3-dark.scss +0 -3
  393. package/styles/schedule/_bigger.material3.scss +0 -3
  394. package/styles/schedule/_bigger.tailwind-dark.scss +0 -3
  395. package/styles/schedule/_bigger.tailwind.scss +0 -3
  396. package/styles/schedule/_bigger.tailwind3.scss +0 -3
  397. package/styles/schedule/_layout.bds.scss +0 -3
  398. package/styles/schedule/_layout.bootstrap-dark.scss +0 -3
  399. package/styles/schedule/_layout.bootstrap.scss +0 -3
  400. package/styles/schedule/_layout.bootstrap4.scss +0 -3
  401. package/styles/schedule/_layout.bootstrap5-dark.scss +0 -3
  402. package/styles/schedule/_layout.bootstrap5.3.scss +0 -3
  403. package/styles/schedule/_layout.bootstrap5.scss +0 -3
  404. package/styles/schedule/_layout.fabric-dark.scss +0 -3
  405. package/styles/schedule/_layout.fabric.scss +0 -3
  406. package/styles/schedule/_layout.fluent-dark.scss +0 -3
  407. package/styles/schedule/_layout.fluent.scss +0 -3
  408. package/styles/schedule/_layout.fluent2.scss +0 -3
  409. package/styles/schedule/_layout.highcontrast-light.scss +0 -3
  410. package/styles/schedule/_layout.highcontrast.scss +0 -3
  411. package/styles/schedule/_layout.material-dark.scss +0 -3
  412. package/styles/schedule/_layout.material.scss +0 -3
  413. package/styles/schedule/_layout.material3-dark.scss +0 -3
  414. package/styles/schedule/_layout.material3.scss +0 -3
  415. package/styles/schedule/_layout.tailwind-dark.scss +0 -3
  416. package/styles/schedule/_layout.tailwind.scss +0 -3
  417. package/styles/schedule/_layout.tailwind3.scss +0 -3
  418. package/styles/schedule/_theme-variables.bds.scss +0 -1
  419. package/styles/schedule/_theme-variables.bootstrap-dark.scss +0 -1
  420. package/styles/schedule/_theme-variables.bootstrap.scss +0 -1
  421. package/styles/schedule/_theme-variables.bootstrap4.scss +0 -1
  422. package/styles/schedule/_theme-variables.bootstrap5-dark.scss +0 -1
  423. package/styles/schedule/_theme-variables.bootstrap5.3.scss +0 -1
  424. package/styles/schedule/_theme-variables.bootstrap5.scss +0 -1
  425. package/styles/schedule/_theme-variables.fabric-dark.scss +0 -1
  426. package/styles/schedule/_theme-variables.fabric.scss +0 -1
  427. package/styles/schedule/_theme-variables.fluent-dark.scss +0 -1
  428. package/styles/schedule/_theme-variables.fluent.scss +0 -1
  429. package/styles/schedule/_theme-variables.fluent2.scss +0 -1
  430. package/styles/schedule/_theme-variables.highcontrast-light.scss +0 -1
  431. package/styles/schedule/_theme-variables.highcontrast.scss +0 -1
  432. package/styles/schedule/_theme-variables.material-dark.scss +0 -1
  433. package/styles/schedule/_theme-variables.material.scss +0 -1
  434. package/styles/schedule/_theme-variables.material3-dark.scss +0 -1
  435. package/styles/schedule/_theme-variables.material3.scss +0 -1
  436. package/styles/schedule/_theme-variables.tailwind-dark.scss +0 -1
  437. package/styles/schedule/_theme-variables.tailwind.scss +0 -1
  438. package/styles/schedule/_theme.bds.scss +0 -4
  439. package/styles/schedule/_theme.bootstrap-dark.scss +0 -4
  440. package/styles/schedule/_theme.bootstrap.scss +0 -4
  441. package/styles/schedule/_theme.bootstrap4.scss +0 -4
  442. package/styles/schedule/_theme.bootstrap5-dark.scss +0 -4
  443. package/styles/schedule/_theme.bootstrap5.3.scss +0 -4
  444. package/styles/schedule/_theme.bootstrap5.scss +0 -4
  445. package/styles/schedule/_theme.fabric-dark.scss +0 -4
  446. package/styles/schedule/_theme.fabric.scss +0 -4
  447. package/styles/schedule/_theme.fluent-dark.scss +0 -4
  448. package/styles/schedule/_theme.fluent.scss +0 -4
  449. package/styles/schedule/_theme.fluent2.scss +0 -4
  450. package/styles/schedule/_theme.highcontrast-light.scss +0 -4
  451. package/styles/schedule/_theme.highcontrast.scss +0 -4
  452. package/styles/schedule/_theme.material-dark.scss +0 -4
  453. package/styles/schedule/_theme.material.scss +0 -4
  454. package/styles/schedule/_theme.material3-dark.scss +0 -4
  455. package/styles/schedule/_theme.material3.scss +0 -4
  456. package/styles/schedule/_theme.tailwind-dark.scss +0 -4
  457. package/styles/schedule/_theme.tailwind.scss +0 -4
  458. package/styles/schedule/_theme.tailwind3.scss +0 -4
  459. /package/styles/recurrence-editor/{_theme-variables.tailwind3.scss → _theme-variables.scss} +0 -0
  460. /package/styles/schedule/{_theme-variables.tailwind3.scss → _theme-variables.scss} +0 -0
@@ -1,802 +1,803 @@
1
- @use 'ej2-base/styles/common/mixin' as *;
2
- @mixin schedule-inline-appointment-styles {
3
- background: transparent;
4
- border: $schedule-border-0;
5
- color: $schedule-appointment-font-color;
6
- font-size: $schedule-font-size-13;
7
- font-weight: $schedule-font-weight-medium;
8
- line-height: $schedule-line-height-1-2;
9
- padding-top: $schedule-spacing-4;
10
- width: 100%;
11
- }
12
-
13
- @include export-module('schedule-bigger') {
14
- .e-bigger .e-schedule,
15
- .e-bigger.e-schedule {
16
- .e-schedule-toolbar {
17
- height: $schedule-tbar-bgr-size;
18
- min-height: $schedule-tbar-bgr-size;
19
-
20
- .e-tbar-btn .e-tbar-btn-text {
21
- font-size: $schedule-content-bgr-font-size;
22
- }
23
-
24
- .e-toolbar-item.e-date-range .e-tbar-btn-text {
25
- font-size: $schedule-header-bgr-font-size;
26
- }
27
-
28
- .e-icon-down-arrow {
29
- font-size: $schedule-tbar-down-arrow-font-size;
30
- }
31
-
32
- .e-schedule .e-toolbar .e-hor-nav {
33
- min-height: $schedule-tbar-bgr-items-size;
34
- min-width: $schedule-tbar-nav-bgr-width;
35
- z-index: 0;
36
- }
37
-
38
- .e-toolbar-item {
39
-
40
- .e-btn.e-tbar-btn .e-icons.e-btn-icon {
41
- font-size: $schedule-bigger-tbar-btn-font-size;
42
- }
43
-
44
- .e-tbar-btn-text {
45
- line-height: $schedule-line-height-inherit;
46
- }
47
- }
48
-
49
- .e-toolbar-items {
50
- min-height: $schedule-tbar-bgr-items-size;
51
-
52
- .e-toolbar-item {
53
- min-height: $schedule-tbar-bgr-items-size;
54
-
55
- &:not(.e-separator):not(.e-spacer) {
56
- min-width: $schedule-tbar-bgr-item-size;
57
- }
58
-
59
- &.e-separator {
60
- height: $schedule-tbar-separator-bgr-height;
61
- margin: $schedule-tbar-separator-bgr-mrgn;
62
- min-height: $schedule-tbar-separator-bgr-minheight;
63
- }
64
-
65
- .e-icons {
66
- min-width: $schedule-tbar-btn-icon-bgr-width;
67
- }
68
-
69
- button.e-btn,
70
- .e-tbar-btn.e-btn.e-control {
71
- height: $schedule-height-auto;
72
- line-height: $schedule-tbar-btn-bgr-line-height;
73
- margin: $schedule-tbar-btn-bgr-mrgn;
74
- min-width: $schedule-tbar-btn-bgr-minwidth;
75
- padding: $schedule-tbar-btn-bgr-padding;
76
-
77
- &.e-tbtn-txt {
78
- .e-icons.e-icon-right {
79
- padding: $schedule-tbar-btn-icn-right-bgr-padding;
80
- font-size: $schedule-bigger-tbar-btn-font-size;
81
- }
82
- }
83
-
84
- .e-btn-icon {
85
- padding-top: $schedule-tbar-btn-icn-right-bgr-padding-top;
86
- }
87
- }
88
-
89
- .e-tbar-btn .e-tbar-btn-text {
90
- font-size: $schedule-bgr-tbar-btn-text-font-size;
91
- }
92
- }
93
- }
94
- }
95
-
96
- .e-more-popup-wrapper {
97
- .e-header-day {
98
- font-size: $schedule-header-day-bgr-font-size;
99
- }
100
- }
101
-
102
- .e-vertical-view {
103
- .e-header-cells {
104
- .e-header-day {
105
- font-size: $schedule-header-day-bgr-font-size;
106
- }
107
-
108
- .e-header-date {
109
- font-size: $schedule-header-date-bgr-font-size;
110
- }
111
- }
112
-
113
- .e-resource-cells {
114
- font-size: $schedule-header-day-bgr-font-size;
115
- }
116
-
117
- .e-time-cells-wrap table td {
118
- font-size: $schedule-time-scale-bgr-font-size;
119
- }
120
-
121
- .e-clone-time-indicator,
122
- .e-current-time {
123
- font-size: $schedule-current-time-bgr-font-size;
124
- }
125
- }
126
-
127
- &.e-device {
128
- .e-vertical-view {
129
- .e-time-cells-wrap table td {
130
- font-size: $schedule-time-scale-device-font-size;
131
- }
132
-
133
- .e-clone-time-indicator,
134
- .e-current-time {
135
- font-size: $schedule-current-time-bgr-device-font-size;
136
- }
137
- }
138
- }
139
-
140
- .e-month-view {
141
- .e-header-cells {
142
- height: $schedule-month-header-cells-bgr-height;
143
- }
144
-
145
- .e-resource-cells,
146
- .e-date-header-wrap table td {
147
- font-size: $schedule-date-month-header-wrap-bgr-font-size;
148
- }
149
-
150
- .e-content-wrap {
151
- font-size: $schedule-date-month-header-wrap-bgr-font-size;
152
- }
153
-
154
- .e-m-date {
155
- font-size: $schedule-header-date-bgr-font-size;
156
- }
157
-
158
- .e-resource-name,
159
- .e-m-day {
160
- font-size: $schedule-header-day-bgr-font-size;
161
- }
162
- }
163
-
164
- .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
165
- min-width: $schedule-bgr-calendar-width;
166
- }
167
- }
168
-
169
- /*! schedule event tooltip */
170
-
171
- .e-bigger .e-schedule-event-tooltip,
172
- .e-schedule-event-tooltip.e-bigger {
173
- .e-subject {
174
- font-size: $schedule-font-size-14;
175
- font-weight: $schedule-font-weight-medium;
176
- }
177
- }
178
-
179
- .e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
180
- width: 520px;
181
- }
182
-
183
- .e-bigger .e-dialog.e-quick-dialog {
184
- min-width: 370px;
185
- }
186
-
187
- .e-bigger {
188
- .e-ddl.e-popup .e-resource-template {
189
- padding: $schedule-spacing-0 $schedule-spacing-15;
190
-
191
- .e-resource-color {
192
- height: $schedule-bigger-resource-color-size;
193
- margin-top: $schedule-bigger-resource-color-margin-top;
194
- width: $schedule-bigger-resource-color-size;
195
- }
196
- }
197
-
198
- .e-schedule-dialog {
199
- .e-disable {
200
- display: none;
201
- }
202
-
203
- .e-dlg-header-content {
204
- padding-bottom: $schedule-spacing-8;
205
- }
206
-
207
- .e-dlg-content {
208
- padding-bottom: $schedule-spacing-12;
209
- position: relative;
210
- }
211
-
212
- .e-subject-container,
213
- .e-start-container,
214
- .e-start-time-zone-container,
215
- .e-description-label {
216
- padding-right: $schedule-spacing-12;
217
- }
218
-
219
- .e-location-container,
220
- .e-end-container,
221
- .e-end-time-zone-container {
222
- padding-left: $schedule-spacing-12;
223
- }
224
-
225
- .e-all-day-container {
226
- padding-right: $schedule-spacing-16;
227
- }
228
-
229
- .e-time-zone-row {
230
- display: none;
231
-
232
- &.e-enable {
233
- display: flex;
234
- height: $schedule-timezone-enable-bgr-height;
235
- }
236
- }
237
-
238
- .e-title-location-row,
239
- .e-start-end-row,
240
- .e-start-input-container,
241
- .e-end-input-container,
242
- .e-time-zone-row {
243
- display: flex;
244
- padding-bottom: $schedule-bigger-dialog-row-container-padding-bottom;
245
- width: 100%;
246
- }
247
-
248
- .e-resources {
249
- padding-bottom: $schedule-spacing-12;
250
- width: 100%;
251
- }
252
-
253
- .e-all-day-time-zone-row {
254
- display: flex;
255
- padding-bottom: $schedule-spacing-20;
256
- padding-top: $schedule-spacing-0;
257
- width: 100%;
258
- }
259
-
260
- .e-subject-container,
261
- .e-location-container,
262
- .e-start-container,
263
- .e-end-container,
264
- .e-start-time-zone-container,
265
- .e-end-time-zone-container {
266
- width: 50%;
267
- }
268
-
269
- .e-location-container,
270
- .e-end-container,
271
- .e-end-time-zone-container,
272
- .e-start-container,
273
- .e-start-time-zone-container,
274
- .e-subject-container,
275
- .e-description-row,
276
- .e-repeat-container {
277
- padding-top: $schedule-spacing-0;
278
- }
279
-
280
- .e-all-day-time-zone-row {
281
- padding-bottom: $schedule-spacing-16;
282
- padding-top: $schedule-bigger-dialog-all-day-row-padding-top;
283
- }
284
-
285
- .e-description,
286
- .e-float-input .e-description {
287
- height: $schedule-height-50;
288
- resize: vertical;
289
- }
290
-
291
- .e-time-zone-row,
292
- .e-repeat-container,
293
- .e-input-group .e-input-group-icon.e-icon-disable {
294
- display: none;
295
- }
296
-
297
- &.e-rtl {
298
- .e-all-day-container {
299
- margin-left: $schedule-spacing-20;
300
- margin-right: $schedule-spacing-0;
301
- }
302
-
303
- .e-subject-container,
304
- .e-start-container,
305
- .e-start-time-zone-container,
306
- .e-description-label {
307
- padding-left: $schedule-spacing-12;
308
- padding-right: $schedule-spacing-0;
309
- }
310
-
311
- .e-location-container,
312
- .e-end-container,
313
- .e-end-time-zone-container {
314
- padding-left: $schedule-spacing-0;
315
- padding-right: $schedule-spacing-12;
316
- }
317
- }
318
- }
319
- }
320
-
321
- /*! schedule quick popup */
322
-
323
- .e-bigger .e-quick-popup-wrapper {
324
- .e-cell-popup .e-popup-content .e-popup-table .e-subject {
325
- font-size: $schedule-font-size-24;
326
- }
327
-
328
- .e-cell-popup .e-popup-content {
329
- padding: $schedule-bgr-cell-popup-content-padding;
330
- }
331
-
332
- .e-popup-footer {
333
- padding: $schedule-bgr-cell-popup-footer-padding;
334
- }
335
-
336
- .e-cell-popup .e-date-time-icon,
337
- .e-event-popup .e-date-time-icon {
338
- padding-right: $schedule-bgr-date-time-icon-padding-right;
339
- }
340
-
341
- .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close .e-close-icon {
342
- font-size: $schedule-font-size-16;
343
- }
344
-
345
- &.e-rtl {
346
- .e-cell-popup .e-date-time-icon {
347
- padding-right: $schedule-spacing-0;
348
- }
349
-
350
- .e-event-popup {
351
- .e-date-time-icon,
352
- .e-location-icon,
353
- .e-time-zone-icon,
354
- .e-description-icon,
355
- .e-resource-icon {
356
- padding-right: $schedule-bgr-rtl-event-popup-date-time-icon-padding-right;
357
- }
358
- }
359
- }
360
-
361
- .e-cell-popup .e-close.e-btn.e-small.e-round {
362
- height: $schedule-bgr-event-popup-header-icon-size;
363
- width: $schedule-bgr-event-popup-header-icon-size;
364
- }
365
-
366
- .e-event-popup {
367
- .e-edit.e-btn.e-small.e-round,
368
- .e-delete.e-btn.e-small.e-round,
369
- .e-close.e-btn.e-small.e-round {
370
- height: $schedule-bgr-event-popup-header-icon-size;
371
- width: $schedule-bgr-event-popup-header-icon-size;
372
- }
373
- }
374
-
375
- .e-event-popup .e-popup-header .e-header-icon-wrapper {
376
- .e-close-icon,
377
- .e-edit-icon,
378
- .e-delete-icon {
379
- font-size: $schedule-bigger-tbar-btn-font-size;
380
- }
381
- }
382
-
383
- &.e-device {
384
- .e-event-popup .e-popup-header .e-header-icon-wrapper {
385
- .e-close-icon,
386
- .e-edit-icon,
387
- .e-delete-icon {
388
- font-size: $schedule-font-icon-size-14;
389
- }
390
- }
391
-
392
- .e-multiple-event-popup .e-popup-header {
393
- .e-edit.e-btn.e-small.e-round,
394
- .e-delete.e-btn.e-small.e-round,
395
- .e-close.e-btn.e-small.e-round {
396
- height: $schedule-bgr-multiple-event-popup-icon-height;
397
- }
398
-
399
- .e-subject {
400
- padding: $schedule-bgr-multiple-event-popup-subject-padding;
401
- }
402
- }
403
- }
404
- }
405
-
406
- .e-bigger .e-agenda-view {
407
- .e-appointment {
408
- padding: $schedule-agenda-big-appointment-padding;
409
- }
410
- .e-subject,
411
- .e-inline-subject {
412
- font-size: $schedule-font-size-16;
413
- }
414
-
415
- .e-date-time {
416
- font-size: $schedule-font-size-14;
417
- }
418
-
419
- .e-day-date-header {
420
- .e-m-date {
421
- font-size: $schedule-font-size-20;
422
- }
423
-
424
- .e-m-day {
425
- font-size: $schedule-font-size-14;
426
- }
427
- }
428
- }
429
-
430
- .e-bigger .e-timeline-view {
431
- .e-resource-text {
432
- font-size: $schedule-font-size-14;
433
- padding-left: $schedule-spacing-12;
434
- }
435
-
436
- .e-navigate {
437
- font-size: $schedule-date-header-wrap-bgr-font-size;
438
- padding: $schedule-spacing-8 $schedule-spacing-0 $schedule-spacing-8 $schedule-spacing-8;
439
- }
440
-
441
- .e-date-header-wrap table tbody td > span {
442
- font-size: $schedule-date-header-wrap-bgr-font-size;
443
- padding: $schedule-spacing-8 $schedule-spacing-0 $schedule-spacing-8 $schedule-spacing-8;
444
- }
445
- }
446
-
447
- .e-bigger .e-schedule .e-month-view .e-current-date .e-date-header {
448
- width: 26px;
449
- }
450
- }
451
-
452
- .e-bigger .e-schedule-dialog.e-device {
453
- .e-dlg-header,
454
- .e-dlg-header * {
455
- width: 100%;
456
- }
457
-
458
- .e-dlg-header-content {
459
- background: $schedule-content-bg-color;
460
- box-shadow: $schedule-tbar-box-shadow;
461
- @if ($theme-name == 'fluent2') {
462
- box-shadow: none;
463
- }
464
- margin-bottom: $schedule-tbar-box-shadow-bottom-margin;
465
- }
466
-
467
- .e-title-location-row,
468
- .e-start-end-row,
469
- .e-time-zone-row,
470
- .e-start-input-container,
471
- .e-end-input-container {
472
- display: inline;
473
- }
474
-
475
- .e-time-zone-row {
476
- &.e-enable {
477
- display: inline;
478
- }
479
- }
480
-
481
- .e-subject-container,
482
- .e-location-container,
483
- .e-start-container,
484
- .e-end-container,
485
- .e-start-time-zone-container,
486
- .e-end-time-zone-container {
487
- padding-left: $schedule-spacing-0;
488
- width: 100%;
489
- }
490
-
491
- .e-subject-container,
492
- .e-start-container,
493
- .e-start-time-zone-container,
494
- .e-description-label {
495
- padding-right: $schedule-spacing-0;
496
- }
497
-
498
- .e-location-container,
499
- .e-end-container,
500
- .e-end-time-zone-container,
501
- .e-start-container,
502
- .e-start-time-zone-container,
503
- .e-subject-container,
504
- .e-description-row,
505
- .e-repeat-container {
506
- padding-top: $schedule-spacing-20;
507
- }
508
-
509
- .e-all-day-time-zone-row {
510
- padding-top: $schedule-device-dialog-all-day-row-padding-top;
511
- }
512
-
513
- .e-resources {
514
- padding-bottom: $schedule-spacing-0;
515
- padding-top: $schedule-spacing-20;
516
- }
517
-
518
- .e-description,
519
- .e-float-input .e-description {
520
- height: $schedule-height-60;
521
- resize: vertical;
522
- }
523
-
524
- .e-all-day-time-zone-row {
525
- margin-top: $schedule-spacing-0;
526
- padding-bottom: $schedule-spacing-0;
527
- }
528
-
529
- .e-repeat-parent-row {
530
- padding-top: $schedule-spacing-8;
531
- }
532
-
533
- .e-all-day-container {
534
- margin-right: $schedule-spacing-20;
535
- }
536
-
537
- .e-title-header {
538
- display: flex;
539
- width: 100%;
540
- }
541
-
542
- .e-save-icon,
543
- .e-back-icon,
544
- .e-forward-icon {
545
- cursor: pointer;
546
- line-height: $schedule-line-height-normal;
547
- }
548
-
549
- .e-title-text {
550
- text-align: center;
551
- }
552
-
553
- .e-save-icon,
554
- .e-back-icon,
555
- .e-delete-icon {
556
- width: 2.5em;
557
- }
558
-
559
- .e-save-icon,
560
- .e-delete-icon {
561
- text-align: right;
562
- }
563
-
564
- .e-time-zone-row,
565
- .e-input-group .e-input-group-icon.e-icon-disable {
566
- display: none;
567
- }
568
-
569
- .e-repeat-container {
570
- display: block;
571
- padding-right: $schedule-spacing-35;
572
- padding-left: $schedule-spacing-0;
573
- }
574
-
575
- .e-icon-down-arrow {
576
- font-size: $schedule-tbar-down-arrow-font-size;
577
- }
578
-
579
- &.e-rtl {
580
- .e-save-icon {
581
- text-align: left;
582
- }
583
-
584
- .e-all-day-container {
585
- margin-left: $schedule-spacing-20;
586
- margin-right: $schedule-spacing-0;
587
- }
588
-
589
- .e-subject-container,
590
- .e-start-container,
591
- .e-start-time-zone-container,
592
- .e-description-label {
593
- padding-left: $schedule-spacing-0;
594
- }
595
-
596
- .e-location-container,
597
- .e-end-container,
598
- .e-end-time-zone-container,
599
- .e-all-day-container {
600
- padding-right: $schedule-spacing-0;
601
- }
602
-
603
- .e-repeat-container {
604
- padding-left: $schedule-spacing-35;
605
- padding-right: $schedule-spacing-0;
606
- }
607
- }
608
-
609
- .e-recurrence-container {
610
- position: relative;
611
-
612
- &.e-hide {
613
- display: none;
614
- }
615
-
616
- .e-recurrence-edit-button {
617
- border: $schedule-border-0;
618
- box-shadow: none;
619
- margin: $schedule-negative-spacing-3 $schedule-spacing-5;
620
- position: absolute;
621
-
622
- .e-recurrence-edit.e-icons {
623
- font-size: $schedule-font-size-12;
624
- position: relative;
625
- top: 1px;
626
- }
627
- }
628
- }
629
- }
630
-
631
- .e-bigger .e-more-popup-wrapper {
632
- background: $schedule-popup-bg-color;
633
- border: $schedule-border-1 solid $schedule-popup-border-color;
634
- border-radius: $schedule-more-popup-wrapper-border-radius;
635
- box-shadow: $schedule-more-indicator-shadow-color-more-popup;
636
- opacity: 1;
637
- padding: $schedule-more-popup-padding;
638
- width: 225px;
639
-
640
- .e-more-appointment-wrapper {
641
- margin: $schedule-spacing-0 $schedule-spacing-4;
642
- }
643
-
644
- .e-more-event-popup {
645
- height: $schedule-height-p100;
646
- position: relative;
647
- width: 100%;
648
- }
649
-
650
- .e-more-event-header {
651
- height: $schedule-height-35;
652
- margin: $schedule-spacing-0 $schedule-spacing-8 $schedule-spacing-4 $schedule-spacing-14;
653
- }
654
-
655
- .e-more-event-content {
656
- color: $schedule-primary-content-font-color;
657
- height: calc($schedule-height-p100 - $schedule-height-35);
658
- max-height: 150px;
659
- overflow-y: auto;
660
- padding: $schedule-spacing-10 $schedule-spacing-10 $schedule-spacing-0;
661
-
662
- .e-appointment-border {
663
- border: $schedule-border-0;
664
- box-shadow: $schedule-event-box-shadow-1, $schedule-event-box-shadow-2, $schedule-event-box-shadow-3;
665
- }
666
- }
667
-
668
- .e-more-event-date-header {
669
- height: $schedule-height-p100;
670
- width: calc(100% - 25px);
671
-
672
- .e-current-date {
673
- color: $schedule-active-font-color;
674
- }
675
- }
676
-
677
- .e-header-day {
678
- color: $schedule-primary-content-font-color;
679
- font-size: $schedule-date-header-wrap-nrml-font-size;
680
- line-height: $schedule-line-height-1;
681
- padding-bottom: $schedule-more-appointment-margin-bottom;
682
- }
683
-
684
- .e-header-date {
685
- color: $schedule-primary-content-font-color;
686
- font-size: $schedule-header-date-nrml-font-size;
687
- line-height: $schedule-line-height-1;
688
- max-width: 15%;
689
-
690
- &:hover {
691
- cursor: pointer;
692
- text-decoration: underline;
693
- }
694
-
695
- &:focus {
696
- text-decoration: underline;
697
- }
698
- }
699
-
700
- .e-more-event-close {
701
- background: transparent;
702
- border: $schedule-border-0;
703
- box-shadow: none;
704
- color: $schedule-popup-icon-color;
705
- cursor: pointer;
706
- height: $schedule-height-25;
707
- padding: $schedule-bgr-more-event-close-icon-padding;
708
- position: absolute;
709
- right: 6px;
710
- width: 25px;
711
-
712
- .e-close-icon {
713
- font-size: $schedule-more-event-close-icon-font-size;
714
- }
715
-
716
- .e-btn-icon {
717
- margin-top: $schedule-more-popup-close-margin-top;
718
- }
719
-
720
- &:focus,
721
- &:hover {
722
- background: $schedule-popup-header-icon-focus-bg-color;
723
- border-radius: $schedule-border-radius-50;
724
- color: $schedule-popup-header-icon-focus-color;
725
- }
726
- }
727
-
728
- .e-appointment {
729
- background: $schedule-appointment-bg-color;
730
- border-radius: $schedule-appointment-border-radius;
731
- color: $schedule-appointment-font-color;
732
- display: flex;
733
- height: $schedule-month-appointment-height;
734
- line-height: $schedule-appointment-text-line-height;
735
- margin-bottom: $schedule-more-appointment-margin-bottom;
736
- padding: $schedule-spacing-2 $schedule-spacing-0;
737
- width: 100%;
738
-
739
- .e-subject {
740
- color: $schedule-appointment-font-color;
741
- flex: auto;
742
- font-size: $schedule-font-size-13;
743
- font-weight: $schedule-font-weight-medium;
744
- overflow: hidden;
745
- padding: $schedule-spacing-0 $schedule-spacing-2;
746
- text-overflow: ellipsis;
747
- white-space: nowrap;
748
- }
749
-
750
- .e-subject.e-disable {
751
- display: none;
752
- }
753
-
754
- .e-inline-subject {
755
- @include schedule-inline-appointment-styles;
756
- }
757
-
758
- .e-recurrence-icon,
759
- .e-recurrence-edit-icon {
760
- line-height: $schedule-recurrence-icon-line-height;
761
- padding: $schedule-spacing-0 $schedule-spacing-2;
762
- }
763
-
764
- &.e-appointment-border,
765
- &:focus {
766
- border: $schedule-border-0;
767
- box-shadow: $schedule-event-box-shadow-1, $schedule-event-box-shadow-2, $schedule-event-box-shadow-3;
768
- }
769
- }
770
-
771
- &.e-device {
772
- bottom: 0;
773
- height: $schedule-height-p100;
774
- left: 0;
775
- margin: $schedule-spacing-0;
776
- max-width: 100%;
777
- overflow: hidden;
778
- right: 0;
779
- top: 0;
780
- width: 100%;
781
- z-index: 1002;
782
-
783
- .e-more-event-content {
784
- max-height: unset;
785
- }
786
- }
787
-
788
- &.e-rtl {
789
- .e-header-date {
790
- padding-right: $schedule-spacing-10;
791
- }
792
-
793
- .e-header-day {
794
- padding-right: $schedule-spacing-10;
795
- }
796
-
797
- .e-more-event-close {
798
- left: 6px;
799
- right: auto;
800
- }
801
- }
802
- }
1
+ @use 'ej2-base/styles/common/mixin' as *;
2
+ @use './theme-variables' as *;
3
+ @mixin schedule-inline-appointment-styles {
4
+ background: transparent;
5
+ border: $schedule-border-0;
6
+ color: $schedule-appointment-font-color;
7
+ font-size: $schedule-font-size-13;
8
+ font-weight: $schedule-font-weight-medium;
9
+ line-height: $schedule-line-height-1-2;
10
+ padding-top: $schedule-spacing-4;
11
+ width: 100%;
12
+ }
13
+
14
+ @include export-module('schedule-bigger') {
15
+ .e-bigger .e-schedule,
16
+ .e-bigger.e-schedule {
17
+ .e-schedule-toolbar {
18
+ height: $schedule-tbar-bgr-size;
19
+ min-height: $schedule-tbar-bgr-size;
20
+
21
+ .e-tbar-btn .e-tbar-btn-text {
22
+ font-size: $schedule-content-bgr-font-size;
23
+ }
24
+
25
+ .e-toolbar-item.e-date-range .e-tbar-btn-text {
26
+ font-size: $schedule-header-bgr-font-size;
27
+ }
28
+
29
+ .e-icon-down-arrow {
30
+ font-size: $schedule-tbar-down-arrow-font-size;
31
+ }
32
+
33
+ .e-schedule .e-toolbar .e-hor-nav {
34
+ min-height: $schedule-tbar-bgr-items-size;
35
+ min-width: $schedule-tbar-nav-bgr-width;
36
+ z-index: 0;
37
+ }
38
+
39
+ .e-toolbar-item {
40
+
41
+ .e-btn.e-tbar-btn .e-icons.e-btn-icon {
42
+ font-size: $schedule-bigger-tbar-btn-font-size;
43
+ }
44
+
45
+ .e-tbar-btn-text {
46
+ line-height: $schedule-line-height-inherit;
47
+ }
48
+ }
49
+
50
+ .e-toolbar-items {
51
+ min-height: $schedule-tbar-bgr-items-size;
52
+
53
+ .e-toolbar-item {
54
+ min-height: $schedule-tbar-bgr-items-size;
55
+
56
+ &:not(.e-separator):not(.e-spacer) {
57
+ min-width: $schedule-tbar-bgr-item-size;
58
+ }
59
+
60
+ &.e-separator {
61
+ height: $schedule-tbar-separator-bgr-height;
62
+ margin: $schedule-tbar-separator-bgr-mrgn;
63
+ min-height: $schedule-tbar-separator-bgr-minheight;
64
+ }
65
+
66
+ .e-icons {
67
+ min-width: $schedule-tbar-btn-icon-bgr-width;
68
+ }
69
+
70
+ button.e-btn,
71
+ .e-tbar-btn.e-btn.e-control {
72
+ height: $schedule-height-auto;
73
+ line-height: $schedule-tbar-btn-bgr-line-height;
74
+ margin: $schedule-tbar-btn-bgr-mrgn;
75
+ min-width: $schedule-tbar-btn-bgr-minwidth;
76
+ padding: $schedule-tbar-btn-bgr-padding;
77
+
78
+ &.e-tbtn-txt {
79
+ .e-icons.e-icon-right {
80
+ padding: $schedule-tbar-btn-icn-right-bgr-padding;
81
+ font-size: $schedule-bigger-tbar-btn-font-size;
82
+ }
83
+ }
84
+
85
+ .e-btn-icon {
86
+ padding-top: $schedule-tbar-btn-icn-right-bgr-padding-top;
87
+ }
88
+ }
89
+
90
+ .e-tbar-btn .e-tbar-btn-text {
91
+ font-size: $schedule-bgr-tbar-btn-text-font-size;
92
+ }
93
+ }
94
+ }
95
+ }
96
+
97
+ .e-more-popup-wrapper {
98
+ .e-header-day {
99
+ font-size: $schedule-header-day-bgr-font-size;
100
+ }
101
+ }
102
+
103
+ .e-vertical-view {
104
+ .e-header-cells {
105
+ .e-header-day {
106
+ font-size: $schedule-header-day-bgr-font-size;
107
+ }
108
+
109
+ .e-header-date {
110
+ font-size: $schedule-header-date-bgr-font-size;
111
+ }
112
+ }
113
+
114
+ .e-resource-cells {
115
+ font-size: $schedule-header-day-bgr-font-size;
116
+ }
117
+
118
+ .e-time-cells-wrap table td {
119
+ font-size: $schedule-time-scale-bgr-font-size;
120
+ }
121
+
122
+ .e-clone-time-indicator,
123
+ .e-current-time {
124
+ font-size: $schedule-current-time-bgr-font-size;
125
+ }
126
+ }
127
+
128
+ &.e-device {
129
+ .e-vertical-view {
130
+ .e-time-cells-wrap table td {
131
+ font-size: $schedule-time-scale-device-font-size;
132
+ }
133
+
134
+ .e-clone-time-indicator,
135
+ .e-current-time {
136
+ font-size: $schedule-current-time-bgr-device-font-size;
137
+ }
138
+ }
139
+ }
140
+
141
+ .e-month-view {
142
+ .e-header-cells {
143
+ height: $schedule-month-header-cells-bgr-height;
144
+ }
145
+
146
+ .e-resource-cells,
147
+ .e-date-header-wrap table td {
148
+ font-size: $schedule-date-month-header-wrap-bgr-font-size;
149
+ }
150
+
151
+ .e-content-wrap {
152
+ font-size: $schedule-date-month-header-wrap-bgr-font-size;
153
+ }
154
+
155
+ .e-m-date {
156
+ font-size: $schedule-header-date-bgr-font-size;
157
+ }
158
+
159
+ .e-resource-name,
160
+ .e-m-day {
161
+ font-size: $schedule-header-day-bgr-font-size;
162
+ }
163
+ }
164
+
165
+ .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
166
+ min-width: $schedule-bgr-calendar-width;
167
+ }
168
+ }
169
+
170
+ /*! schedule event tooltip */
171
+
172
+ .e-bigger .e-schedule-event-tooltip,
173
+ .e-schedule-event-tooltip.e-bigger {
174
+ .e-subject {
175
+ font-size: $schedule-font-size-14;
176
+ font-weight: $schedule-font-weight-medium;
177
+ }
178
+ }
179
+
180
+ .e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
181
+ width: 520px;
182
+ }
183
+
184
+ .e-bigger .e-dialog.e-quick-dialog {
185
+ min-width: 370px;
186
+ }
187
+
188
+ .e-bigger {
189
+ .e-ddl.e-popup .e-resource-template {
190
+ padding: $schedule-spacing-0 $schedule-spacing-15;
191
+
192
+ .e-resource-color {
193
+ height: $schedule-bigger-resource-color-size;
194
+ margin-top: $schedule-bigger-resource-color-margin-top;
195
+ width: $schedule-bigger-resource-color-size;
196
+ }
197
+ }
198
+
199
+ .e-schedule-dialog {
200
+ .e-disable {
201
+ display: none;
202
+ }
203
+
204
+ .e-dlg-header-content {
205
+ padding-bottom: $schedule-spacing-8;
206
+ }
207
+
208
+ .e-dlg-content {
209
+ padding-bottom: $schedule-spacing-12;
210
+ position: relative;
211
+ }
212
+
213
+ .e-subject-container,
214
+ .e-start-container,
215
+ .e-start-time-zone-container,
216
+ .e-description-label {
217
+ padding-right: $schedule-spacing-12;
218
+ }
219
+
220
+ .e-location-container,
221
+ .e-end-container,
222
+ .e-end-time-zone-container {
223
+ padding-left: $schedule-spacing-12;
224
+ }
225
+
226
+ .e-all-day-container {
227
+ padding-right: $schedule-spacing-16;
228
+ }
229
+
230
+ .e-time-zone-row {
231
+ display: none;
232
+
233
+ &.e-enable {
234
+ display: flex;
235
+ height: $schedule-timezone-enable-bgr-height;
236
+ }
237
+ }
238
+
239
+ .e-title-location-row,
240
+ .e-start-end-row,
241
+ .e-start-input-container,
242
+ .e-end-input-container,
243
+ .e-time-zone-row {
244
+ display: flex;
245
+ padding-bottom: $schedule-bigger-dialog-row-container-padding-bottom;
246
+ width: 100%;
247
+ }
248
+
249
+ .e-resources {
250
+ padding-bottom: $schedule-spacing-12;
251
+ width: 100%;
252
+ }
253
+
254
+ .e-all-day-time-zone-row {
255
+ display: flex;
256
+ padding-bottom: $schedule-spacing-20;
257
+ padding-top: $schedule-spacing-0;
258
+ width: 100%;
259
+ }
260
+
261
+ .e-subject-container,
262
+ .e-location-container,
263
+ .e-start-container,
264
+ .e-end-container,
265
+ .e-start-time-zone-container,
266
+ .e-end-time-zone-container {
267
+ width: 50%;
268
+ }
269
+
270
+ .e-location-container,
271
+ .e-end-container,
272
+ .e-end-time-zone-container,
273
+ .e-start-container,
274
+ .e-start-time-zone-container,
275
+ .e-subject-container,
276
+ .e-description-row,
277
+ .e-repeat-container {
278
+ padding-top: $schedule-spacing-0;
279
+ }
280
+
281
+ .e-all-day-time-zone-row {
282
+ padding-bottom: $schedule-spacing-16;
283
+ padding-top: $schedule-bigger-dialog-all-day-row-padding-top;
284
+ }
285
+
286
+ .e-description,
287
+ .e-float-input .e-description {
288
+ height: $schedule-height-50;
289
+ resize: vertical;
290
+ }
291
+
292
+ .e-time-zone-row,
293
+ .e-repeat-container,
294
+ .e-input-group .e-input-group-icon.e-icon-disable {
295
+ display: none;
296
+ }
297
+
298
+ &.e-rtl {
299
+ .e-all-day-container {
300
+ margin-left: $schedule-spacing-20;
301
+ margin-right: $schedule-spacing-0;
302
+ }
303
+
304
+ .e-subject-container,
305
+ .e-start-container,
306
+ .e-start-time-zone-container,
307
+ .e-description-label {
308
+ padding-left: $schedule-spacing-12;
309
+ padding-right: $schedule-spacing-0;
310
+ }
311
+
312
+ .e-location-container,
313
+ .e-end-container,
314
+ .e-end-time-zone-container {
315
+ padding-left: $schedule-spacing-0;
316
+ padding-right: $schedule-spacing-12;
317
+ }
318
+ }
319
+ }
320
+ }
321
+
322
+ /*! schedule quick popup */
323
+
324
+ .e-bigger .e-quick-popup-wrapper {
325
+ .e-cell-popup .e-popup-content .e-popup-table .e-subject {
326
+ font-size: $schedule-font-size-24;
327
+ }
328
+
329
+ .e-cell-popup .e-popup-content {
330
+ padding: $schedule-bgr-cell-popup-content-padding;
331
+ }
332
+
333
+ .e-popup-footer {
334
+ padding: $schedule-bgr-cell-popup-footer-padding;
335
+ }
336
+
337
+ .e-cell-popup .e-date-time-icon,
338
+ .e-event-popup .e-date-time-icon {
339
+ padding-right: $schedule-bgr-date-time-icon-padding-right;
340
+ }
341
+
342
+ .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close .e-close-icon {
343
+ font-size: $schedule-font-size-16;
344
+ }
345
+
346
+ &.e-rtl {
347
+ .e-cell-popup .e-date-time-icon {
348
+ padding-right: $schedule-spacing-0;
349
+ }
350
+
351
+ .e-event-popup {
352
+ .e-date-time-icon,
353
+ .e-location-icon,
354
+ .e-time-zone-icon,
355
+ .e-description-icon,
356
+ .e-resource-icon {
357
+ padding-right: $schedule-bgr-rtl-event-popup-date-time-icon-padding-right;
358
+ }
359
+ }
360
+ }
361
+
362
+ .e-cell-popup .e-close.e-btn.e-small.e-round {
363
+ height: $schedule-bgr-event-popup-header-icon-size;
364
+ width: $schedule-bgr-event-popup-header-icon-size;
365
+ }
366
+
367
+ .e-event-popup {
368
+ .e-edit.e-btn.e-small.e-round,
369
+ .e-delete.e-btn.e-small.e-round,
370
+ .e-close.e-btn.e-small.e-round {
371
+ height: $schedule-bgr-event-popup-header-icon-size;
372
+ width: $schedule-bgr-event-popup-header-icon-size;
373
+ }
374
+ }
375
+
376
+ .e-event-popup .e-popup-header .e-header-icon-wrapper {
377
+ .e-close-icon,
378
+ .e-edit-icon,
379
+ .e-delete-icon {
380
+ font-size: $schedule-bigger-tbar-btn-font-size;
381
+ }
382
+ }
383
+
384
+ &.e-device {
385
+ .e-event-popup .e-popup-header .e-header-icon-wrapper {
386
+ .e-close-icon,
387
+ .e-edit-icon,
388
+ .e-delete-icon {
389
+ font-size: $schedule-font-icon-size-14;
390
+ }
391
+ }
392
+
393
+ .e-multiple-event-popup .e-popup-header {
394
+ .e-edit.e-btn.e-small.e-round,
395
+ .e-delete.e-btn.e-small.e-round,
396
+ .e-close.e-btn.e-small.e-round {
397
+ height: $schedule-bgr-multiple-event-popup-icon-height;
398
+ }
399
+
400
+ .e-subject {
401
+ padding: $schedule-bgr-multiple-event-popup-subject-padding;
402
+ }
403
+ }
404
+ }
405
+ }
406
+
407
+ .e-bigger .e-agenda-view {
408
+ .e-appointment {
409
+ padding: $schedule-agenda-big-appointment-padding;
410
+ }
411
+ .e-subject,
412
+ .e-inline-subject {
413
+ font-size: $schedule-font-size-16;
414
+ }
415
+
416
+ .e-date-time {
417
+ font-size: $schedule-font-size-14;
418
+ }
419
+
420
+ .e-day-date-header {
421
+ .e-m-date {
422
+ font-size: $schedule-font-size-20;
423
+ }
424
+
425
+ .e-m-day {
426
+ font-size: $schedule-font-size-14;
427
+ }
428
+ }
429
+ }
430
+
431
+ .e-bigger .e-timeline-view {
432
+ .e-resource-text {
433
+ font-size: $schedule-font-size-14;
434
+ padding-left: $schedule-spacing-12;
435
+ }
436
+
437
+ .e-navigate {
438
+ font-size: $schedule-date-header-wrap-bgr-font-size;
439
+ padding: $schedule-spacing-8 $schedule-spacing-0 $schedule-spacing-8 $schedule-spacing-8;
440
+ }
441
+
442
+ .e-date-header-wrap table tbody td > span {
443
+ font-size: $schedule-date-header-wrap-bgr-font-size;
444
+ padding: $schedule-spacing-8 $schedule-spacing-0 $schedule-spacing-8 $schedule-spacing-8;
445
+ }
446
+ }
447
+
448
+ .e-bigger .e-schedule .e-month-view .e-current-date .e-date-header {
449
+ width: 26px;
450
+ }
451
+ }
452
+
453
+ .e-bigger .e-schedule-dialog.e-device {
454
+ .e-dlg-header,
455
+ .e-dlg-header * {
456
+ width: 100%;
457
+ }
458
+
459
+ .e-dlg-header-content {
460
+ background: $schedule-content-bg-color;
461
+ box-shadow: $schedule-tbar-box-shadow;
462
+ @if ($theme-name == 'fluent2') {
463
+ box-shadow: none;
464
+ }
465
+ margin-bottom: $schedule-tbar-box-shadow-bottom-margin;
466
+ }
467
+
468
+ .e-title-location-row,
469
+ .e-start-end-row,
470
+ .e-time-zone-row,
471
+ .e-start-input-container,
472
+ .e-end-input-container {
473
+ display: inline;
474
+ }
475
+
476
+ .e-time-zone-row {
477
+ &.e-enable {
478
+ display: inline;
479
+ }
480
+ }
481
+
482
+ .e-subject-container,
483
+ .e-location-container,
484
+ .e-start-container,
485
+ .e-end-container,
486
+ .e-start-time-zone-container,
487
+ .e-end-time-zone-container {
488
+ padding-left: $schedule-spacing-0;
489
+ width: 100%;
490
+ }
491
+
492
+ .e-subject-container,
493
+ .e-start-container,
494
+ .e-start-time-zone-container,
495
+ .e-description-label {
496
+ padding-right: $schedule-spacing-0;
497
+ }
498
+
499
+ .e-location-container,
500
+ .e-end-container,
501
+ .e-end-time-zone-container,
502
+ .e-start-container,
503
+ .e-start-time-zone-container,
504
+ .e-subject-container,
505
+ .e-description-row,
506
+ .e-repeat-container {
507
+ padding-top: $schedule-spacing-20;
508
+ }
509
+
510
+ .e-all-day-time-zone-row {
511
+ padding-top: $schedule-device-dialog-all-day-row-padding-top;
512
+ }
513
+
514
+ .e-resources {
515
+ padding-bottom: $schedule-spacing-0;
516
+ padding-top: $schedule-spacing-20;
517
+ }
518
+
519
+ .e-description,
520
+ .e-float-input .e-description {
521
+ height: $schedule-height-60;
522
+ resize: vertical;
523
+ }
524
+
525
+ .e-all-day-time-zone-row {
526
+ margin-top: $schedule-spacing-0;
527
+ padding-bottom: $schedule-spacing-0;
528
+ }
529
+
530
+ .e-repeat-parent-row {
531
+ padding-top: $schedule-spacing-8;
532
+ }
533
+
534
+ .e-all-day-container {
535
+ margin-right: $schedule-spacing-20;
536
+ }
537
+
538
+ .e-title-header {
539
+ display: flex;
540
+ width: 100%;
541
+ }
542
+
543
+ .e-save-icon,
544
+ .e-back-icon,
545
+ .e-forward-icon {
546
+ cursor: pointer;
547
+ line-height: $schedule-line-height-normal;
548
+ }
549
+
550
+ .e-title-text {
551
+ text-align: center;
552
+ }
553
+
554
+ .e-save-icon,
555
+ .e-back-icon,
556
+ .e-delete-icon {
557
+ width: 2.5em;
558
+ }
559
+
560
+ .e-save-icon,
561
+ .e-delete-icon {
562
+ text-align: right;
563
+ }
564
+
565
+ .e-time-zone-row,
566
+ .e-input-group .e-input-group-icon.e-icon-disable {
567
+ display: none;
568
+ }
569
+
570
+ .e-repeat-container {
571
+ display: block;
572
+ padding-right: $schedule-spacing-35;
573
+ padding-left: $schedule-spacing-0;
574
+ }
575
+
576
+ .e-icon-down-arrow {
577
+ font-size: $schedule-tbar-down-arrow-font-size;
578
+ }
579
+
580
+ &.e-rtl {
581
+ .e-save-icon {
582
+ text-align: left;
583
+ }
584
+
585
+ .e-all-day-container {
586
+ margin-left: $schedule-spacing-20;
587
+ margin-right: $schedule-spacing-0;
588
+ }
589
+
590
+ .e-subject-container,
591
+ .e-start-container,
592
+ .e-start-time-zone-container,
593
+ .e-description-label {
594
+ padding-left: $schedule-spacing-0;
595
+ }
596
+
597
+ .e-location-container,
598
+ .e-end-container,
599
+ .e-end-time-zone-container,
600
+ .e-all-day-container {
601
+ padding-right: $schedule-spacing-0;
602
+ }
603
+
604
+ .e-repeat-container {
605
+ padding-left: $schedule-spacing-35;
606
+ padding-right: $schedule-spacing-0;
607
+ }
608
+ }
609
+
610
+ .e-recurrence-container {
611
+ position: relative;
612
+
613
+ &.e-hide {
614
+ display: none;
615
+ }
616
+
617
+ .e-recurrence-edit-button {
618
+ border: $schedule-border-0;
619
+ box-shadow: none;
620
+ margin: $schedule-negative-spacing-3 $schedule-spacing-5;
621
+ position: absolute;
622
+
623
+ .e-recurrence-edit.e-icons {
624
+ font-size: $schedule-font-size-12;
625
+ position: relative;
626
+ top: 1px;
627
+ }
628
+ }
629
+ }
630
+ }
631
+
632
+ .e-bigger .e-more-popup-wrapper {
633
+ background: $schedule-popup-bg-color;
634
+ border: $schedule-border-1 solid $schedule-popup-border-color;
635
+ border-radius: $schedule-more-popup-wrapper-border-radius;
636
+ box-shadow: $schedule-more-indicator-shadow-color-more-popup;
637
+ opacity: 1;
638
+ padding: $schedule-more-popup-padding;
639
+ width: 225px;
640
+
641
+ .e-more-appointment-wrapper {
642
+ margin: $schedule-spacing-0 $schedule-spacing-4;
643
+ }
644
+
645
+ .e-more-event-popup {
646
+ height: $schedule-height-p100;
647
+ position: relative;
648
+ width: 100%;
649
+ }
650
+
651
+ .e-more-event-header {
652
+ height: $schedule-height-35;
653
+ margin: $schedule-spacing-0 $schedule-spacing-8 $schedule-spacing-4 $schedule-spacing-14;
654
+ }
655
+
656
+ .e-more-event-content {
657
+ color: $schedule-primary-content-font-color;
658
+ height: calc($schedule-height-p100 - $schedule-height-35);
659
+ max-height: 150px;
660
+ overflow-y: auto;
661
+ padding: $schedule-spacing-10 $schedule-spacing-10 $schedule-spacing-0;
662
+
663
+ .e-appointment-border {
664
+ border: $schedule-border-0;
665
+ box-shadow: $schedule-event-box-shadow-1, $schedule-event-box-shadow-2, $schedule-event-box-shadow-3;
666
+ }
667
+ }
668
+
669
+ .e-more-event-date-header {
670
+ height: $schedule-height-p100;
671
+ width: calc(100% - 25px);
672
+
673
+ .e-current-date {
674
+ color: $schedule-active-font-color;
675
+ }
676
+ }
677
+
678
+ .e-header-day {
679
+ color: $schedule-primary-content-font-color;
680
+ font-size: $schedule-date-header-wrap-nrml-font-size;
681
+ line-height: $schedule-line-height-1;
682
+ padding-bottom: $schedule-more-appointment-margin-bottom;
683
+ }
684
+
685
+ .e-header-date {
686
+ color: $schedule-primary-content-font-color;
687
+ font-size: $schedule-header-date-nrml-font-size;
688
+ line-height: $schedule-line-height-1;
689
+ max-width: 15%;
690
+
691
+ &:hover {
692
+ cursor: pointer;
693
+ text-decoration: underline;
694
+ }
695
+
696
+ &:focus {
697
+ text-decoration: underline;
698
+ }
699
+ }
700
+
701
+ .e-more-event-close {
702
+ background: transparent;
703
+ border: $schedule-border-0;
704
+ box-shadow: none;
705
+ color: $schedule-popup-icon-color;
706
+ cursor: pointer;
707
+ height: $schedule-height-25;
708
+ padding: $schedule-bgr-more-event-close-icon-padding;
709
+ position: absolute;
710
+ right: 6px;
711
+ width: 25px;
712
+
713
+ .e-close-icon {
714
+ font-size: $schedule-more-event-close-icon-font-size;
715
+ }
716
+
717
+ .e-btn-icon {
718
+ margin-top: $schedule-more-popup-close-margin-top;
719
+ }
720
+
721
+ &:focus,
722
+ &:hover {
723
+ background: $schedule-popup-header-icon-focus-bg-color;
724
+ border-radius: $schedule-border-radius-50;
725
+ color: $schedule-popup-header-icon-focus-color;
726
+ }
727
+ }
728
+
729
+ .e-appointment {
730
+ background: $schedule-appointment-bg-color;
731
+ border-radius: $schedule-appointment-border-radius;
732
+ color: $schedule-appointment-font-color;
733
+ display: flex;
734
+ height: $schedule-month-appointment-height;
735
+ line-height: $schedule-appointment-text-line-height;
736
+ margin-bottom: $schedule-more-appointment-margin-bottom;
737
+ padding: $schedule-spacing-2 $schedule-spacing-0;
738
+ width: 100%;
739
+
740
+ .e-subject {
741
+ color: $schedule-appointment-font-color;
742
+ flex: auto;
743
+ font-size: $schedule-font-size-13;
744
+ font-weight: $schedule-font-weight-medium;
745
+ overflow: hidden;
746
+ padding: $schedule-spacing-0 $schedule-spacing-2;
747
+ text-overflow: ellipsis;
748
+ white-space: nowrap;
749
+ }
750
+
751
+ .e-subject.e-disable {
752
+ display: none;
753
+ }
754
+
755
+ .e-inline-subject {
756
+ @include schedule-inline-appointment-styles;
757
+ }
758
+
759
+ .e-recurrence-icon,
760
+ .e-recurrence-edit-icon {
761
+ line-height: $schedule-recurrence-icon-line-height;
762
+ padding: $schedule-spacing-0 $schedule-spacing-2;
763
+ }
764
+
765
+ &.e-appointment-border,
766
+ &:focus {
767
+ border: $schedule-border-0;
768
+ box-shadow: $schedule-event-box-shadow-1, $schedule-event-box-shadow-2, $schedule-event-box-shadow-3;
769
+ }
770
+ }
771
+
772
+ &.e-device {
773
+ bottom: 0;
774
+ height: $schedule-height-p100;
775
+ left: 0;
776
+ margin: $schedule-spacing-0;
777
+ max-width: 100%;
778
+ overflow: hidden;
779
+ right: 0;
780
+ top: 0;
781
+ width: 100%;
782
+ z-index: 1002;
783
+
784
+ .e-more-event-content {
785
+ max-height: unset;
786
+ }
787
+ }
788
+
789
+ &.e-rtl {
790
+ .e-header-date {
791
+ padding-right: $schedule-spacing-10;
792
+ }
793
+
794
+ .e-header-day {
795
+ padding-right: $schedule-spacing-10;
796
+ }
797
+
798
+ .e-more-event-close {
799
+ left: 6px;
800
+ right: auto;
801
+ }
802
+ }
803
+ }