@syncfusion/blazor-themes 24.2.6 → 24.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/SCSS-Themes/bootstrap-dark.scss +58 -1
- package/SCSS-Themes/bootstrap.scss +58 -1
- package/SCSS-Themes/bootstrap4.scss +60 -3
- package/SCSS-Themes/bootstrap5-dark.scss +58 -1
- package/SCSS-Themes/bootstrap5.scss +58 -1
- package/SCSS-Themes/buttons/button/tailwind-dark.scss +1 -1
- package/SCSS-Themes/buttons/button/tailwind.scss +1 -1
- package/SCSS-Themes/fabric-dark.scss +58 -1
- package/SCSS-Themes/fabric.scss +58 -1
- package/SCSS-Themes/fluent-dark.scss +60 -3
- package/SCSS-Themes/fluent.scss +60 -3
- package/SCSS-Themes/grids/grid/bootstrap4.scss +2 -2
- package/SCSS-Themes/grids/grid/fluent-dark.scss +2 -2
- package/SCSS-Themes/grids/grid/fluent.scss +2 -2
- package/SCSS-Themes/highcontrast.scss +58 -1
- package/SCSS-Themes/material-dark.scss +58 -1
- package/SCSS-Themes/material.scss +58 -1
- package/SCSS-Themes/material3-dark.scss +58 -1
- package/SCSS-Themes/material3.scss +58 -1
- package/SCSS-Themes/pivotview/pivotview/bootstrap-dark.scss +1 -1
- package/SCSS-Themes/pivotview/pivotview/bootstrap.scss +1 -1
- package/SCSS-Themes/pivotview/pivotview/bootstrap4.scss +1 -1
- package/SCSS-Themes/pivotview/pivotview/bootstrap5-dark.scss +1 -1
- package/SCSS-Themes/pivotview/pivotview/bootstrap5.scss +1 -1
- package/SCSS-Themes/pivotview/pivotview/fabric-dark.scss +1 -1
- package/SCSS-Themes/pivotview/pivotview/fabric.scss +1 -1
- package/SCSS-Themes/pivotview/pivotview/fluent-dark.scss +1 -1
- package/SCSS-Themes/pivotview/pivotview/fluent.scss +1 -1
- package/SCSS-Themes/pivotview/pivotview/highcontrast.scss +1 -1
- package/SCSS-Themes/pivotview/pivotview/material-dark.scss +1 -1
- package/SCSS-Themes/pivotview/pivotview/material.scss +1 -1
- package/SCSS-Themes/pivotview/pivotview/material3-dark.scss +1 -1
- package/SCSS-Themes/pivotview/pivotview/material3.scss +1 -1
- package/SCSS-Themes/pivotview/pivotview/tailwind-dark.scss +1 -1
- package/SCSS-Themes/pivotview/pivotview/tailwind.scss +1 -1
- package/SCSS-Themes/schedule/schedule/bootstrap-dark.scss +57 -0
- package/SCSS-Themes/schedule/schedule/bootstrap.scss +57 -0
- package/SCSS-Themes/schedule/schedule/bootstrap4.scss +57 -0
- package/SCSS-Themes/schedule/schedule/bootstrap5-dark.scss +57 -0
- package/SCSS-Themes/schedule/schedule/bootstrap5.scss +57 -0
- package/SCSS-Themes/schedule/schedule/fabric-dark.scss +57 -0
- package/SCSS-Themes/schedule/schedule/fabric.scss +57 -0
- package/SCSS-Themes/schedule/schedule/fluent-dark.scss +57 -0
- package/SCSS-Themes/schedule/schedule/fluent.scss +57 -0
- package/SCSS-Themes/schedule/schedule/highcontrast.scss +57 -0
- package/SCSS-Themes/schedule/schedule/material-dark.scss +57 -0
- package/SCSS-Themes/schedule/schedule/material.scss +57 -0
- package/SCSS-Themes/schedule/schedule/material3-dark.scss +57 -0
- package/SCSS-Themes/schedule/schedule/material3.scss +57 -0
- package/SCSS-Themes/schedule/schedule/tailwind-dark.scss +57 -0
- package/SCSS-Themes/schedule/schedule/tailwind.scss +57 -0
- package/SCSS-Themes/tailwind-dark.scss +59 -2
- package/SCSS-Themes/tailwind.scss +59 -2
- package/package.json +1 -1
|
@@ -212,6 +212,7 @@ $schedule-tbar-right-items-btn-border-radius: 20px !default;
|
|
|
212
212
|
$schedule-tbar-right-active-items-btn-border: 1px solid rgba($primary) !default;
|
|
213
213
|
$schedule-device-tbar-right-items-btn-border-radius: 0 !default;
|
|
214
214
|
$schedule-device-tbar-right-items-btn-border: none !default;
|
|
215
|
+
$schedule-device-font-size: 8px !default;
|
|
215
216
|
|
|
216
217
|
// view definitions
|
|
217
218
|
$schedule-timeline-header-cells-height: 40px !default;
|
|
@@ -554,6 +555,28 @@ $schedule-bgr-tbar-btn-text-font-size: $schedule-header-nrml-font-size !default;
|
|
|
554
555
|
}
|
|
555
556
|
}
|
|
556
557
|
|
|
558
|
+
@media screen and (max-width: 320px) {
|
|
559
|
+
.e-schedule-toolbar {
|
|
560
|
+
.e-toolbar-pop {
|
|
561
|
+
width: 100%;
|
|
562
|
+
|
|
563
|
+
.e-toolbar-item .e-tbar-btn.e-btn {
|
|
564
|
+
padding-left: 7px;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
&.e-rtl {
|
|
568
|
+
.e-toolbar-item .e-tbar-btn.e-btn {
|
|
569
|
+
padding-right: 7px;
|
|
570
|
+
}
|
|
571
|
+
}
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.e-tbar-btn .e-tbar-btn-text {
|
|
575
|
+
font-size: $schedule-device-font-size;
|
|
576
|
+
}
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
|
|
557
580
|
.e-schedule-resource-toolbar {
|
|
558
581
|
background: $schedule-tbar-default-bg;
|
|
559
582
|
border-bottom: $schedule-tbar-border-bottom-size;
|
|
@@ -3447,7 +3470,24 @@ $schedule-bgr-tbar-btn-text-font-size: $schedule-header-nrml-font-size !default;
|
|
|
3447
3470
|
}
|
|
3448
3471
|
}
|
|
3449
3472
|
}
|
|
3473
|
+
|
|
3474
|
+
/*! schedule event window for smaller viewports*/
|
|
3475
|
+
@media screen and (max-width: 320px) {
|
|
3476
|
+
.e-schedule-dialog.e-popup.e-popup-open {
|
|
3477
|
+
max-height: 350px;
|
|
3478
|
+
min-width: 100%;
|
|
3479
|
+
}
|
|
3450
3480
|
|
|
3481
|
+
.e-schedule-dialog {
|
|
3482
|
+
.e-all-day-container {
|
|
3483
|
+
padding-bottom: 10px;
|
|
3484
|
+
}
|
|
3485
|
+
|
|
3486
|
+
.e-all-day-time-zone-row {
|
|
3487
|
+
display: block;
|
|
3488
|
+
}
|
|
3489
|
+
}
|
|
3490
|
+
}
|
|
3451
3491
|
.e-ddl.e-popup {
|
|
3452
3492
|
.e-resource-template {
|
|
3453
3493
|
display: flex;
|
|
@@ -4131,6 +4171,23 @@ $schedule-bgr-tbar-btn-text-font-size: $schedule-header-nrml-font-size !default;
|
|
|
4131
4171
|
}
|
|
4132
4172
|
}
|
|
4133
4173
|
|
|
4174
|
+
/*! schedule quick popup for smaller viewports */
|
|
4175
|
+
@media screen and (max-width: 320px) {
|
|
4176
|
+
.e-quick-popup-wrapper {
|
|
4177
|
+
min-width: 100%;
|
|
4178
|
+
|
|
4179
|
+
.e-popup-footer {
|
|
4180
|
+
padding-left: 5px;
|
|
4181
|
+
}
|
|
4182
|
+
|
|
4183
|
+
&.e-rtl {
|
|
4184
|
+
.e-popup-footer {
|
|
4185
|
+
padding-right: 5px;
|
|
4186
|
+
}
|
|
4187
|
+
}
|
|
4188
|
+
}
|
|
4189
|
+
}
|
|
4190
|
+
|
|
4134
4191
|
.e-bigger .e-quick-popup-wrapper {
|
|
4135
4192
|
.e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
4136
4193
|
font-size: 24px;
|
|
@@ -197,6 +197,7 @@ $schedule-tbar-right-items-btn-border-radius: 0 !default;
|
|
|
197
197
|
$schedule-tbar-right-active-items-btn-border: none !default;
|
|
198
198
|
$schedule-device-tbar-right-items-btn-border-radius: 0 !default;
|
|
199
199
|
$schedule-device-tbar-right-items-btn-border: none !default;
|
|
200
|
+
$schedule-device-font-size: 8px !default;
|
|
200
201
|
|
|
201
202
|
$schedule-content-nrml-font-text-transform: none !default;
|
|
202
203
|
$schedule-header-hover-border-radius: 100% !default;
|
|
@@ -544,6 +545,28 @@ $schedule-bgr-tbar-btn-text-font-size: $schedule-header-bgr-font-size !default;
|
|
|
544
545
|
}
|
|
545
546
|
}
|
|
546
547
|
|
|
548
|
+
@media screen and (max-width: 320px) {
|
|
549
|
+
.e-schedule-toolbar {
|
|
550
|
+
.e-toolbar-pop {
|
|
551
|
+
width: 100%;
|
|
552
|
+
|
|
553
|
+
.e-toolbar-item .e-tbar-btn.e-btn {
|
|
554
|
+
padding-left: 7px;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
&.e-rtl {
|
|
558
|
+
.e-toolbar-item .e-tbar-btn.e-btn {
|
|
559
|
+
padding-right: 7px;
|
|
560
|
+
}
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
.e-tbar-btn .e-tbar-btn-text {
|
|
565
|
+
font-size: $schedule-device-font-size;
|
|
566
|
+
}
|
|
567
|
+
}
|
|
568
|
+
}
|
|
569
|
+
|
|
547
570
|
.e-schedule-resource-toolbar {
|
|
548
571
|
background: $schedule-tbar-default-bg;
|
|
549
572
|
border-bottom: $schedule-tbar-border-bottom-size;
|
|
@@ -3437,7 +3460,24 @@ $schedule-bgr-tbar-btn-text-font-size: $schedule-header-bgr-font-size !default;
|
|
|
3437
3460
|
}
|
|
3438
3461
|
}
|
|
3439
3462
|
}
|
|
3463
|
+
|
|
3464
|
+
/*! schedule event window for smaller viewports*/
|
|
3465
|
+
@media screen and (max-width: 320px) {
|
|
3466
|
+
.e-schedule-dialog.e-popup.e-popup-open {
|
|
3467
|
+
max-height: 350px;
|
|
3468
|
+
min-width: 100%;
|
|
3469
|
+
}
|
|
3440
3470
|
|
|
3471
|
+
.e-schedule-dialog {
|
|
3472
|
+
.e-all-day-container {
|
|
3473
|
+
padding-bottom: 10px;
|
|
3474
|
+
}
|
|
3475
|
+
|
|
3476
|
+
.e-all-day-time-zone-row {
|
|
3477
|
+
display: block;
|
|
3478
|
+
}
|
|
3479
|
+
}
|
|
3480
|
+
}
|
|
3441
3481
|
.e-ddl.e-popup {
|
|
3442
3482
|
.e-resource-template {
|
|
3443
3483
|
display: flex;
|
|
@@ -4121,6 +4161,23 @@ $schedule-bgr-tbar-btn-text-font-size: $schedule-header-bgr-font-size !default;
|
|
|
4121
4161
|
}
|
|
4122
4162
|
}
|
|
4123
4163
|
|
|
4164
|
+
/*! schedule quick popup for smaller viewports */
|
|
4165
|
+
@media screen and (max-width: 320px) {
|
|
4166
|
+
.e-quick-popup-wrapper {
|
|
4167
|
+
min-width: 100%;
|
|
4168
|
+
|
|
4169
|
+
.e-popup-footer {
|
|
4170
|
+
padding-left: 5px;
|
|
4171
|
+
}
|
|
4172
|
+
|
|
4173
|
+
&.e-rtl {
|
|
4174
|
+
.e-popup-footer {
|
|
4175
|
+
padding-right: 5px;
|
|
4176
|
+
}
|
|
4177
|
+
}
|
|
4178
|
+
}
|
|
4179
|
+
}
|
|
4180
|
+
|
|
4124
4181
|
.e-bigger .e-quick-popup-wrapper {
|
|
4125
4182
|
.e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
4126
4183
|
font-size: 24px;
|
|
@@ -197,6 +197,7 @@ $schedule-tbar-right-items-btn-border-radius: 0 !default;
|
|
|
197
197
|
$schedule-tbar-right-active-items-btn-border: none !default;
|
|
198
198
|
$schedule-device-tbar-right-items-btn-border-radius: 0 !default;
|
|
199
199
|
$schedule-device-tbar-right-items-btn-border: none !default;
|
|
200
|
+
$schedule-device-font-size: 8px !default;
|
|
200
201
|
|
|
201
202
|
$schedule-content-nrml-font-text-transform: none !default;
|
|
202
203
|
$schedule-header-hover-border-radius: 100% !default;
|
|
@@ -544,6 +545,28 @@ $schedule-bgr-tbar-btn-text-font-size: $schedule-header-bgr-font-size !default;
|
|
|
544
545
|
}
|
|
545
546
|
}
|
|
546
547
|
|
|
548
|
+
@media screen and (max-width: 320px) {
|
|
549
|
+
.e-schedule-toolbar {
|
|
550
|
+
.e-toolbar-pop {
|
|
551
|
+
width: 100%;
|
|
552
|
+
|
|
553
|
+
.e-toolbar-item .e-tbar-btn.e-btn {
|
|
554
|
+
padding-left: 7px;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
&.e-rtl {
|
|
558
|
+
.e-toolbar-item .e-tbar-btn.e-btn {
|
|
559
|
+
padding-right: 7px;
|
|
560
|
+
}
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
.e-tbar-btn .e-tbar-btn-text {
|
|
565
|
+
font-size: $schedule-device-font-size;
|
|
566
|
+
}
|
|
567
|
+
}
|
|
568
|
+
}
|
|
569
|
+
|
|
547
570
|
.e-schedule-resource-toolbar {
|
|
548
571
|
background: $schedule-tbar-default-bg;
|
|
549
572
|
border-bottom: $schedule-tbar-border-bottom-size;
|
|
@@ -3437,7 +3460,24 @@ $schedule-bgr-tbar-btn-text-font-size: $schedule-header-bgr-font-size !default;
|
|
|
3437
3460
|
}
|
|
3438
3461
|
}
|
|
3439
3462
|
}
|
|
3463
|
+
|
|
3464
|
+
/*! schedule event window for smaller viewports*/
|
|
3465
|
+
@media screen and (max-width: 320px) {
|
|
3466
|
+
.e-schedule-dialog.e-popup.e-popup-open {
|
|
3467
|
+
max-height: 350px;
|
|
3468
|
+
min-width: 100%;
|
|
3469
|
+
}
|
|
3440
3470
|
|
|
3471
|
+
.e-schedule-dialog {
|
|
3472
|
+
.e-all-day-container {
|
|
3473
|
+
padding-bottom: 10px;
|
|
3474
|
+
}
|
|
3475
|
+
|
|
3476
|
+
.e-all-day-time-zone-row {
|
|
3477
|
+
display: block;
|
|
3478
|
+
}
|
|
3479
|
+
}
|
|
3480
|
+
}
|
|
3441
3481
|
.e-ddl.e-popup {
|
|
3442
3482
|
.e-resource-template {
|
|
3443
3483
|
display: flex;
|
|
@@ -4121,6 +4161,23 @@ $schedule-bgr-tbar-btn-text-font-size: $schedule-header-bgr-font-size !default;
|
|
|
4121
4161
|
}
|
|
4122
4162
|
}
|
|
4123
4163
|
|
|
4164
|
+
/*! schedule quick popup for smaller viewports */
|
|
4165
|
+
@media screen and (max-width: 320px) {
|
|
4166
|
+
.e-quick-popup-wrapper {
|
|
4167
|
+
min-width: 100%;
|
|
4168
|
+
|
|
4169
|
+
.e-popup-footer {
|
|
4170
|
+
padding-left: 5px;
|
|
4171
|
+
}
|
|
4172
|
+
|
|
4173
|
+
&.e-rtl {
|
|
4174
|
+
.e-popup-footer {
|
|
4175
|
+
padding-right: 5px;
|
|
4176
|
+
}
|
|
4177
|
+
}
|
|
4178
|
+
}
|
|
4179
|
+
}
|
|
4180
|
+
|
|
4124
4181
|
.e-bigger .e-quick-popup-wrapper {
|
|
4125
4182
|
.e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
4126
4183
|
font-size: 24px;
|
|
@@ -21826,7 +21826,7 @@ $btn-link-disabled-bgcolor: transparent !default;
|
|
|
21826
21826
|
//primary
|
|
21827
21827
|
$btn-ripple-primary-bgcolor: transparent !default;
|
|
21828
21828
|
$btn-primary-outline: $btn-bgcolor 0 solid !default;
|
|
21829
|
-
$btn-primary-color: $primary-text
|
|
21829
|
+
$btn-primary-color: $primary-text !default;
|
|
21830
21830
|
$btn-primary-hover-color: $primary-text-hover !default;
|
|
21831
21831
|
$btn-primary-focus-color: $primary-text-focus !default;
|
|
21832
21832
|
$btn-primary-active-color: $primary-text-pressed !default;
|
|
@@ -113051,7 +113051,7 @@ $pivotpager-single-size-title-padding: 8px !default;
|
|
|
113051
113051
|
|
|
113052
113052
|
th.e-group-row .e-axis-row {
|
|
113053
113053
|
display: inline-block;
|
|
113054
|
-
height:
|
|
113054
|
+
height: auto;
|
|
113055
113055
|
vertical-align: top;
|
|
113056
113056
|
width: 100%;
|
|
113057
113057
|
}
|
|
@@ -116361,6 +116361,7 @@ $schedule-tbar-right-items-btn-border-radius: 0 !default;
|
|
|
116361
116361
|
$schedule-tbar-right-active-items-btn-border: none !default;
|
|
116362
116362
|
$schedule-device-tbar-right-items-btn-border-radius: 0 !default;
|
|
116363
116363
|
$schedule-device-tbar-right-items-btn-border: none !default;
|
|
116364
|
+
$schedule-device-font-size: 8px !default;
|
|
116364
116365
|
|
|
116365
116366
|
$schedule-content-nrml-font-text-transform: none !default;
|
|
116366
116367
|
$schedule-header-hover-border-radius: 100% !default;
|
|
@@ -116708,6 +116709,28 @@ $schedule-bgr-tbar-btn-text-font-size: $schedule-header-bgr-font-size !default;
|
|
|
116708
116709
|
}
|
|
116709
116710
|
}
|
|
116710
116711
|
|
|
116712
|
+
@media screen and (max-width: 320px) {
|
|
116713
|
+
.e-schedule-toolbar {
|
|
116714
|
+
.e-toolbar-pop {
|
|
116715
|
+
width: 100%;
|
|
116716
|
+
|
|
116717
|
+
.e-toolbar-item .e-tbar-btn.e-btn {
|
|
116718
|
+
padding-left: 7px;
|
|
116719
|
+
}
|
|
116720
|
+
|
|
116721
|
+
&.e-rtl {
|
|
116722
|
+
.e-toolbar-item .e-tbar-btn.e-btn {
|
|
116723
|
+
padding-right: 7px;
|
|
116724
|
+
}
|
|
116725
|
+
}
|
|
116726
|
+
}
|
|
116727
|
+
|
|
116728
|
+
.e-tbar-btn .e-tbar-btn-text {
|
|
116729
|
+
font-size: $schedule-device-font-size;
|
|
116730
|
+
}
|
|
116731
|
+
}
|
|
116732
|
+
}
|
|
116733
|
+
|
|
116711
116734
|
.e-schedule-resource-toolbar {
|
|
116712
116735
|
background: $schedule-tbar-default-bg;
|
|
116713
116736
|
border-bottom: $schedule-tbar-border-bottom-size;
|
|
@@ -119601,7 +119624,24 @@ $schedule-bgr-tbar-btn-text-font-size: $schedule-header-bgr-font-size !default;
|
|
|
119601
119624
|
}
|
|
119602
119625
|
}
|
|
119603
119626
|
}
|
|
119627
|
+
|
|
119628
|
+
/*! schedule event window for smaller viewports*/
|
|
119629
|
+
@media screen and (max-width: 320px) {
|
|
119630
|
+
.e-schedule-dialog.e-popup.e-popup-open {
|
|
119631
|
+
max-height: 350px;
|
|
119632
|
+
min-width: 100%;
|
|
119633
|
+
}
|
|
119604
119634
|
|
|
119635
|
+
.e-schedule-dialog {
|
|
119636
|
+
.e-all-day-container {
|
|
119637
|
+
padding-bottom: 10px;
|
|
119638
|
+
}
|
|
119639
|
+
|
|
119640
|
+
.e-all-day-time-zone-row {
|
|
119641
|
+
display: block;
|
|
119642
|
+
}
|
|
119643
|
+
}
|
|
119644
|
+
}
|
|
119605
119645
|
.e-ddl.e-popup {
|
|
119606
119646
|
.e-resource-template {
|
|
119607
119647
|
display: flex;
|
|
@@ -120285,6 +120325,23 @@ $schedule-bgr-tbar-btn-text-font-size: $schedule-header-bgr-font-size !default;
|
|
|
120285
120325
|
}
|
|
120286
120326
|
}
|
|
120287
120327
|
|
|
120328
|
+
/*! schedule quick popup for smaller viewports */
|
|
120329
|
+
@media screen and (max-width: 320px) {
|
|
120330
|
+
.e-quick-popup-wrapper {
|
|
120331
|
+
min-width: 100%;
|
|
120332
|
+
|
|
120333
|
+
.e-popup-footer {
|
|
120334
|
+
padding-left: 5px;
|
|
120335
|
+
}
|
|
120336
|
+
|
|
120337
|
+
&.e-rtl {
|
|
120338
|
+
.e-popup-footer {
|
|
120339
|
+
padding-right: 5px;
|
|
120340
|
+
}
|
|
120341
|
+
}
|
|
120342
|
+
}
|
|
120343
|
+
}
|
|
120344
|
+
|
|
120288
120345
|
.e-bigger .e-quick-popup-wrapper {
|
|
120289
120346
|
.e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
120290
120347
|
font-size: 24px;
|
|
@@ -21823,7 +21823,7 @@ $btn-link-disabled-bgcolor: transparent !default;
|
|
|
21823
21823
|
//primary
|
|
21824
21824
|
$btn-ripple-primary-bgcolor: transparent !default;
|
|
21825
21825
|
$btn-primary-outline: $btn-bgcolor 0 solid !default;
|
|
21826
|
-
$btn-primary-color: $primary-text
|
|
21826
|
+
$btn-primary-color: $primary-text !default;
|
|
21827
21827
|
$btn-primary-hover-color: $primary-text-hover !default;
|
|
21828
21828
|
$btn-primary-focus-color: $primary-text-focus !default;
|
|
21829
21829
|
$btn-primary-active-color: $primary-text-pressed !default;
|
|
@@ -113048,7 +113048,7 @@ $pivotpager-single-size-title-padding: 8px !default;
|
|
|
113048
113048
|
|
|
113049
113049
|
th.e-group-row .e-axis-row {
|
|
113050
113050
|
display: inline-block;
|
|
113051
|
-
height:
|
|
113051
|
+
height: auto;
|
|
113052
113052
|
vertical-align: top;
|
|
113053
113053
|
width: 100%;
|
|
113054
113054
|
}
|
|
@@ -116358,6 +116358,7 @@ $schedule-tbar-right-items-btn-border-radius: 0 !default;
|
|
|
116358
116358
|
$schedule-tbar-right-active-items-btn-border: none !default;
|
|
116359
116359
|
$schedule-device-tbar-right-items-btn-border-radius: 0 !default;
|
|
116360
116360
|
$schedule-device-tbar-right-items-btn-border: none !default;
|
|
116361
|
+
$schedule-device-font-size: 8px !default;
|
|
116361
116362
|
|
|
116362
116363
|
$schedule-content-nrml-font-text-transform: none !default;
|
|
116363
116364
|
$schedule-header-hover-border-radius: 100% !default;
|
|
@@ -116705,6 +116706,28 @@ $schedule-bgr-tbar-btn-text-font-size: $schedule-header-bgr-font-size !default;
|
|
|
116705
116706
|
}
|
|
116706
116707
|
}
|
|
116707
116708
|
|
|
116709
|
+
@media screen and (max-width: 320px) {
|
|
116710
|
+
.e-schedule-toolbar {
|
|
116711
|
+
.e-toolbar-pop {
|
|
116712
|
+
width: 100%;
|
|
116713
|
+
|
|
116714
|
+
.e-toolbar-item .e-tbar-btn.e-btn {
|
|
116715
|
+
padding-left: 7px;
|
|
116716
|
+
}
|
|
116717
|
+
|
|
116718
|
+
&.e-rtl {
|
|
116719
|
+
.e-toolbar-item .e-tbar-btn.e-btn {
|
|
116720
|
+
padding-right: 7px;
|
|
116721
|
+
}
|
|
116722
|
+
}
|
|
116723
|
+
}
|
|
116724
|
+
|
|
116725
|
+
.e-tbar-btn .e-tbar-btn-text {
|
|
116726
|
+
font-size: $schedule-device-font-size;
|
|
116727
|
+
}
|
|
116728
|
+
}
|
|
116729
|
+
}
|
|
116730
|
+
|
|
116708
116731
|
.e-schedule-resource-toolbar {
|
|
116709
116732
|
background: $schedule-tbar-default-bg;
|
|
116710
116733
|
border-bottom: $schedule-tbar-border-bottom-size;
|
|
@@ -119598,7 +119621,24 @@ $schedule-bgr-tbar-btn-text-font-size: $schedule-header-bgr-font-size !default;
|
|
|
119598
119621
|
}
|
|
119599
119622
|
}
|
|
119600
119623
|
}
|
|
119624
|
+
|
|
119625
|
+
/*! schedule event window for smaller viewports*/
|
|
119626
|
+
@media screen and (max-width: 320px) {
|
|
119627
|
+
.e-schedule-dialog.e-popup.e-popup-open {
|
|
119628
|
+
max-height: 350px;
|
|
119629
|
+
min-width: 100%;
|
|
119630
|
+
}
|
|
119601
119631
|
|
|
119632
|
+
.e-schedule-dialog {
|
|
119633
|
+
.e-all-day-container {
|
|
119634
|
+
padding-bottom: 10px;
|
|
119635
|
+
}
|
|
119636
|
+
|
|
119637
|
+
.e-all-day-time-zone-row {
|
|
119638
|
+
display: block;
|
|
119639
|
+
}
|
|
119640
|
+
}
|
|
119641
|
+
}
|
|
119602
119642
|
.e-ddl.e-popup {
|
|
119603
119643
|
.e-resource-template {
|
|
119604
119644
|
display: flex;
|
|
@@ -120282,6 +120322,23 @@ $schedule-bgr-tbar-btn-text-font-size: $schedule-header-bgr-font-size !default;
|
|
|
120282
120322
|
}
|
|
120283
120323
|
}
|
|
120284
120324
|
|
|
120325
|
+
/*! schedule quick popup for smaller viewports */
|
|
120326
|
+
@media screen and (max-width: 320px) {
|
|
120327
|
+
.e-quick-popup-wrapper {
|
|
120328
|
+
min-width: 100%;
|
|
120329
|
+
|
|
120330
|
+
.e-popup-footer {
|
|
120331
|
+
padding-left: 5px;
|
|
120332
|
+
}
|
|
120333
|
+
|
|
120334
|
+
&.e-rtl {
|
|
120335
|
+
.e-popup-footer {
|
|
120336
|
+
padding-right: 5px;
|
|
120337
|
+
}
|
|
120338
|
+
}
|
|
120339
|
+
}
|
|
120340
|
+
}
|
|
120341
|
+
|
|
120285
120342
|
.e-bigger .e-quick-popup-wrapper {
|
|
120286
120343
|
.e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
120287
120344
|
font-size: 24px;
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@syncfusion/blazor-themes","version":"24.2.
|
|
1
|
+
{"name":"@syncfusion/blazor-themes","version":"24.2.7","description":"This package contains the individual component wise SCSS files and single SCSS files for Syncfusion Blazor components.","author":"Syncfusion Inc.","license":"SEE LICENSE IN license","keywords":["Blazor","Blazor Themes","Syncfusion","Syncfusion Blazor","Web components","Themes","Individual Themes","Combined Themes","Syncfusion Blazor SCSS"],"repository":{"type":"git","url":"git@github.com/syncfusion/blazor-samples"}}
|