@djb25/digit-ui-css 1.0.52 → 1.0.53
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 +1 -1
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/CitizenHomeCard.scss +1 -0
- package/src/components/actionbar.scss +11 -1
- package/src/components/card.scss +0 -1
- package/src/index.scss +12 -3
- package/src/pages/employee/popupmodule.scss +2 -2
package/package.json
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
div {
|
|
9
9
|
@apply w-full;
|
|
10
10
|
}
|
|
11
|
+
|
|
11
12
|
.menu-wrap {
|
|
12
13
|
@apply absolute bg-white text-left mb-xs z-30 cursor-pointer;
|
|
13
14
|
bottom: 45px;
|
|
@@ -83,6 +84,7 @@
|
|
|
83
84
|
div {
|
|
84
85
|
@apply w-full;
|
|
85
86
|
}
|
|
87
|
+
|
|
86
88
|
.menu-wrap {
|
|
87
89
|
@apply absolute bg-white text-left mb-xs z-30 cursor-pointer;
|
|
88
90
|
box-shadow: rgba(0, 0, 0, 0.14) 0 8px 10px 1px, rgba(0, 0, 0, 0.12) 0 3px 14px 2px, rgba(0, 0, 0, 0.2) 0 5px 5px -3px;
|
|
@@ -92,6 +94,14 @@
|
|
|
92
94
|
div {
|
|
93
95
|
@apply h-12 pl-sm py-md text-body-l text-text-primary;
|
|
94
96
|
|
|
97
|
+
p {
|
|
98
|
+
word-wrap: break-word;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
&:hover {
|
|
102
|
+
@apply bg-grey-mid w-full;
|
|
103
|
+
}
|
|
104
|
+
|
|
95
105
|
&:hover {
|
|
96
106
|
@apply bg-grey-mid w-full;
|
|
97
107
|
}
|
|
@@ -119,4 +129,4 @@
|
|
|
119
129
|
align-items: center;
|
|
120
130
|
margin-left: 10px;
|
|
121
131
|
}
|
|
122
|
-
}
|
|
132
|
+
}
|
package/src/components/card.scss
CHANGED
package/src/index.scss
CHANGED
|
@@ -312,6 +312,7 @@ input[readonly] {
|
|
|
312
312
|
@apply border-grey-dark text-grey-dark !important;
|
|
313
313
|
pointer-events: none !important;
|
|
314
314
|
}
|
|
315
|
+
|
|
315
316
|
.disabled-label {
|
|
316
317
|
@apply border-grey-dark text-grey-dark !important;
|
|
317
318
|
pointer-events: none !important;
|
|
@@ -489,6 +490,7 @@ input[type="number"] {
|
|
|
489
490
|
.phone-input-wrapper {
|
|
490
491
|
display: flex;
|
|
491
492
|
}
|
|
493
|
+
|
|
492
494
|
.phone-input-wrapper:hover {
|
|
493
495
|
.employee-card-input--front {
|
|
494
496
|
border: 2px solid #a1a1aa;
|
|
@@ -499,6 +501,7 @@ input[type="number"] {
|
|
|
499
501
|
input {
|
|
500
502
|
border: 2px solid #a1a1aa;
|
|
501
503
|
color: #a1a1aa;
|
|
504
|
+
|
|
502
505
|
&:focus-within {
|
|
503
506
|
outline: none;
|
|
504
507
|
border-color: #007bff;
|
|
@@ -515,6 +518,7 @@ input[type="number"] {
|
|
|
515
518
|
box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
|
|
516
519
|
z-index: 1;
|
|
517
520
|
}
|
|
521
|
+
|
|
518
522
|
input {
|
|
519
523
|
outline: none;
|
|
520
524
|
border-color: #007bff;
|
|
@@ -698,8 +702,7 @@ input[type="number"] {
|
|
|
698
702
|
}
|
|
699
703
|
}
|
|
700
704
|
|
|
701
|
-
.applications-list-container {
|
|
702
|
-
}
|
|
705
|
+
.applications-list-container {}
|
|
703
706
|
|
|
704
707
|
.complaint-summary {
|
|
705
708
|
@media (min-width: 780px) {
|
|
@@ -729,6 +732,7 @@ input[type="number"] {
|
|
|
729
732
|
}
|
|
730
733
|
|
|
731
734
|
@media (min-width: 780px) {
|
|
735
|
+
|
|
732
736
|
.citizen-obps-wrapper,
|
|
733
737
|
.pgr-citizen-wrapper,
|
|
734
738
|
.pt-citizen,
|
|
@@ -755,6 +759,7 @@ input[type="number"] {
|
|
|
755
759
|
}
|
|
756
760
|
|
|
757
761
|
@media only screen and (max-width: 768px) {
|
|
762
|
+
|
|
758
763
|
/* For mobile phones: */
|
|
759
764
|
.error-boundary {
|
|
760
765
|
height: 75vh;
|
|
@@ -767,6 +772,10 @@ input[type="number"] {
|
|
|
767
772
|
min-width: 0;
|
|
768
773
|
}
|
|
769
774
|
|
|
775
|
+
.min-width-full {
|
|
776
|
+
min-width: 100%;
|
|
777
|
+
}
|
|
778
|
+
|
|
770
779
|
.employee-app-wrapper {
|
|
771
780
|
min-height: calc(100vh - 8em);
|
|
772
781
|
height: calc(100vh - 102px);
|
|
@@ -973,4 +982,4 @@ input[type="number"] {
|
|
|
973
982
|
.rdrDefinedRangesWrapper {
|
|
974
983
|
display: none;
|
|
975
984
|
}
|
|
976
|
-
}
|
|
985
|
+
}
|