@pmidc/upyog-css 1.2.15 → 1.2.16
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 +272 -94
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/SearchForm.scss +1 -1
- package/src/components/body.scss +4 -4
- package/src/components/buttons.scss +13 -6
- package/src/components/card.scss +63 -0
- package/src/components/datatable.scss +1 -0
- package/src/components/documentSection.scss +95 -0
- package/src/index.scss +61 -18
- package/src/pages/employee/inbox.scss +11 -1
- package/src/pages/employee/index.scss +2 -2
package/dist/index.css
CHANGED
|
@@ -1034,7 +1034,6 @@ body {
|
|
|
1034
1034
|
|
|
1035
1035
|
.bpa-summary-page {
|
|
1036
1036
|
padding: 2rem;
|
|
1037
|
-
background-color: #f9f9f9;
|
|
1038
1037
|
font-family: Segoe UI,Tahoma,Geneva,Verdana,sans-serif;
|
|
1039
1038
|
color: #333; }
|
|
1040
1039
|
|
|
@@ -1047,8 +1046,6 @@ body {
|
|
|
1047
1046
|
margin-bottom: 1rem; }
|
|
1048
1047
|
|
|
1049
1048
|
.bpa-summary-section {
|
|
1050
|
-
background-color: #fff;
|
|
1051
|
-
padding: 1rem 1.5rem;
|
|
1052
1049
|
border-radius: 8px;
|
|
1053
1050
|
margin-bottom: 2rem;
|
|
1054
1051
|
-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
|
@@ -1067,7 +1064,9 @@ body {
|
|
|
1067
1064
|
|
|
1068
1065
|
.bpa-summary-bold-label {
|
|
1069
1066
|
font-weight: 700;
|
|
1070
|
-
color: #555;
|
|
1067
|
+
color: #555;
|
|
1068
|
+
max-width: 170px !important;
|
|
1069
|
+
height: auto !important; }
|
|
1071
1070
|
|
|
1072
1071
|
.custom-card-container {
|
|
1073
1072
|
width: 100%;
|
|
@@ -1820,7 +1819,61 @@ body {
|
|
|
1820
1819
|
color: #fff;
|
|
1821
1820
|
line-height: 40px; }
|
|
1822
1821
|
|
|
1822
|
+
.document-card-link {
|
|
1823
|
+
min-width: 160px;
|
|
1824
|
+
margin: 12px;
|
|
1825
|
+
display: -webkit-box;
|
|
1826
|
+
display: -ms-flexbox;
|
|
1827
|
+
display: flex;
|
|
1828
|
+
-webkit-box-orient: vertical;
|
|
1829
|
+
-webkit-box-direction: normal;
|
|
1830
|
+
-ms-flex-direction: column;
|
|
1831
|
+
flex-direction: column;
|
|
1832
|
+
-webkit-box-align: center;
|
|
1833
|
+
-ms-flex-align: center;
|
|
1834
|
+
align-items: center;
|
|
1835
|
+
text-align: center;
|
|
1836
|
+
text-decoration: none;
|
|
1837
|
+
color: inherit;
|
|
1838
|
+
-webkit-transition: all .2s ease;
|
|
1839
|
+
transition: all .2s ease; }
|
|
1840
|
+
.document-card-link:hover {
|
|
1841
|
+
-webkit-transform: translateY(-2px);
|
|
1842
|
+
transform: translateY(-2px); }
|
|
1843
|
+
|
|
1844
|
+
.document-card-label {
|
|
1845
|
+
margin-top: 8px;
|
|
1846
|
+
max-width: 140px;
|
|
1847
|
+
word-break: break-word;
|
|
1848
|
+
font-size: 14px;
|
|
1849
|
+
color: #475569;
|
|
1850
|
+
font-weight: 500; }
|
|
1851
|
+
|
|
1852
|
+
@media only screen and (max-width: 768px) {
|
|
1853
|
+
.document-card-link {
|
|
1854
|
+
min-width: 120px;
|
|
1855
|
+
margin: 8px; }
|
|
1856
|
+
.document-card-label {
|
|
1857
|
+
max-width: 100px;
|
|
1858
|
+
font-size: 12px; } }
|
|
1859
|
+
|
|
1823
1860
|
@media only screen and (max-width: 640px) {
|
|
1861
|
+
.document-card-link {
|
|
1862
|
+
min-width: 100px;
|
|
1863
|
+
margin: 6px; }
|
|
1864
|
+
.document-card-label {
|
|
1865
|
+
max-width: 85px;
|
|
1866
|
+
font-size: 11px; } }
|
|
1867
|
+
|
|
1868
|
+
@media only screen and (max-width: 640px) {
|
|
1869
|
+
.card {
|
|
1870
|
+
margin-top: 2rem; }
|
|
1871
|
+
.popup-module {
|
|
1872
|
+
width: 100% !important; }
|
|
1873
|
+
#search-property-field {
|
|
1874
|
+
display: block !important; }
|
|
1875
|
+
.bpa-summary-page {
|
|
1876
|
+
padding: 0 !important; }
|
|
1824
1877
|
.card-link {
|
|
1825
1878
|
height: 32px;
|
|
1826
1879
|
width: 140px;
|
|
@@ -2056,7 +2109,10 @@ body {
|
|
|
2056
2109
|
justify-content: space-between !important;
|
|
2057
2110
|
max-height: 70px !important;
|
|
2058
2111
|
height: 70px !important;
|
|
2059
|
-
margin-bottom: 15px !important;
|
|
2112
|
+
margin-bottom: 15px !important;
|
|
2113
|
+
-webkit-box-align: center !important;
|
|
2114
|
+
-ms-flex-align: center !important;
|
|
2115
|
+
align-items: center !important; }
|
|
2060
2116
|
|
|
2061
2117
|
.employee-main-application-details {
|
|
2062
2118
|
padding: 10px !important; }
|
|
@@ -2189,9 +2245,12 @@ body {
|
|
|
2189
2245
|
-ms-flex-pack: center;
|
|
2190
2246
|
justify-content: center;
|
|
2191
2247
|
min-height: 40px;
|
|
2192
|
-
|
|
2193
|
-
width:
|
|
2248
|
+
height: auto;
|
|
2249
|
+
width: 100%;
|
|
2194
2250
|
margin: 0; }
|
|
2251
|
+
@media (min-width: 768px) {
|
|
2252
|
+
.selector-button, .selector-button-primary, .selector-button-secondary {
|
|
2253
|
+
width: 30%; } }
|
|
2195
2254
|
.selector-button:hover, .selector-button-primary:hover, .selector-button-secondary:hover {
|
|
2196
2255
|
opacity: .9; }
|
|
2197
2256
|
.selector-button h2, .selector-button-primary h2, .selector-button-secondary h2 {
|
|
@@ -2242,9 +2301,11 @@ body {
|
|
|
2242
2301
|
justify-content: center;
|
|
2243
2302
|
height: auto;
|
|
2244
2303
|
min-height: 40px;
|
|
2245
|
-
width:
|
|
2246
|
-
max-height: 40px;
|
|
2304
|
+
width: 100%;
|
|
2247
2305
|
margin: 0; }
|
|
2306
|
+
@media (min-width: 768px) {
|
|
2307
|
+
.selector-button-border {
|
|
2308
|
+
width: 30%; } }
|
|
2248
2309
|
.selector-button-border:hover {
|
|
2249
2310
|
background-color: #1e3a8a !important;
|
|
2250
2311
|
opacity: .9; }
|
|
@@ -3136,7 +3197,7 @@ body {
|
|
|
3136
3197
|
overflow: hidden;
|
|
3137
3198
|
width: 100%;
|
|
3138
3199
|
border-collapse: collapse;
|
|
3139
|
-
padding
|
|
3200
|
+
padding: 8px; }
|
|
3140
3201
|
|
|
3141
3202
|
.data-table .row {
|
|
3142
3203
|
display: -webkit-box;
|
|
@@ -5869,9 +5930,6 @@ video::-webkit-media-controls-panel {
|
|
|
5869
5930
|
display: flex;
|
|
5870
5931
|
-ms-flex-wrap: wrap;
|
|
5871
5932
|
flex-wrap: wrap;
|
|
5872
|
-
-webkit-box-pack: justify;
|
|
5873
|
-
-ms-flex-pack: justify;
|
|
5874
|
-
justify-content: space-between;
|
|
5875
5933
|
--bg-opacity:1;
|
|
5876
5934
|
background-color: #fff;
|
|
5877
5935
|
background-color: rgba(255, 255, 255, var(--bg-opacity));
|
|
@@ -7440,6 +7498,107 @@ video::-webkit-media-controls-panel {
|
|
|
7440
7498
|
text-align: center;
|
|
7441
7499
|
width: 40px; }
|
|
7442
7500
|
|
|
7501
|
+
.document-section-wrapper {
|
|
7502
|
+
margin-top: 20px;
|
|
7503
|
+
margin-bottom: 20px;
|
|
7504
|
+
border-radius: 4px;
|
|
7505
|
+
border: 1px solid #e0e4e8;
|
|
7506
|
+
background-color: #f9f9f9;
|
|
7507
|
+
padding: 16px; }
|
|
7508
|
+
|
|
7509
|
+
.document-section-header {
|
|
7510
|
+
margin-top: 0;
|
|
7511
|
+
margin-bottom: 16px;
|
|
7512
|
+
display: -webkit-box;
|
|
7513
|
+
display: -ms-flexbox;
|
|
7514
|
+
display: flex;
|
|
7515
|
+
-webkit-box-align: center;
|
|
7516
|
+
-ms-flex-align: center;
|
|
7517
|
+
align-items: center;
|
|
7518
|
+
font-weight: 600;
|
|
7519
|
+
color: #505a5f; }
|
|
7520
|
+
.document-section-header .document-icon {
|
|
7521
|
+
margin-right: 8px;
|
|
7522
|
+
font-size: 18px; }
|
|
7523
|
+
|
|
7524
|
+
.document-empty-state {
|
|
7525
|
+
padding: 16px;
|
|
7526
|
+
text-align: center;
|
|
7527
|
+
color: #7a8a96;
|
|
7528
|
+
background-color: #fff;
|
|
7529
|
+
border-radius: 4px; }
|
|
7530
|
+
|
|
7531
|
+
.document-container {
|
|
7532
|
+
margin-top: 16px; }
|
|
7533
|
+
|
|
7534
|
+
.document-grid {
|
|
7535
|
+
display: grid;
|
|
7536
|
+
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
|
|
7537
|
+
grid-gap: 16px;
|
|
7538
|
+
gap: 16px;
|
|
7539
|
+
padding: 8px; }
|
|
7540
|
+
|
|
7541
|
+
.document-link {
|
|
7542
|
+
text-decoration: none;
|
|
7543
|
+
cursor: pointer;
|
|
7544
|
+
-webkit-transition: -webkit-transform .2s,-webkit-box-shadow .2s;
|
|
7545
|
+
transition: -webkit-transform .2s,-webkit-box-shadow .2s;
|
|
7546
|
+
transition: transform .2s,box-shadow .2s;
|
|
7547
|
+
transition: transform .2s,box-shadow .2s,-webkit-transform .2s,-webkit-box-shadow .2s; }
|
|
7548
|
+
.document-link:hover .document-card {
|
|
7549
|
+
-webkit-transform: translateY(-4px);
|
|
7550
|
+
transform: translateY(-4px);
|
|
7551
|
+
-webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
7552
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }
|
|
7553
|
+
|
|
7554
|
+
.document-card {
|
|
7555
|
+
-webkit-box-orient: vertical;
|
|
7556
|
+
-webkit-box-direction: normal;
|
|
7557
|
+
-ms-flex-direction: column;
|
|
7558
|
+
flex-direction: column;
|
|
7559
|
+
padding: 16px;
|
|
7560
|
+
background-color: #fff;
|
|
7561
|
+
border-radius: 8px;
|
|
7562
|
+
border: 1px solid #e8e8e8;
|
|
7563
|
+
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
|
|
7564
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
|
|
7565
|
+
-webkit-transition: all .2s;
|
|
7566
|
+
transition: all .2s; }
|
|
7567
|
+
|
|
7568
|
+
.document-card, .document-icon-wrapper {
|
|
7569
|
+
display: -webkit-box;
|
|
7570
|
+
display: -ms-flexbox;
|
|
7571
|
+
display: flex;
|
|
7572
|
+
-webkit-box-align: center;
|
|
7573
|
+
-ms-flex-align: center;
|
|
7574
|
+
align-items: center; }
|
|
7575
|
+
|
|
7576
|
+
.document-icon-wrapper {
|
|
7577
|
+
-webkit-box-pack: center;
|
|
7578
|
+
-ms-flex-pack: center;
|
|
7579
|
+
justify-content: center;
|
|
7580
|
+
width: 100px;
|
|
7581
|
+
height: 120px;
|
|
7582
|
+
background-color: #fef5f5;
|
|
7583
|
+
border-radius: 6px;
|
|
7584
|
+
margin-bottom: 12px; }
|
|
7585
|
+
|
|
7586
|
+
.document-name {
|
|
7587
|
+
margin-top: 0;
|
|
7588
|
+
margin-bottom: 0;
|
|
7589
|
+
text-align: center;
|
|
7590
|
+
font-size: 12px;
|
|
7591
|
+
font-weight: 500;
|
|
7592
|
+
color: #333;
|
|
7593
|
+
word-break: break-word;
|
|
7594
|
+
line-height: 1.4; }
|
|
7595
|
+
|
|
7596
|
+
.document-action-label {
|
|
7597
|
+
margin-top: 8px;
|
|
7598
|
+
font-size: 11px;
|
|
7599
|
+
color: #0b69a4;
|
|
7600
|
+
font-weight: 600; }
|
|
7601
|
+
|
|
7443
7602
|
.employee-login-page {
|
|
7444
7603
|
min-height: 90vh;
|
|
7445
7604
|
width: 100%;
|
|
@@ -8170,7 +8329,7 @@ video::-webkit-media-controls-panel {
|
|
|
8170
8329
|
|
|
8171
8330
|
@media only screen and (max-width: 639px) {
|
|
8172
8331
|
.employee .ground-container {
|
|
8173
|
-
margin-top:
|
|
8332
|
+
margin-top: 1rem; } }
|
|
8174
8333
|
|
|
8175
8334
|
@media only screen and (max-width: 950px) {
|
|
8176
8335
|
#main-img {
|
|
@@ -8702,6 +8861,7 @@ video::-webkit-media-controls-panel {
|
|
|
8702
8861
|
font-size: 16px; }
|
|
8703
8862
|
|
|
8704
8863
|
.inbox-container .filters-container .search-complaint-container {
|
|
8864
|
+
padding: 1rem;
|
|
8705
8865
|
-webkit-box-align: center;
|
|
8706
8866
|
-ms-flex-align: center;
|
|
8707
8867
|
align-items: center;
|
|
@@ -8833,6 +8993,8 @@ video::-webkit-media-controls-panel {
|
|
|
8833
8993
|
fill: #1359c8; }
|
|
8834
8994
|
.inboxLinks .body {
|
|
8835
8995
|
margin-left: 0; }
|
|
8996
|
+
.filter-card {
|
|
8997
|
+
padding: 1rem !important; }
|
|
8836
8998
|
.filter-form .filter-card {
|
|
8837
8999
|
padding: 16px;
|
|
8838
9000
|
--bg-opacity:1;
|
|
@@ -8873,91 +9035,93 @@ video::-webkit-media-controls-panel {
|
|
|
8873
9035
|
line-height: 24px; }
|
|
8874
9036
|
.inbox-container .filters-container .citizen-filter {
|
|
8875
9037
|
margin-top: unset; }
|
|
8876
|
-
.inbox-container .search-container
|
|
8877
|
-
|
|
8878
|
-
|
|
8879
|
-
|
|
8880
|
-
|
|
8881
|
-
|
|
8882
|
-
|
|
8883
|
-
|
|
8884
|
-
|
|
8885
|
-
|
|
8886
|
-
|
|
8887
|
-
|
|
8888
|
-
|
|
8889
|
-
|
|
8890
|
-
|
|
8891
|
-
|
|
8892
|
-
|
|
8893
|
-
|
|
8894
|
-
|
|
8895
|
-
|
|
8896
|
-
|
|
8897
|
-
|
|
8898
|
-
|
|
8899
|
-
.inbox-container .search-container .search-complaint-container .complaint-input-container.for-pt.for-search
|
|
9038
|
+
.inbox-container .search-container {
|
|
9039
|
+
padding: 1rem !important; }
|
|
9040
|
+
.inbox-container .search-container .search-complaint-container {
|
|
9041
|
+
margin: auto;
|
|
9042
|
+
display: -webkit-box;
|
|
9043
|
+
display: -ms-flexbox;
|
|
9044
|
+
display: flex;
|
|
9045
|
+
-webkit-box-orient: vertical;
|
|
9046
|
+
-webkit-box-direction: normal;
|
|
9047
|
+
-ms-flex-direction: column;
|
|
9048
|
+
flex-direction: column;
|
|
9049
|
+
-webkit-box-align: start;
|
|
9050
|
+
-ms-flex-align: start;
|
|
9051
|
+
align-items: flex-start;
|
|
9052
|
+
margin-bottom: 16px;
|
|
9053
|
+
--bg-opacity:1;
|
|
9054
|
+
background-color: #fff;
|
|
9055
|
+
background-color: rgba(255, 255, 255, var(--bg-opacity));
|
|
9056
|
+
padding: 16px; }
|
|
9057
|
+
.inbox-container .search-container .search-complaint-container .complaint-input-container {
|
|
9058
|
+
display: grid !important;
|
|
9059
|
+
grid-template-columns: 33.33% 33.33% 33.33%;
|
|
9060
|
+
width: 100% !important; }
|
|
9061
|
+
.inbox-container .search-container .search-complaint-container .complaint-input-container.for-pt.for-search {
|
|
9062
|
+
grid-template-columns: 25% 25% 25% 25%; }
|
|
9063
|
+
.inbox-container .search-container .search-complaint-container .complaint-input-container.for-pt.for-search .input-fields:nth-child(3n) {
|
|
9064
|
+
margin-right: 16px !important; }
|
|
9065
|
+
.inbox-container .search-container .search-complaint-container .complaint-input-container.for-pt.for-search .input-fields:nth-child(4n) {
|
|
9066
|
+
margin-right: 0 !important; }
|
|
9067
|
+
.inbox-container .search-container .search-complaint-container .complaint-input-container.for-pt.for-search .search-submit-wrapper {
|
|
9068
|
+
grid-column: 4/5;
|
|
9069
|
+
max-width: unset;
|
|
9070
|
+
margin-left: unset;
|
|
9071
|
+
margin-left: 50%;
|
|
9072
|
+
max-width: 50%;
|
|
9073
|
+
grid-column: 3/4;
|
|
9074
|
+
display: -webkit-box;
|
|
9075
|
+
display: -ms-flexbox;
|
|
9076
|
+
display: flex;
|
|
9077
|
+
-webkit-box-orient: vertical;
|
|
9078
|
+
-webkit-box-direction: normal;
|
|
9079
|
+
-ms-flex-direction: column;
|
|
9080
|
+
flex-direction: column;
|
|
9081
|
+
-webkit-box-pack: center;
|
|
9082
|
+
-ms-flex-pack: center;
|
|
9083
|
+
justify-content: center;
|
|
9084
|
+
text-align: center;
|
|
9085
|
+
margin-top: unset;
|
|
9086
|
+
margin-bottom: 20px;
|
|
9087
|
+
max-width: 100%;
|
|
9088
|
+
width: 100%; }
|
|
9089
|
+
.inbox-container .search-container .search-complaint-container .complaint-input-container .input-fields {
|
|
9090
|
+
display: inline-block !important;
|
|
8900
9091
|
margin-right: 16px !important; }
|
|
8901
|
-
|
|
9092
|
+
.inbox-container .search-container .search-complaint-container .complaint-input-container .input-fields .inbox-search-form-error {
|
|
9093
|
+
padding-top: 0;
|
|
9094
|
+
margin-top: 0;
|
|
9095
|
+
position: absolute; }
|
|
9096
|
+
.inbox-container .search-container .search-complaint-container .complaint-input-container .input-fields:nth-child(3n) {
|
|
8902
9097
|
margin-right: 0 !important; }
|
|
8903
|
-
.inbox-container .search-container .search-complaint-container .complaint-input-container
|
|
8904
|
-
grid-column: 4/5;
|
|
8905
|
-
max-width: unset;
|
|
8906
|
-
margin-left: unset;
|
|
8907
|
-
margin-left: 50%;
|
|
8908
|
-
max-width: 50%;
|
|
8909
|
-
grid-column: 3/4;
|
|
9098
|
+
.inbox-container .search-container .search-complaint-container .complaint-input-container .complaint-input {
|
|
8910
9099
|
display: -webkit-box;
|
|
8911
9100
|
display: -ms-flexbox;
|
|
8912
9101
|
display: flex;
|
|
8913
9102
|
-webkit-box-orient: vertical;
|
|
8914
9103
|
-webkit-box-direction: normal;
|
|
8915
9104
|
-ms-flex-direction: column;
|
|
8916
|
-
flex-direction: column;
|
|
8917
|
-
-
|
|
8918
|
-
|
|
8919
|
-
|
|
8920
|
-
|
|
8921
|
-
|
|
8922
|
-
|
|
8923
|
-
|
|
8924
|
-
|
|
8925
|
-
|
|
8926
|
-
|
|
8927
|
-
|
|
8928
|
-
|
|
8929
|
-
|
|
8930
|
-
|
|
8931
|
-
|
|
8932
|
-
|
|
8933
|
-
|
|
8934
|
-
|
|
8935
|
-
|
|
8936
|
-
display: -ms-flexbox;
|
|
8937
|
-
display: flex;
|
|
8938
|
-
-webkit-box-orient: vertical;
|
|
8939
|
-
-webkit-box-direction: normal;
|
|
8940
|
-
-ms-flex-direction: column;
|
|
8941
|
-
flex-direction: column; }
|
|
8942
|
-
.inbox-container .search-container .search-complaint-container .complaint-input-container .complaint-input .clear-search {
|
|
8943
|
-
--text-opacity:1;
|
|
8944
|
-
color: #1359c8;
|
|
8945
|
-
color: rgba(19, 89, 200, var(--text-opacity));
|
|
8946
|
-
display: block; }
|
|
8947
|
-
.inbox-container .search-container .search-complaint-container .complaint-input-container .complaint-input .clear-search:hover {
|
|
8948
|
-
color: #003078; }
|
|
8949
|
-
.inbox-container .search-container .search-complaint-container .complaint-input-container .mobile-input {
|
|
8950
|
-
margin-left: 8px; }
|
|
8951
|
-
.inbox-container .search-container .search-complaint-container .search-action-wrapper {
|
|
8952
|
-
width: 33%;
|
|
8953
|
-
margin-top: 28px;
|
|
8954
|
-
display: inline-block;
|
|
8955
|
-
vertical-align: middle;
|
|
8956
|
-
text-align: center; }
|
|
8957
|
-
.inbox-container .search-container .search-complaint-container .search-action-wrapper button {
|
|
8958
|
-
margin: 0;
|
|
8959
|
-
width: 100%;
|
|
8960
|
-
max-width: 300px !important; } }
|
|
9105
|
+
flex-direction: column; }
|
|
9106
|
+
.inbox-container .search-container .search-complaint-container .complaint-input-container .complaint-input .clear-search {
|
|
9107
|
+
--text-opacity:1;
|
|
9108
|
+
color: #1359c8;
|
|
9109
|
+
color: rgba(19, 89, 200, var(--text-opacity));
|
|
9110
|
+
display: block; }
|
|
9111
|
+
.inbox-container .search-container .search-complaint-container .complaint-input-container .complaint-input .clear-search:hover {
|
|
9112
|
+
color: #003078; }
|
|
9113
|
+
.inbox-container .search-container .search-complaint-container .complaint-input-container .mobile-input {
|
|
9114
|
+
margin-left: 8px; }
|
|
9115
|
+
.inbox-container .search-container .search-complaint-container .search-action-wrapper {
|
|
9116
|
+
width: 33%;
|
|
9117
|
+
margin-top: 28px;
|
|
9118
|
+
display: inline-block;
|
|
9119
|
+
vertical-align: middle;
|
|
9120
|
+
text-align: center; }
|
|
9121
|
+
.inbox-container .search-container .search-complaint-container .search-action-wrapper button {
|
|
9122
|
+
margin: 0;
|
|
9123
|
+
width: 100%;
|
|
9124
|
+
max-width: 300px !important; } }
|
|
8961
9125
|
|
|
8962
9126
|
.document-clear-all {
|
|
8963
9127
|
grid-area: 2/2;
|
|
@@ -9224,6 +9388,9 @@ video::-webkit-media-controls-panel {
|
|
|
9224
9388
|
line-height: 24px;
|
|
9225
9389
|
text-align: left; } }
|
|
9226
9390
|
|
|
9391
|
+
.filter-card, .mCollect-filter {
|
|
9392
|
+
padding: 1rem !important; }
|
|
9393
|
+
|
|
9227
9394
|
.secondary-action {
|
|
9228
9395
|
display: inline;
|
|
9229
9396
|
float: right; }
|
|
@@ -18266,7 +18433,8 @@ body {
|
|
|
18266
18433
|
text-indent: 2px; }
|
|
18267
18434
|
|
|
18268
18435
|
.text-input {
|
|
18269
|
-
width: 100%;
|
|
18436
|
+
width: 100%;
|
|
18437
|
+
margin-bottom: 24px; }
|
|
18270
18438
|
.text-input input:hover, .text-input .checkbox-wrap .input-emp:hover, .checkbox-wrap .text-input .input-emp:hover {
|
|
18271
18439
|
--border-opacity:1;
|
|
18272
18440
|
border: 1px solid #2947a3;
|
|
@@ -18697,8 +18865,6 @@ body {
|
|
|
18697
18865
|
font-size: 1rem; } }
|
|
18698
18866
|
|
|
18699
18867
|
@media screen and (max-width: 768px) {
|
|
18700
|
-
.stepper {
|
|
18701
|
-
display: grid !important; }
|
|
18702
18868
|
.action-bar-wrap {
|
|
18703
18869
|
padding: 10px;
|
|
18704
18870
|
text-align: center; }
|
|
@@ -19145,3 +19311,15 @@ audio, canvas, embed, iframe, img, object, svg, video {
|
|
|
19145
19311
|
transition: background-color .2s ease,transform .1s ease,-webkit-transform .1s ease;
|
|
19146
19312
|
-webkit-box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
|
|
19147
19313
|
box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2); }
|
|
19314
|
+
|
|
19315
|
+
.svgPrimaryH16px {
|
|
19316
|
+
display: none !important; }
|
|
19317
|
+
|
|
19318
|
+
@media (max-width: 767px) {
|
|
19319
|
+
.card input[type=date], .card .checkbox-wrap .input-emp[type=date], .checkbox-wrap .card .input-emp[type=date], .citizen-card-input[type=date], .form-field input[type=date], .form-field .checkbox-wrap .input-emp[type=date], .checkbox-wrap .form-field .input-emp[type=date], input[type=date], .checkbox-wrap .input-emp[type=date] {
|
|
19320
|
+
text-align: center !important; } }
|
|
19321
|
+
|
|
19322
|
+
input[type=date], .checkbox-wrap .input-emp[type=date] {
|
|
19323
|
+
-webkit-appearance: none !important;
|
|
19324
|
+
-moz-appearance: none !important;
|
|
19325
|
+
appearance: none !important; }
|