@pmidc/upyog-css 1.2.14 → 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 +314 -96
- 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 +85 -0
- package/src/components/cardHeaderWithOptions.scss +3 -1
- package/src/components/datatable.scss +1 -0
- package/src/components/documentSection.scss +95 -0
- package/src/index.scss +59 -22
- package/src/pages/employee/inbox.scss +19 -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,6 +1819,79 @@ 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
|
+
|
|
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; }
|
|
1877
|
+
.card-link {
|
|
1878
|
+
height: 32px;
|
|
1879
|
+
width: 140px;
|
|
1880
|
+
font-size: 11px;
|
|
1881
|
+
padding: 6px 12px;
|
|
1882
|
+
display: -webkit-box;
|
|
1883
|
+
display: -ms-flexbox;
|
|
1884
|
+
display: flex;
|
|
1885
|
+
-webkit-box-pack: center;
|
|
1886
|
+
-ms-flex-pack: center;
|
|
1887
|
+
justify-content: center;
|
|
1888
|
+
-webkit-box-align: center;
|
|
1889
|
+
-ms-flex-align: center;
|
|
1890
|
+
align-items: center; }
|
|
1891
|
+
.card-link header {
|
|
1892
|
+
line-height: 32px;
|
|
1893
|
+
font-size: 11px; } }
|
|
1894
|
+
|
|
1823
1895
|
.bpa-owner-submit-back, .submit-bar {
|
|
1824
1896
|
height: 40px;
|
|
1825
1897
|
background: linear-gradient(135deg, #2563eb, #1e40af);
|
|
@@ -2037,7 +2109,10 @@ body {
|
|
|
2037
2109
|
justify-content: space-between !important;
|
|
2038
2110
|
max-height: 70px !important;
|
|
2039
2111
|
height: 70px !important;
|
|
2040
|
-
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; }
|
|
2041
2116
|
|
|
2042
2117
|
.employee-main-application-details {
|
|
2043
2118
|
padding: 10px !important; }
|
|
@@ -2170,9 +2245,12 @@ body {
|
|
|
2170
2245
|
-ms-flex-pack: center;
|
|
2171
2246
|
justify-content: center;
|
|
2172
2247
|
min-height: 40px;
|
|
2173
|
-
|
|
2174
|
-
width:
|
|
2248
|
+
height: auto;
|
|
2249
|
+
width: 100%;
|
|
2175
2250
|
margin: 0; }
|
|
2251
|
+
@media (min-width: 768px) {
|
|
2252
|
+
.selector-button, .selector-button-primary, .selector-button-secondary {
|
|
2253
|
+
width: 30%; } }
|
|
2176
2254
|
.selector-button:hover, .selector-button-primary:hover, .selector-button-secondary:hover {
|
|
2177
2255
|
opacity: .9; }
|
|
2178
2256
|
.selector-button h2, .selector-button-primary h2, .selector-button-secondary h2 {
|
|
@@ -2223,9 +2301,11 @@ body {
|
|
|
2223
2301
|
justify-content: center;
|
|
2224
2302
|
height: auto;
|
|
2225
2303
|
min-height: 40px;
|
|
2226
|
-
width:
|
|
2227
|
-
max-height: 40px;
|
|
2304
|
+
width: 100%;
|
|
2228
2305
|
margin: 0; }
|
|
2306
|
+
@media (min-width: 768px) {
|
|
2307
|
+
.selector-button-border {
|
|
2308
|
+
width: 30%; } }
|
|
2229
2309
|
.selector-button-border:hover {
|
|
2230
2310
|
background-color: #1e3a8a !important;
|
|
2231
2311
|
opacity: .9; }
|
|
@@ -3117,7 +3197,7 @@ body {
|
|
|
3117
3197
|
overflow: hidden;
|
|
3118
3198
|
width: 100%;
|
|
3119
3199
|
border-collapse: collapse;
|
|
3120
|
-
padding
|
|
3200
|
+
padding: 8px; }
|
|
3121
3201
|
|
|
3122
3202
|
.data-table .row {
|
|
3123
3203
|
display: -webkit-box;
|
|
@@ -5850,9 +5930,6 @@ video::-webkit-media-controls-panel {
|
|
|
5850
5930
|
display: flex;
|
|
5851
5931
|
-ms-flex-wrap: wrap;
|
|
5852
5932
|
flex-wrap: wrap;
|
|
5853
|
-
-webkit-box-pack: justify;
|
|
5854
|
-
-ms-flex-pack: justify;
|
|
5855
|
-
justify-content: space-between;
|
|
5856
5933
|
--bg-opacity:1;
|
|
5857
5934
|
background-color: #fff;
|
|
5858
5935
|
background-color: rgba(255, 255, 255, var(--bg-opacity));
|
|
@@ -5942,7 +6019,10 @@ video::-webkit-media-controls-panel {
|
|
|
5942
6019
|
flex-direction: row;
|
|
5943
6020
|
-webkit-box-pack: justify;
|
|
5944
6021
|
-ms-flex-pack: justify;
|
|
5945
|
-
justify-content: space-between;
|
|
6022
|
+
justify-content: space-between;
|
|
6023
|
+
-webkit-box-align: center;
|
|
6024
|
+
-ms-flex-align: center;
|
|
6025
|
+
align-items: center; }
|
|
5946
6026
|
.cardHeaderWithOptions .multilinkWrapper {
|
|
5947
6027
|
position: relative; }
|
|
5948
6028
|
.cardHeaderWithOptions .multilinkWrapper .multilink-labelWrap {
|
|
@@ -7418,6 +7498,107 @@ video::-webkit-media-controls-panel {
|
|
|
7418
7498
|
text-align: center;
|
|
7419
7499
|
width: 40px; }
|
|
7420
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
|
+
|
|
7421
7602
|
.employee-login-page {
|
|
7422
7603
|
min-height: 90vh;
|
|
7423
7604
|
width: 100%;
|
|
@@ -8148,7 +8329,7 @@ video::-webkit-media-controls-panel {
|
|
|
8148
8329
|
|
|
8149
8330
|
@media only screen and (max-width: 639px) {
|
|
8150
8331
|
.employee .ground-container {
|
|
8151
|
-
margin-top:
|
|
8332
|
+
margin-top: 1rem; } }
|
|
8152
8333
|
|
|
8153
8334
|
@media only screen and (max-width: 950px) {
|
|
8154
8335
|
#main-img {
|
|
@@ -8680,6 +8861,7 @@ video::-webkit-media-controls-panel {
|
|
|
8680
8861
|
font-size: 16px; }
|
|
8681
8862
|
|
|
8682
8863
|
.inbox-container .filters-container .search-complaint-container {
|
|
8864
|
+
padding: 1rem;
|
|
8683
8865
|
-webkit-box-align: center;
|
|
8684
8866
|
-ms-flex-align: center;
|
|
8685
8867
|
align-items: center;
|
|
@@ -8811,6 +8993,8 @@ video::-webkit-media-controls-panel {
|
|
|
8811
8993
|
fill: #1359c8; }
|
|
8812
8994
|
.inboxLinks .body {
|
|
8813
8995
|
margin-left: 0; }
|
|
8996
|
+
.filter-card {
|
|
8997
|
+
padding: 1rem !important; }
|
|
8814
8998
|
.filter-form .filter-card {
|
|
8815
8999
|
padding: 16px;
|
|
8816
9000
|
--bg-opacity:1;
|
|
@@ -8851,91 +9035,93 @@ video::-webkit-media-controls-panel {
|
|
|
8851
9035
|
line-height: 24px; }
|
|
8852
9036
|
.inbox-container .filters-container .citizen-filter {
|
|
8853
9037
|
margin-top: unset; }
|
|
8854
|
-
.inbox-container .search-container
|
|
8855
|
-
|
|
8856
|
-
|
|
8857
|
-
|
|
8858
|
-
|
|
8859
|
-
|
|
8860
|
-
|
|
8861
|
-
|
|
8862
|
-
|
|
8863
|
-
|
|
8864
|
-
|
|
8865
|
-
|
|
8866
|
-
|
|
8867
|
-
|
|
8868
|
-
|
|
8869
|
-
|
|
8870
|
-
|
|
8871
|
-
|
|
8872
|
-
|
|
8873
|
-
|
|
8874
|
-
|
|
8875
|
-
|
|
8876
|
-
|
|
8877
|
-
.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;
|
|
8878
9091
|
margin-right: 16px !important; }
|
|
8879
|
-
|
|
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) {
|
|
8880
9097
|
margin-right: 0 !important; }
|
|
8881
|
-
.inbox-container .search-container .search-complaint-container .complaint-input-container
|
|
8882
|
-
grid-column: 4/5;
|
|
8883
|
-
max-width: unset;
|
|
8884
|
-
margin-left: unset;
|
|
8885
|
-
margin-left: 50%;
|
|
8886
|
-
max-width: 50%;
|
|
8887
|
-
grid-column: 3/4;
|
|
9098
|
+
.inbox-container .search-container .search-complaint-container .complaint-input-container .complaint-input {
|
|
8888
9099
|
display: -webkit-box;
|
|
8889
9100
|
display: -ms-flexbox;
|
|
8890
9101
|
display: flex;
|
|
8891
9102
|
-webkit-box-orient: vertical;
|
|
8892
9103
|
-webkit-box-direction: normal;
|
|
8893
9104
|
-ms-flex-direction: column;
|
|
8894
|
-
flex-direction: column;
|
|
8895
|
-
-
|
|
8896
|
-
|
|
8897
|
-
|
|
8898
|
-
|
|
8899
|
-
|
|
8900
|
-
|
|
8901
|
-
|
|
8902
|
-
|
|
8903
|
-
|
|
8904
|
-
|
|
8905
|
-
|
|
8906
|
-
|
|
8907
|
-
|
|
8908
|
-
|
|
8909
|
-
|
|
8910
|
-
|
|
8911
|
-
|
|
8912
|
-
|
|
8913
|
-
|
|
8914
|
-
display: -ms-flexbox;
|
|
8915
|
-
display: flex;
|
|
8916
|
-
-webkit-box-orient: vertical;
|
|
8917
|
-
-webkit-box-direction: normal;
|
|
8918
|
-
-ms-flex-direction: column;
|
|
8919
|
-
flex-direction: column; }
|
|
8920
|
-
.inbox-container .search-container .search-complaint-container .complaint-input-container .complaint-input .clear-search {
|
|
8921
|
-
--text-opacity:1;
|
|
8922
|
-
color: #1359c8;
|
|
8923
|
-
color: rgba(19, 89, 200, var(--text-opacity));
|
|
8924
|
-
display: block; }
|
|
8925
|
-
.inbox-container .search-container .search-complaint-container .complaint-input-container .complaint-input .clear-search:hover {
|
|
8926
|
-
color: #003078; }
|
|
8927
|
-
.inbox-container .search-container .search-complaint-container .complaint-input-container .mobile-input {
|
|
8928
|
-
margin-left: 8px; }
|
|
8929
|
-
.inbox-container .search-container .search-complaint-container .search-action-wrapper {
|
|
8930
|
-
width: 33%;
|
|
8931
|
-
margin-top: 28px;
|
|
8932
|
-
display: inline-block;
|
|
8933
|
-
vertical-align: middle;
|
|
8934
|
-
text-align: center; }
|
|
8935
|
-
.inbox-container .search-container .search-complaint-container .search-action-wrapper button {
|
|
8936
|
-
margin: 0;
|
|
8937
|
-
width: 100%;
|
|
8938
|
-
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; } }
|
|
8939
9125
|
|
|
8940
9126
|
.document-clear-all {
|
|
8941
9127
|
grid-area: 2/2;
|
|
@@ -8993,6 +9179,16 @@ video::-webkit-media-controls-panel {
|
|
|
8993
9179
|
.complaint-links-container .header .removeHeight {
|
|
8994
9180
|
line-height: 28px; }
|
|
8995
9181
|
|
|
9182
|
+
@media only screen and (max-width: 640px) {
|
|
9183
|
+
.complaint-input-container {
|
|
9184
|
+
display: -webkit-box !important;
|
|
9185
|
+
display: -ms-flexbox !important;
|
|
9186
|
+
display: flex !important;
|
|
9187
|
+
-webkit-box-orient: vertical !important;
|
|
9188
|
+
-webkit-box-direction: normal !important;
|
|
9189
|
+
-ms-flex-direction: column !important;
|
|
9190
|
+
flex-direction: column !important; } }
|
|
9191
|
+
|
|
8996
9192
|
@media (min-width: 780px) {
|
|
8997
9193
|
.complaint-links-container .header .removeBorderRadiusLogo {
|
|
8998
9194
|
border-radius: 2px !important;
|
|
@@ -9192,6 +9388,9 @@ video::-webkit-media-controls-panel {
|
|
|
9192
9388
|
line-height: 24px;
|
|
9193
9389
|
text-align: left; } }
|
|
9194
9390
|
|
|
9391
|
+
.filter-card, .mCollect-filter {
|
|
9392
|
+
padding: 1rem !important; }
|
|
9393
|
+
|
|
9195
9394
|
.secondary-action {
|
|
9196
9395
|
display: inline;
|
|
9197
9396
|
float: right; }
|
|
@@ -18234,7 +18433,8 @@ body {
|
|
|
18234
18433
|
text-indent: 2px; }
|
|
18235
18434
|
|
|
18236
18435
|
.text-input {
|
|
18237
|
-
width: 100%;
|
|
18436
|
+
width: 100%;
|
|
18437
|
+
margin-bottom: 24px; }
|
|
18238
18438
|
.text-input input:hover, .text-input .checkbox-wrap .input-emp:hover, .checkbox-wrap .text-input .input-emp:hover {
|
|
18239
18439
|
--border-opacity:1;
|
|
18240
18440
|
border: 1px solid #2947a3;
|
|
@@ -18665,8 +18865,6 @@ body {
|
|
|
18665
18865
|
font-size: 1rem; } }
|
|
18666
18866
|
|
|
18667
18867
|
@media screen and (max-width: 768px) {
|
|
18668
|
-
.stepper {
|
|
18669
|
-
display: grid !important; }
|
|
18670
18868
|
.action-bar-wrap {
|
|
18671
18869
|
padding: 10px;
|
|
18672
18870
|
text-align: center; }
|
|
@@ -19075,7 +19273,15 @@ audio, canvas, embed, iframe, img, object, svg, video {
|
|
|
19075
19273
|
|
|
19076
19274
|
@media only screen and (max-width: 768px) {
|
|
19077
19275
|
.card-header, .employee-upyog-title, .header-title, .heading, .landing-card-header, .page-header, .section-header, .survey-card-header, h1, h2, h3, header {
|
|
19078
|
-
font-size:
|
|
19276
|
+
font-size: 14px !important; }
|
|
19277
|
+
.card-header .complaint-input-container, .employee-upyog-title .complaint-input-container, .header-title .complaint-input-container, .heading .complaint-input-container, .landing-card-header .complaint-input-container, .page-header .complaint-input-container, .section-header .complaint-input-container, .survey-card-header .complaint-input-container, h1 .complaint-input-container, h2 .complaint-input-container, h3 .complaint-input-container, header .complaint-input-container {
|
|
19278
|
+
display: -webkit-box;
|
|
19279
|
+
display: -ms-flexbox;
|
|
19280
|
+
display: flex;
|
|
19281
|
+
-webkit-box-orient: vertical;
|
|
19282
|
+
-webkit-box-direction: normal;
|
|
19283
|
+
-ms-flex-direction: column;
|
|
19284
|
+
flex-direction: column; }
|
|
19079
19285
|
.card-sub-header, .sub-header, h4 {
|
|
19080
19286
|
font-size: 16px !important; }
|
|
19081
19287
|
.card-section-header, h5, h6 {
|
|
@@ -19105,3 +19311,15 @@ audio, canvas, embed, iframe, img, object, svg, video {
|
|
|
19105
19311
|
transition: background-color .2s ease,transform .1s ease,-webkit-transform .1s ease;
|
|
19106
19312
|
-webkit-box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
|
|
19107
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; }
|