@pmidc/upyog-css 1.2.39 → 1.2.40
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 +115 -1
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/index.scss +102 -0
- package/src/modules/BPA/index.scss +26 -0
- package/src/pages/citizen/InboxCard.scss +1 -1
package/package.json
CHANGED
package/src/index.scss
CHANGED
|
@@ -2038,6 +2038,97 @@ input[type="date"] {
|
|
|
2038
2038
|
font-size: 15px;
|
|
2039
2039
|
margin-right: 4px;
|
|
2040
2040
|
}
|
|
2041
|
+
.custom-fix-fee-history-wrapper {
|
|
2042
|
+
margin-top: 16px;
|
|
2043
|
+
}
|
|
2044
|
+
|
|
2045
|
+
.custom-fix-fee-history-toggle {
|
|
2046
|
+
display: flex;
|
|
2047
|
+
align-items: center;
|
|
2048
|
+
cursor: pointer;
|
|
2049
|
+
padding: 12px 0;
|
|
2050
|
+
border-bottom: 1px solid #ddd;
|
|
2051
|
+
}
|
|
2052
|
+
|
|
2053
|
+
.custom-fix-fee-history-toggle-text {
|
|
2054
|
+
font-weight: bold;
|
|
2055
|
+
font-size: 16px;
|
|
2056
|
+
flex: 1;
|
|
2057
|
+
}
|
|
2058
|
+
|
|
2059
|
+
.custom-fix-fee-history-toggle-icon {
|
|
2060
|
+
font-size: 18px;
|
|
2061
|
+
font-weight: bold;
|
|
2062
|
+
}
|
|
2063
|
+
|
|
2064
|
+
.custom-fix-fee-history-table-container {
|
|
2065
|
+
overflow-x: auto;
|
|
2066
|
+
margin-top: 16px;
|
|
2067
|
+
}
|
|
2068
|
+
|
|
2069
|
+
.custom-fix-fee-history-table {
|
|
2070
|
+
width: 100%;
|
|
2071
|
+
border-collapse: collapse;
|
|
2072
|
+
min-width: 600px;
|
|
2073
|
+
}
|
|
2074
|
+
|
|
2075
|
+
.custom-fix-fee-history-table-header {
|
|
2076
|
+
padding: 8px;
|
|
2077
|
+
border: 1px solid #ddd;
|
|
2078
|
+
font-weight: bold;
|
|
2079
|
+
background-color: #1f3a9f;
|
|
2080
|
+
color: #fff;
|
|
2081
|
+
min-width: 140px;
|
|
2082
|
+
}
|
|
2083
|
+
|
|
2084
|
+
.custom-fix-fee-history-table-header-fee {
|
|
2085
|
+
padding: 8px;
|
|
2086
|
+
border: 1px solid #ddd;
|
|
2087
|
+
font-weight: bold;
|
|
2088
|
+
background-color: #1f3a9f;
|
|
2089
|
+
color: #fff;
|
|
2090
|
+
min-width: 150px;
|
|
2091
|
+
}
|
|
2092
|
+
|
|
2093
|
+
.custom-fix-fee-history-table-cell-label {
|
|
2094
|
+
padding: 8px;
|
|
2095
|
+
border: 1px solid #ddd;
|
|
2096
|
+
font-weight: bold;
|
|
2097
|
+
background-color: #f9f9f9;
|
|
2098
|
+
}
|
|
2099
|
+
|
|
2100
|
+
.custom-fix-fee-history-table-cell-value {
|
|
2101
|
+
padding: 8px;
|
|
2102
|
+
border: 1px solid #ddd;
|
|
2103
|
+
}
|
|
2104
|
+
|
|
2105
|
+
.custom-fix-fee-history-table-cell-separator {
|
|
2106
|
+
padding: 8px;
|
|
2107
|
+
border: 1px solid #ddd;
|
|
2108
|
+
font-weight: bold;
|
|
2109
|
+
background-color: #f9f9f9;
|
|
2110
|
+
border-bottom: 3px solid #999999;
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2113
|
+
.custom-fix-fee-history-table-cell-separator-value {
|
|
2114
|
+
padding: 8px;
|
|
2115
|
+
border: 1px solid #ddd;
|
|
2116
|
+
border-bottom: 3px solid #999999;
|
|
2117
|
+
}
|
|
2118
|
+
|
|
2119
|
+
.custom-fix-fee-history-table-cell-separator-last {
|
|
2120
|
+
padding: 8px;
|
|
2121
|
+
border: 1px solid #ddd;
|
|
2122
|
+
font-weight: bold;
|
|
2123
|
+
background-color: #f9f9f9;
|
|
2124
|
+
border-bottom: none;
|
|
2125
|
+
}
|
|
2126
|
+
|
|
2127
|
+
.custom-fix-fee-history-table-cell-separator-value-last {
|
|
2128
|
+
padding: 8px;
|
|
2129
|
+
border: 1px solid #ddd;
|
|
2130
|
+
border-bottom: none;
|
|
2131
|
+
}
|
|
2041
2132
|
|
|
2042
2133
|
/* NOC Document Checklist Table Wrapper */
|
|
2043
2134
|
.checklist-document-table-wrapper {
|
|
@@ -2318,3 +2409,14 @@ input[type="date"] {
|
|
|
2318
2409
|
width: 100%;
|
|
2319
2410
|
}
|
|
2320
2411
|
}
|
|
2412
|
+
.hrms-text-transform{
|
|
2413
|
+
text-transform: none !important;
|
|
2414
|
+
}
|
|
2415
|
+
|
|
2416
|
+
|
|
2417
|
+
.noc-popupStyles {
|
|
2418
|
+
width: unset;
|
|
2419
|
+
min-width: 360px;
|
|
2420
|
+
max-width: 600px;
|
|
2421
|
+
padding: 20px;
|
|
2422
|
+
}
|
|
@@ -90,6 +90,32 @@
|
|
|
90
90
|
color: red;
|
|
91
91
|
}
|
|
92
92
|
|
|
93
|
+
.back-button-container {
|
|
94
|
+
cursor: pointer;
|
|
95
|
+
width: fit-content;
|
|
96
|
+
display: flex;
|
|
97
|
+
font-family: 'Roboto Condensed', sans-serif;
|
|
98
|
+
color: rgba(13, 67, 167, var(--text-opacity));
|
|
99
|
+
font-size: 16px;
|
|
100
|
+
line-height: 24px;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.stepper-margin {
|
|
104
|
+
margin-left: 30px;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.document-link-bpa {
|
|
108
|
+
text-decoration: none;
|
|
109
|
+
cursor: pointer;
|
|
110
|
+
transition: transform 0.2s, box-shadow 0.2s;
|
|
111
|
+
width: 250px;
|
|
112
|
+
|
|
113
|
+
&:hover .document-card {
|
|
114
|
+
transform: translateY(-4px);
|
|
115
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
93
119
|
/* Mobile */
|
|
94
120
|
@media (max-width: 768px) {
|
|
95
121
|
.upload-tag-container {
|