File tree Expand file tree Collapse file tree 8 files changed +23
-4
lines changed
Demos/Scheduler/Templates/jQuery Expand file tree Collapse file tree 8 files changed +23
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ $(() => {
1515 height : 600 ,
1616 groups : [ 'theatreId' ] ,
1717 crossScrollingEnabled : true ,
18- maxAppointmentsPerCell : 1 ,
1918 cellDuration : 20 ,
2019 resources : [ {
2120 fieldExpr : 'movieId' ,
@@ -47,7 +46,7 @@ $(() => {
4746 {
4847 template : ( ) => {
4948 $movieInfoContainer = $ ( '<div class="movie-info-container">' ) ;
50- updateMovieInfoContainer ( movie ) ;
49+ updateMovieInfoContainer ( { } ) ;
5150 return $movieInfoContainer ;
5251 } ,
5352 } ,
Original file line number Diff line number Diff line change 1111 width : 80px ;
1212 border-radius : 2px ;
1313 overflow : hidden;
14+ border : 1px solid var (--dx-color-border );
1415}
1516
1617.movie-preview-image img {
3738
3839.movie-info-container {
3940 border-radius : 8px ;
40- padding : 8px ;
41+ padding-bottom : 8px ;
4142}
4243
4344.movie-info {
4445 display : flex;
4546 gap : 12px ;
4647}
4748
49+ .dx-theme-material .movie-info {
50+ gap : 16px ;
51+ }
52+
4853.movie-info .movie-details {
4954 text-align : left;
5055}
5459 font-size : 14px ;
5560 margin-bottom : 8px ;
5661}
62+
63+ .dx-scheduler-form-end-date-group .dx-field-item {
64+ padding-bottom : 12px ;
65+ }
66+
67+ .long-title h3 {
68+ font-weight : 200 ;
69+ font-size : 28px ;
70+ text-align : center;
71+ margin-bottom : 20px ;
72+ }
73+
74+ .dx-scheduler-appointment ::before {
75+ opacity : 0.26 !important ;
76+ }
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import dateUtils from '@js/core/utils/date';
66import { Deferred , when } from '@js/core/utils/deferred' ;
77import { getWidth } from '@js/core/utils/size' ;
88import { getWindow } from '@js/core/utils/window' ;
9- import type { ToolbarItem } from '@js/ui/popup' ;
9+ import type { dxPopupOptions , ToolbarItem } from '@js/ui/popup' ;
1010import type dxPopup from '@js/ui/popup' ;
1111import Popup from '@js/ui/popup/ui.popup' ;
1212import { current , isFluent } from '@js/ui/themes' ;
You can’t perform that action at this time.
0 commit comments