@entit/digit-ui-css 2.0.0 → 2.0.1
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/dist/index.css +409 -2230
- package/dist/index.min.css +1 -1
- package/package.json +2 -2
- package/src/components/CardBasedOptions.scss +39 -105
- package/src/components/CitizenHomeCard.scss +35 -46
- package/src/components/PageBasedInput.scss +19 -27
- package/src/components/PropertySearchForm.scss +2 -2
- package/src/components/TimeLine.scss +2 -2
- package/src/components/bannercomponents.scss +3 -9
- package/src/components/body.scss +4 -32
- package/src/components/buttons.scss +0 -3
- package/src/components/card.scss +25 -48
- package/src/components/charts.scss +1 -134
- package/src/components/checkbox.scss +4 -35
- package/src/components/checkpoint.scss +1 -3
- package/src/components/datatable.scss +6 -10
- package/src/components/filters.scss +3 -3
- package/src/components/hoc/InboxComposer.scss +15 -108
- package/src/components/info-banner.scss +2 -3
- package/src/components/languageSelector.scss +7 -8
- package/src/components/multiLink.scss +0 -15
- package/src/components/navbar.scss +12 -210
- package/src/components/radiobtn.scss +0 -12
- package/src/components/searchAction.scss +1 -1
- package/src/components/selectdropdown.scss +2 -28
- package/src/components/statushighlight.scss +1 -1
- package/src/components/summary.scss +0 -3
- package/src/components/table.scss +3 -14
- package/src/components/textfields.scss +1 -19
- package/src/components/topbar.scss +7 -21
- package/src/components/uploadcomponents.scss +0 -18
- package/src/index.scss +39 -263
- package/src/pages/citizen/CitizenEngagementNotificationWrapper.scss +5 -8
- package/src/pages/citizen/DocumentList.scss +2 -2
- package/src/pages/citizen/HomePageWrapper.scss +84 -148
- package/src/pages/citizen/container.scss +1 -1
- package/src/pages/employee/cardfix.scss +1 -2
- package/src/pages/employee/container.scss +13 -13
- package/src/pages/employee/dss.scss +9 -142
- package/src/pages/employee/iframe.scss +1 -1
- package/src/pages/employee/inbox.scss +49 -259
- package/src/pages/employee/index.scss +75 -363
- package/src/pages/employee/login.scss +21 -96
- package/src/pages/employee/popupmodule.scss +0 -13
- package/src/pages/employee/scroll-table.scss +1 -1
- package/src/pages/employee/surveys.scss +6 -5
- package/svg/check.svg +1 -1
- package/svg/starempty.svg +1 -1
- package/svg/starfilled.svg +1 -1
- package/src/components/FAQ.scss +0 -64
- package/src/components/howItWorks.scss +0 -71
- package/src/components/plusMinus.scss +0 -15
- package/src/components/staticDynamicMessages.scss +0 -107
- package/src/components/staticSideBar.scss +0 -27
- package/src/components/toggleSwitch.scss +0 -41
package/src/index.scss
CHANGED
@@ -74,13 +74,7 @@
|
|
74
74
|
@import "./components/EventCalendarView.scss";
|
75
75
|
@import "./components/OnGroundEventCard.scss";
|
76
76
|
@import "./components/PopupHeadingLabel.scss";
|
77
|
-
@import "./components/staticSideBar.scss";
|
78
77
|
@import "./components/hoc/index.scss";
|
79
|
-
@import "./components/FAQ.scss";
|
80
|
-
@import "./components//howItWorks.scss";
|
81
|
-
@import "./components/staticDynamicMessages.scss";
|
82
|
-
@import "./components/toggleSwitch.scss";
|
83
|
-
@import "./components/plusMinus.scss";
|
84
78
|
|
85
79
|
@import "./pages/employee/index.scss";
|
86
80
|
@import "./pages/employee/cardfix.scss";
|
@@ -107,72 +101,70 @@
|
|
107
101
|
@import "./pages/citizen/citizenDocument.scss";
|
108
102
|
@import "./pages/employee/surveys.scss";
|
109
103
|
|
110
|
-
.display-none
|
104
|
+
.display-none{
|
111
105
|
display: none;
|
112
106
|
}
|
113
|
-
|
114
|
-
|
115
|
-
}
|
116
|
-
.p-unset {
|
107
|
+
|
108
|
+
.p-unset{
|
117
109
|
padding: unset !important;
|
118
110
|
}
|
119
111
|
|
120
|
-
.flex-one
|
112
|
+
.flex-one{
|
121
113
|
@apply flex-1;
|
122
114
|
}
|
123
115
|
|
124
|
-
.display-flex-gap-2
|
116
|
+
.display-flex-gap-2{
|
125
117
|
@apply flex gap-3;
|
126
118
|
}
|
127
119
|
.rm-mb {
|
128
120
|
margin-bottom: unset !important;
|
129
121
|
}
|
130
122
|
|
131
|
-
.w-fullwidth
|
123
|
+
.w-fullwidth{
|
132
124
|
@apply w-full;
|
133
125
|
}
|
134
126
|
|
135
|
-
.margin-unset
|
127
|
+
.margin-unset{
|
136
128
|
margin: unset !important;
|
137
129
|
}
|
138
130
|
|
139
|
-
.text-align-center
|
131
|
+
.text-align-center{
|
140
132
|
@apply text-center;
|
141
133
|
}
|
142
134
|
|
143
|
-
.desktop-only
|
135
|
+
.desktop-only{
|
144
136
|
@apply hidden;
|
145
137
|
}
|
146
138
|
|
147
139
|
@screen dt {
|
148
|
-
.desktop-only
|
140
|
+
.desktop-only{
|
149
141
|
@apply block;
|
150
|
-
}
|
142
|
+
}
|
151
143
|
}
|
152
144
|
|
153
|
-
.mobile-only
|
145
|
+
.mobile-only{
|
154
146
|
@apply block;
|
155
147
|
}
|
156
148
|
|
157
149
|
@screen dt {
|
158
|
-
.mobile-only
|
150
|
+
.mobile-only{
|
159
151
|
@apply hidden;
|
160
|
-
}
|
152
|
+
}
|
161
153
|
}
|
162
154
|
|
163
155
|
.dark {
|
164
156
|
@apply text-text-primary;
|
165
157
|
}
|
166
158
|
|
167
|
-
.mrlg
|
159
|
+
.mrlg{
|
168
160
|
@apply mr-lg;
|
169
161
|
}
|
170
162
|
|
171
|
-
.mrsm
|
163
|
+
.mrsm{
|
172
164
|
@apply mr-sm;
|
173
165
|
}
|
174
166
|
|
175
|
-
.mbsm
|
167
|
+
.mbsm{
|
176
168
|
@apply mb-sm;
|
177
169
|
}
|
178
170
|
|
@@ -186,7 +178,7 @@
|
|
186
178
|
}
|
187
179
|
|
188
180
|
.clear-search-label {
|
189
|
-
color: #
|
181
|
+
color: #f47738;
|
190
182
|
cursor: pointer;
|
191
183
|
}
|
192
184
|
|
@@ -199,7 +191,7 @@
|
|
199
191
|
@apply flex justify-between items-center;
|
200
192
|
|
201
193
|
.download-button {
|
202
|
-
color:
|
194
|
+
color: #f47738;
|
203
195
|
margin-left: 8px;
|
204
196
|
}
|
205
197
|
}
|
@@ -208,15 +200,13 @@
|
|
208
200
|
@apply flex mb-sm;
|
209
201
|
|
210
202
|
.download-button {
|
211
|
-
color: #
|
203
|
+
color: #f47738;
|
212
204
|
margin-left: 8px;
|
213
|
-
white-space: nowrap;
|
214
|
-
|
215
205
|
}
|
216
206
|
}
|
217
207
|
|
218
208
|
.check-page-link-button {
|
219
|
-
color: #
|
209
|
+
color: #f47738 !important;
|
220
210
|
}
|
221
211
|
|
222
212
|
.pt-application-download-btn {
|
@@ -239,10 +229,10 @@
|
|
239
229
|
gap: 10px;
|
240
230
|
|
241
231
|
svg {
|
242
|
-
fill: #
|
232
|
+
fill: #f47738;
|
243
233
|
}
|
244
234
|
|
245
|
-
color: #
|
235
|
+
color: #f47738;
|
246
236
|
|
247
237
|
cursor: pointer;
|
248
238
|
font-weight: 500;
|
@@ -250,7 +240,7 @@
|
|
250
240
|
}
|
251
241
|
|
252
242
|
.primaryColor {
|
253
|
-
color: #
|
243
|
+
color: #0B0C0C !important;
|
254
244
|
}
|
255
245
|
|
256
246
|
@media (hover: hover) {
|
@@ -433,21 +423,13 @@ input[type="number"] {
|
|
433
423
|
|
434
424
|
.text-input {
|
435
425
|
@apply relative w-full;
|
436
|
-
input
|
437
|
-
&:hover
|
426
|
+
input{
|
427
|
+
&:hover{
|
438
428
|
@apply border-2 border-solid border-primary-main;
|
439
429
|
}
|
440
430
|
}
|
441
431
|
}
|
442
432
|
|
443
|
-
.text-input-width {
|
444
|
-
max-width: 540px;
|
445
|
-
}
|
446
|
-
|
447
|
-
.text-mobile-input-width {
|
448
|
-
max-width: 500px;
|
449
|
-
}
|
450
|
-
|
451
433
|
.custom-time-picker {
|
452
434
|
@apply w-full;
|
453
435
|
max-width: 200px;
|
@@ -475,7 +457,7 @@ input[type="number"] {
|
|
475
457
|
.card-label-APK {
|
476
458
|
@apply w-1/3;
|
477
459
|
margin-bottom: revert;
|
478
|
-
width:
|
460
|
+
width:100%;
|
479
461
|
}
|
480
462
|
|
481
463
|
.underline {
|
@@ -508,7 +490,7 @@ input[type="number"] {
|
|
508
490
|
|
509
491
|
.edcr-citizen-inbox{
|
510
492
|
thead th:first-child{
|
511
|
-
min-width:
|
493
|
+
min-width:155px;
|
512
494
|
}
|
513
495
|
|
514
496
|
}
|
@@ -522,27 +504,6 @@ input[type="number"] {
|
|
522
504
|
justify-content: center;
|
523
505
|
align-items: center;
|
524
506
|
flex-direction: column;
|
525
|
-
position: absolute !important;
|
526
|
-
.error-container {
|
527
|
-
display: flex;
|
528
|
-
width: 400px;
|
529
|
-
justify-content: center;
|
530
|
-
align-items: center;
|
531
|
-
flex-direction: column;
|
532
|
-
h1 {
|
533
|
-
font-size: 32px;
|
534
|
-
font-weight: bold;
|
535
|
-
}
|
536
|
-
button {
|
537
|
-
height: 40px;
|
538
|
-
width: 153px;
|
539
|
-
border-radius: 0px;
|
540
|
-
padding: 8px 24px;
|
541
|
-
color: white;
|
542
|
-
cursor: pointer;
|
543
|
-
background-color: #a82227;
|
544
|
-
}
|
545
|
-
}
|
546
507
|
}
|
547
508
|
|
548
509
|
.error-boundary summary,
|
@@ -555,214 +516,29 @@ input[type="number"] {
|
|
555
516
|
padding: 3px;
|
556
517
|
}
|
557
518
|
|
558
|
-
.full-width-card
|
559
|
-
width: 92vw !important;
|
519
|
+
.full-width-card{
|
520
|
+
width : 92vw !important;
|
560
521
|
}
|
561
|
-
.full-employee-card-link
|
562
|
-
width: 100
|
522
|
+
.full-employee-card-link{
|
523
|
+
width: 100%!important;
|
563
524
|
margin: 7px 0px;
|
564
525
|
}
|
565
|
-
.full-employee-card-height
|
566
|
-
|
526
|
+
.full-employee-card-height{
|
527
|
+
height: unset !important;
|
567
528
|
}
|
568
529
|
|
569
530
|
@media (min-width: 640px) {
|
570
|
-
.full-employee-card-height
|
531
|
+
.full-employee-card-height{
|
571
532
|
height: 196px !important;
|
572
533
|
}
|
573
|
-
.full-employee-card-link
|
574
|
-
width: 30
|
534
|
+
.full-employee-card-link{
|
535
|
+
width: 30%!important;
|
575
536
|
}
|
576
|
-
.full-width-card
|
537
|
+
.full-width-card{
|
577
538
|
@apply w-full !important;
|
578
539
|
}
|
579
540
|
}
|
580
|
-
.applications-list-container {
|
581
|
-
}
|
582
|
-
.complaint-summary {
|
583
|
-
@media (min-width: 780px) {
|
584
|
-
flex: 1 0 auto;
|
585
|
-
margin-left: 1rem;
|
586
|
-
margin-top: 1rem;
|
587
|
-
}
|
588
|
-
}
|
589
|
-
|
590
|
-
@media (min-width: 780px) {
|
591
|
-
.citizen-form-wrapper {
|
592
|
-
width: calc(100% - 219px);
|
593
|
-
display: flex;
|
594
|
-
justify-content: center;
|
595
|
-
margin-top: 1rem;
|
596
|
-
padding-left: 16px;
|
597
|
-
padding-right: 16px;
|
598
|
-
}
|
599
|
-
}
|
600
|
-
@media (min-width: 780px) {
|
601
|
-
.citizen-card-container {
|
602
|
-
padding-left: 15px;
|
603
|
-
padding-right: 15px;
|
604
|
-
margin-top: 1rem;
|
605
|
-
}
|
606
|
-
}
|
607
|
-
|
608
|
-
@media (min-width: 780px) {
|
609
|
-
.citizen-obps-wrapper,
|
610
|
-
.selection-card-wrapper,
|
611
|
-
.fsm-citizen-wrapper,
|
612
|
-
.pgr-citizen-wrapper,
|
613
|
-
.pt-citizen,
|
614
|
-
.bill-citizen,
|
615
|
-
.bills-citizen-wrapper,
|
616
|
-
.payer-bills-citizen-wrapper,
|
617
|
-
.engagement-citizen-wrapper,
|
618
|
-
.citizen-all-services-wrapper,
|
619
|
-
.mcollect-citizen,
|
620
|
-
.ws-citizen-wrapper,
|
621
|
-
.tl-citizen {
|
622
|
-
width: calc(100% - 219px);
|
623
|
-
padding-left: 16px;
|
624
|
-
padding-right: 16px;
|
625
|
-
margin-top: 1rem;
|
626
|
-
}
|
627
|
-
}
|
628
|
-
@media only screen and (max-width: 768px) {
|
629
|
-
/* For mobile phones: */
|
630
|
-
.error-boundary {
|
631
|
-
height: 75vh;
|
632
|
-
}
|
633
|
-
}
|
634
|
-
.employee-app-wrapper {
|
635
|
-
min-height: calc(100vh - 8em);
|
636
|
-
}
|
637
|
-
|
638
|
-
.ws-custom-wrapper {
|
639
|
-
.submit {
|
640
|
-
display: flex !important;
|
641
|
-
flex-direction: row-reverse !important;
|
642
|
-
width: 100% !important;
|
643
|
-
align-items: center;
|
644
|
-
button {
|
645
|
-
width: 240px !important;
|
646
|
-
}
|
647
|
-
p {
|
648
|
-
width: unset;
|
649
|
-
margin-right: 1rem;
|
650
|
-
}
|
651
|
-
}
|
652
|
-
}
|
653
|
-
|
654
|
-
.plumber-details-new-value-wrapper {
|
655
|
-
flex: 2 1 auto;
|
656
|
-
}
|
657
|
-
|
658
|
-
.connection-details-new-value-wrapper {
|
659
|
-
flex: 1 1 auto;
|
660
|
-
}
|
661
|
-
|
662
|
-
.connection-details-old-value-wrapper,
|
663
|
-
.plumber-details-old-value-wrapper {
|
664
|
-
flex: 1 1 auto;
|
665
|
-
|
666
|
-
.old-value-null-wrapper {
|
667
|
-
visibility: hidden;
|
668
|
-
padding-bottom: 8px;
|
669
|
-
margin-bottom: 8px;
|
670
|
-
}
|
671
|
-
.row {
|
672
|
-
color: #b1b4b6;
|
673
|
-
font-weight: 700;
|
674
|
-
font-size: 16px;
|
675
|
-
}
|
676
|
-
}
|
677
|
-
|
678
|
-
.plumber-details-new-value-wrapper {
|
679
|
-
flex: 2 1 auto;
|
680
|
-
}
|
681
|
-
|
682
|
-
.connection-details-new-value-wrapper {
|
683
|
-
flex: 1 1 auto;
|
684
|
-
}
|
685
|
-
|
686
|
-
.connection-details-old-value-wrapper,
|
687
|
-
.plumber-details-old-value-wrapper {
|
688
|
-
flex: 1 1 auto;
|
689
|
-
.old-value-null-wrapper {
|
690
|
-
visibility: hidden;
|
691
|
-
padding-bottom: 8px;
|
692
|
-
margin-bottom: 8px;
|
693
|
-
}
|
694
|
-
.row {
|
695
|
-
color: #b1b4b6;
|
696
|
-
font-weight: 700;
|
697
|
-
font-size: 16px;
|
698
|
-
}
|
699
|
-
}
|
700
|
-
|
701
|
-
.modal-header-ws {
|
702
|
-
padding: 1rem;
|
703
|
-
font-weight: 400;
|
704
|
-
}
|
705
|
-
.modal-body-ws {
|
706
|
-
padding: 1rem;
|
707
|
-
font-weight: 700;
|
708
|
-
color: #0b0c0c;
|
709
|
-
font-size: 24px;
|
710
|
-
margin-bottom: 1rem;
|
711
|
-
}
|
712
|
-
.privacy-icon {
|
713
|
-
cursor: pointer;
|
714
|
-
}
|
715
|
-
.privacy-icon:hover {
|
716
|
-
path {
|
717
|
-
fill: rgba(244, 119, 56, 1);
|
718
|
-
}
|
719
|
-
}
|
720
541
|
|
721
542
|
.employee-app-wrapper{
|
722
543
|
min-height: calc(100vh - 8em);
|
723
|
-
}
|
724
|
-
.submit-bar header{
|
725
|
-
line-height: 2.0rem !important;
|
726
|
-
}
|
727
|
-
.logo-removeBorderRadiusLogo svg{
|
728
|
-
width: 50px;
|
729
|
-
height: 60px;
|
730
|
-
}
|
731
|
-
|
732
|
-
.icon-banner-employee {
|
733
|
-
background-color:#d7aefc !important;
|
734
|
-
}
|
735
|
-
.icon-banner-employee svg{
|
736
|
-
background-color:#bf2f3b !important;
|
737
|
-
width: 40px;
|
738
|
-
height: 40px;
|
739
|
-
}
|
740
|
-
.inboxButton{
|
741
|
-
border: none;
|
742
|
-
color: white;
|
743
|
-
text-align: center;
|
744
|
-
text-decoration: none;
|
745
|
-
display: inline-block;
|
746
|
-
font-size: 14px;
|
747
|
-
margin: 4px 2px;
|
748
|
-
cursor: pointer;
|
749
|
-
height: fit-content;
|
750
|
-
border-radius: 5px;
|
751
|
-
font-family: sans-serif;
|
752
|
-
font-weight: 700;
|
753
|
-
}
|
754
|
-
.employee .inboxButton{
|
755
|
-
padding: 5px 15px;
|
756
|
-
background: #ba2b36
|
757
|
-
}
|
758
|
-
.citizen .inboxButton{
|
759
|
-
padding: 15px;
|
760
|
-
font-size: 1.2rem
|
761
|
-
}
|
762
|
-
|
763
|
-
@media screen and (max-width: 768px) {
|
764
|
-
.citizen .inboxButton{
|
765
|
-
font-size: 1rem;
|
766
|
-
}
|
767
|
-
}
|
768
|
-
|
544
|
+
}
|
@@ -109,7 +109,7 @@
|
|
109
109
|
font-weight: normal;
|
110
110
|
font-size: 16px;
|
111
111
|
line-height: 19px;
|
112
|
-
color: #
|
112
|
+
color: #f47738;
|
113
113
|
}
|
114
114
|
}
|
115
115
|
}
|
@@ -129,7 +129,7 @@
|
|
129
129
|
font-weight: normal;
|
130
130
|
font-size: 16px;
|
131
131
|
line-height: 19px;
|
132
|
-
color: #
|
132
|
+
color: #F47738;
|
133
133
|
}
|
134
134
|
}
|
135
135
|
}
|