@tattvafoundation/upyog-css 1.0.43 → 1.0.45
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 +720 -156
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/PropertySearchForm.scss +1 -1
- package/src/components/bmc.scss +675 -19
- package/src/components/hoc/InboxComposer.scss +1 -1
- package/src/components/inventory.scss +44 -24
- package/src/pages/citizen/DocumentList.scss +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
/* Color Palette -
|
|
1
|
+
/* Color Palette - BMC Gold Theme */
|
|
2
2
|
:root {
|
|
3
|
-
--primary-color: #
|
|
4
|
-
--primary-hover: #
|
|
5
|
-
--primary-light: #
|
|
3
|
+
--primary-color: #d1b03f;
|
|
4
|
+
--primary-hover: #b49326;
|
|
5
|
+
--primary-light: #fffbeb;
|
|
6
6
|
--secondary-color: #64748b;
|
|
7
7
|
--secondary-light: #f1f5f9;
|
|
8
8
|
--success-color: #059669;
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
--danger-color: #dc2626;
|
|
11
11
|
--dark-color: #1e293b;
|
|
12
12
|
--light-color: #f8fafc;
|
|
13
|
-
--border-color: #
|
|
14
|
-
--text-primary: #
|
|
13
|
+
--border-color: #fde68a;
|
|
14
|
+
--text-primary: #92400e;
|
|
15
15
|
--text-secondary: #64748b;
|
|
16
16
|
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
17
17
|
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
@@ -37,6 +37,15 @@ body {
|
|
|
37
37
|
max-width: 2000px;
|
|
38
38
|
margin: 0 auto;
|
|
39
39
|
padding: 2rem;
|
|
40
|
+
line-height: 1.6;
|
|
41
|
+
|
|
42
|
+
* {
|
|
43
|
+
line-height: inherit;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
p, span, div, label, h1, h2, h3, h4, h5, h6, td, th, li, button, input, select, textarea {
|
|
47
|
+
line-height: 1.6;
|
|
48
|
+
}
|
|
40
49
|
}
|
|
41
50
|
|
|
42
51
|
/* Header Styles */
|
|
@@ -114,9 +123,10 @@ body {
|
|
|
114
123
|
.inventory_form-label {
|
|
115
124
|
display: block;
|
|
116
125
|
font-weight: 600;
|
|
117
|
-
color:
|
|
126
|
+
color: #92400e;
|
|
118
127
|
margin-bottom: 0.5rem;
|
|
119
|
-
font-size: 0.
|
|
128
|
+
font-size: 0.85rem;
|
|
129
|
+
letter-spacing: 0.2px;
|
|
120
130
|
}
|
|
121
131
|
|
|
122
132
|
.inventory_required {
|
|
@@ -129,25 +139,35 @@ body {
|
|
|
129
139
|
.inventory_form-select,
|
|
130
140
|
.inventory_form-textarea {
|
|
131
141
|
width: 100%;
|
|
132
|
-
padding:
|
|
133
|
-
border:
|
|
134
|
-
border-radius:
|
|
135
|
-
font-size:
|
|
136
|
-
transition: all 0.
|
|
137
|
-
background:
|
|
138
|
-
color:
|
|
142
|
+
padding: 10px 14px;
|
|
143
|
+
border: 1.5px solid #fde68a;
|
|
144
|
+
border-radius: 10px;
|
|
145
|
+
font-size: 14px;
|
|
146
|
+
transition: all 0.25s ease;
|
|
147
|
+
background: #fffbeb;
|
|
148
|
+
color: #1e293b;
|
|
139
149
|
line-height: normal;
|
|
150
|
+
height: 44px;
|
|
140
151
|
}
|
|
141
152
|
|
|
142
153
|
.inventory_form-input:focus,
|
|
143
154
|
.inventory_form-select:focus,
|
|
144
155
|
.inventory_form-textarea:focus {
|
|
145
156
|
outline: none;
|
|
146
|
-
border-color:
|
|
147
|
-
box-shadow: 0 0 0 3px rgba(
|
|
157
|
+
border-color: #d1b03f;
|
|
158
|
+
box-shadow: 0 0 0 3px rgba(209, 176, 63, 0.15);
|
|
148
159
|
transform: translateY(-1px);
|
|
149
160
|
}
|
|
150
161
|
|
|
162
|
+
.inventory_form-input:disabled,
|
|
163
|
+
.inventory_form-select:disabled,
|
|
164
|
+
.inventory_form-textarea:disabled {
|
|
165
|
+
background: #f9f6ee;
|
|
166
|
+
border-color: #e2e8f0;
|
|
167
|
+
color: #6b7280;
|
|
168
|
+
cursor: not-allowed;
|
|
169
|
+
}
|
|
170
|
+
|
|
151
171
|
.inventory_form-textarea {
|
|
152
172
|
resize: vertical;
|
|
153
173
|
min-height: 100px;
|
|
@@ -198,12 +218,12 @@ body {
|
|
|
198
218
|
}
|
|
199
219
|
|
|
200
220
|
.inventory_section-title {
|
|
201
|
-
font-size:
|
|
202
|
-
font-weight:
|
|
203
|
-
color:
|
|
204
|
-
margin-bottom: 1.
|
|
205
|
-
padding-bottom: 0.
|
|
206
|
-
border-bottom: 2px solid
|
|
221
|
+
font-size: 1rem;
|
|
222
|
+
font-weight: 700;
|
|
223
|
+
color: #b49326;
|
|
224
|
+
margin-bottom: 1.2rem;
|
|
225
|
+
padding-bottom: 0.4rem;
|
|
226
|
+
border-bottom: 2px solid #fde68a;
|
|
207
227
|
}
|
|
208
228
|
|
|
209
229
|
/* Button Styles */
|
|
@@ -805,7 +825,7 @@ body {
|
|
|
805
825
|
font-size: 14px;
|
|
806
826
|
color: var(--text-primary);
|
|
807
827
|
vertical-align: middle;
|
|
808
|
-
line-height: 1.
|
|
828
|
+
line-height: 1.6;
|
|
809
829
|
}
|
|
810
830
|
|
|
811
831
|
.Inventory-table tbody td:last-child {
|