@tattvafoundation/upyog-css 1.0.44 → 1.0.46
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 +341 -96
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/PropertySearchForm.scss +1 -1
- package/src/components/bmc.scss +281 -0
- package/src/components/hoc/InboxComposer.scss +1 -1
- package/src/components/inventory.scss +43 -24
- package/src/pages/citizen/DocumentList.scss +1 -1
package/dist/index.css
CHANGED
|
@@ -522,11 +522,6 @@ img, video {
|
|
|
522
522
|
border-color: #d6d5d4;
|
|
523
523
|
border-color: rgba(214, 213, 212, var(--border-opacity)); }
|
|
524
524
|
|
|
525
|
-
.border-white {
|
|
526
|
-
--border-opacity:1;
|
|
527
|
-
border-color: #fff;
|
|
528
|
-
border-color: rgba(255, 255, 255, var(--border-opacity)); }
|
|
529
|
-
|
|
530
525
|
.border-accent-red {
|
|
531
526
|
--border-opacity:1;
|
|
532
527
|
border-color: #940202;
|
|
@@ -578,19 +573,10 @@ img, video {
|
|
|
578
573
|
border-top-left-radius: .375rem;
|
|
579
574
|
border-top-right-radius: .375rem; }
|
|
580
575
|
|
|
581
|
-
.rounded-
|
|
576
|
+
.rounded-l-lg {
|
|
582
577
|
border-top-left-radius: .5rem;
|
|
583
|
-
border-top-right-radius: .5rem; }
|
|
584
|
-
|
|
585
|
-
.rounded-b-lg {
|
|
586
|
-
border-bottom-right-radius: .5rem; }
|
|
587
|
-
|
|
588
|
-
.rounded-b-lg, .rounded-l-lg {
|
|
589
578
|
border-bottom-left-radius: .5rem; }
|
|
590
579
|
|
|
591
|
-
.rounded-l-lg {
|
|
592
|
-
border-top-left-radius: .5rem; }
|
|
593
|
-
|
|
594
580
|
.rounded-b-xl {
|
|
595
581
|
border-bottom-right-radius: .75rem;
|
|
596
582
|
border-bottom-left-radius: .75rem; }
|
|
@@ -640,6 +626,9 @@ img, video {
|
|
|
640
626
|
.border-b {
|
|
641
627
|
border-bottom-width: 1px; }
|
|
642
628
|
|
|
629
|
+
.border-l {
|
|
630
|
+
border-left-width: 1px; }
|
|
631
|
+
|
|
643
632
|
.cursor-default {
|
|
644
633
|
cursor: default; }
|
|
645
634
|
|
|
@@ -943,6 +932,9 @@ img, video {
|
|
|
943
932
|
.max-w-2xl {
|
|
944
933
|
max-width: 42rem; }
|
|
945
934
|
|
|
935
|
+
.max-w-3xl {
|
|
936
|
+
max-width: 48rem; }
|
|
937
|
+
|
|
946
938
|
.max-w-4xl {
|
|
947
939
|
max-width: 56rem; }
|
|
948
940
|
|
|
@@ -967,6 +959,10 @@ img, video {
|
|
|
967
959
|
.min-w-full {
|
|
968
960
|
min-width: 100%; }
|
|
969
961
|
|
|
962
|
+
.object-contain {
|
|
963
|
+
-o-object-fit: contain;
|
|
964
|
+
object-fit: contain; }
|
|
965
|
+
|
|
970
966
|
.opacity-0 {
|
|
971
967
|
opacity: 0; }
|
|
972
968
|
|
|
@@ -979,7 +975,7 @@ img, video {
|
|
|
979
975
|
.opacity-75 {
|
|
980
976
|
opacity: .75; }
|
|
981
977
|
|
|
982
|
-
.
|
|
978
|
+
.opacity-100 {
|
|
983
979
|
opacity: 1; }
|
|
984
980
|
|
|
985
981
|
.focus\:outline-none:focus, .outline-none {
|
|
@@ -1097,6 +1093,10 @@ img, video {
|
|
|
1097
1093
|
-webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
|
1098
1094
|
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
|
|
1099
1095
|
|
|
1096
|
+
.hover\:shadow-none:hover {
|
|
1097
|
+
-webkit-box-shadow: none;
|
|
1098
|
+
box-shadow: none; }
|
|
1099
|
+
|
|
1100
1100
|
.fill-current {
|
|
1101
1101
|
fill: currentColor; }
|
|
1102
1102
|
|
|
@@ -1220,6 +1220,9 @@ img, video {
|
|
|
1220
1220
|
.uppercase {
|
|
1221
1221
|
text-transform: uppercase; }
|
|
1222
1222
|
|
|
1223
|
+
.lowercase {
|
|
1224
|
+
text-transform: lowercase; }
|
|
1225
|
+
|
|
1223
1226
|
.capitalize {
|
|
1224
1227
|
text-transform: capitalize; }
|
|
1225
1228
|
|
|
@@ -1267,6 +1270,9 @@ img, video {
|
|
|
1267
1270
|
.whitespace-normal {
|
|
1268
1271
|
white-space: normal; }
|
|
1269
1272
|
|
|
1273
|
+
.whitespace-pre-line {
|
|
1274
|
+
white-space: pre-line; }
|
|
1275
|
+
|
|
1270
1276
|
.whitespace-pre-wrap {
|
|
1271
1277
|
white-space: pre-wrap; }
|
|
1272
1278
|
|
|
@@ -1378,9 +1384,6 @@ img, video {
|
|
|
1378
1384
|
.z-20 {
|
|
1379
1385
|
z-index: 20; }
|
|
1380
1386
|
|
|
1381
|
-
.z-40 {
|
|
1382
|
-
z-index: 40; }
|
|
1383
|
-
|
|
1384
1387
|
.z-50 {
|
|
1385
1388
|
z-index: 50; }
|
|
1386
1389
|
|
|
@@ -1493,10 +1496,6 @@ img, video {
|
|
|
1493
1496
|
--transform-scale-x:.95;
|
|
1494
1497
|
--transform-scale-y:.95; }
|
|
1495
1498
|
|
|
1496
|
-
.scale-100 {
|
|
1497
|
-
--transform-scale-x:1;
|
|
1498
|
-
--transform-scale-y:1; }
|
|
1499
|
-
|
|
1500
1499
|
.hover\:scale-105:hover {
|
|
1501
1500
|
--transform-scale-x:1.05;
|
|
1502
1501
|
--transform-scale-y:1.05; }
|
|
@@ -6041,7 +6040,7 @@ video::-webkit-media-controls-panel {
|
|
|
6041
6040
|
margin-right: 10px;
|
|
6042
6041
|
-webkit-box-pack: end;
|
|
6043
6042
|
-ms-flex-pack: end;
|
|
6044
|
-
justify-content: end;
|
|
6043
|
+
justify-content: flex-end;
|
|
6045
6044
|
-webkit-box-align: center;
|
|
6046
6045
|
-ms-flex-align: center;
|
|
6047
6046
|
align-items: center; }
|
|
@@ -6690,7 +6689,7 @@ video::-webkit-media-controls-panel {
|
|
|
6690
6689
|
display: flex;
|
|
6691
6690
|
-webkit-box-pack: end;
|
|
6692
6691
|
-ms-flex-pack: end;
|
|
6693
|
-
justify-content: end;
|
|
6692
|
+
justify-content: flex-end;
|
|
6694
6693
|
-webkit-box-align: center;
|
|
6695
6694
|
-ms-flex-align: center;
|
|
6696
6695
|
align-items: center; }
|
|
@@ -9511,7 +9510,7 @@ body {
|
|
|
9511
9510
|
gap: 8px;
|
|
9512
9511
|
-webkit-box-align: end;
|
|
9513
9512
|
-ms-flex-align: end;
|
|
9514
|
-
align-items: end; }
|
|
9513
|
+
align-items: flex-end; }
|
|
9515
9514
|
.view_download_main span {
|
|
9516
9515
|
padding-right: 20px; }
|
|
9517
9516
|
.view_download_main span .views {
|
|
@@ -10229,7 +10228,6 @@ body {
|
|
|
10229
10228
|
background: none; }
|
|
10230
10229
|
|
|
10231
10230
|
:root {
|
|
10232
|
-
--primary-color:#d1b03f;
|
|
10233
10231
|
--secondary-color:#0b0c0c;
|
|
10234
10232
|
--text-color:#333;
|
|
10235
10233
|
--background-light:#f0f0f0;
|
|
@@ -10238,13 +10236,16 @@ body {
|
|
|
10238
10236
|
--shadow-color:rgba(0,0,0,0.1);
|
|
10239
10237
|
--modal-background:#fff;
|
|
10240
10238
|
--background-color:#fff;
|
|
10241
|
-
--text-color:#000;
|
|
10239
|
+
--text-color:#000;
|
|
10240
|
+
--text-main-color:#000; }
|
|
10242
10241
|
|
|
10243
10242
|
*, body, html {
|
|
10244
10243
|
font-size: var(--base-font-size); }
|
|
10245
10244
|
|
|
10246
10245
|
body, html {
|
|
10247
|
-
font-family: Poppins, sans-serif !important;
|
|
10246
|
+
font-family: Poppins, sans-serif !important;
|
|
10247
|
+
color: #000 !important;
|
|
10248
|
+
color: var(--text-color) !important; }
|
|
10248
10249
|
|
|
10249
10250
|
body {
|
|
10250
10251
|
background-color: #fff;
|
|
@@ -10319,11 +10320,11 @@ body {
|
|
|
10319
10320
|
height: 30px;
|
|
10320
10321
|
border-radius: 50%;
|
|
10321
10322
|
text-align: center;
|
|
10322
|
-
border: 2px solid #
|
|
10323
|
+
border: 2px solid #d1b03f;
|
|
10323
10324
|
border: 2px solid var(--primary-color); }
|
|
10324
10325
|
|
|
10325
10326
|
.circles.completed {
|
|
10326
|
-
background-color: #
|
|
10327
|
+
background-color: #d1b03f;
|
|
10327
10328
|
background-color: var(--primary-color);
|
|
10328
10329
|
display: -webkit-box;
|
|
10329
10330
|
display: -ms-flexbox;
|
|
@@ -10475,7 +10476,7 @@ body {
|
|
|
10475
10476
|
text-align: center; }
|
|
10476
10477
|
|
|
10477
10478
|
.bmc-row-card-header {
|
|
10478
|
-
border: 1px solid #
|
|
10479
|
+
border: 1px solid #fde68a;
|
|
10479
10480
|
border: 1px solid var(--border-color);
|
|
10480
10481
|
-webkit-box-shadow: 0 5px 10px var(--shadow-color);
|
|
10481
10482
|
box-shadow: 0 5px 10px var(--shadow-color);
|
|
@@ -10497,7 +10498,6 @@ body {
|
|
|
10497
10498
|
color: #fff; }
|
|
10498
10499
|
|
|
10499
10500
|
.bmc-card-button {
|
|
10500
|
-
background-color: #2563eb;
|
|
10501
10501
|
background-color: var(--primary-color); }
|
|
10502
10502
|
|
|
10503
10503
|
.bmc-card-button-cancel {
|
|
@@ -10524,7 +10524,7 @@ body {
|
|
|
10524
10524
|
position: relative; }
|
|
10525
10525
|
|
|
10526
10526
|
.bmc-radio-btn-wrap:hover .bmc-radio-btn-checkmark {
|
|
10527
|
-
border-color: #
|
|
10527
|
+
border-color: #d1b03f;
|
|
10528
10528
|
border-color: var(--primary-color); }
|
|
10529
10529
|
|
|
10530
10530
|
.bmc-radio-btn {
|
|
@@ -10541,12 +10541,12 @@ body {
|
|
|
10541
10541
|
border-radius: 50%; }
|
|
10542
10542
|
|
|
10543
10543
|
.bmc-radio-btn:checked + .bmc-radio-btn-checkmark {
|
|
10544
|
-
border-color: #
|
|
10544
|
+
border-color: #d1b03f;
|
|
10545
10545
|
border-color: var(--primary-color); }
|
|
10546
10546
|
|
|
10547
10547
|
.bmc-radio-btn:checked + .bmc-radio-btn-checkmark:after {
|
|
10548
10548
|
display: block;
|
|
10549
|
-
background-color: #
|
|
10549
|
+
background-color: #d1b03f;
|
|
10550
10550
|
background-color: var(--primary-color);
|
|
10551
10551
|
height: 1.25rem;
|
|
10552
10552
|
width: 1.25rem;
|
|
@@ -10560,7 +10560,7 @@ body {
|
|
|
10560
10560
|
color: var(--secondary-color); }
|
|
10561
10561
|
|
|
10562
10562
|
.bmc-hover-table td, .bmc-hover-table th {
|
|
10563
|
-
border: 1px solid #
|
|
10563
|
+
border: 1px solid #fde68a;
|
|
10564
10564
|
border: 1px solid var(--border-color); }
|
|
10565
10565
|
|
|
10566
10566
|
.bmc-range-slider::-moz-range-thumb, .bmc-range-slider::-ms-thumb, .bmc-range-slider::-webkit-slider-thumb {
|
|
@@ -10582,7 +10582,6 @@ body {
|
|
|
10582
10582
|
color: var(--text-color); }
|
|
10583
10583
|
|
|
10584
10584
|
.bmc-pagination li.active button {
|
|
10585
|
-
background-color: #2563eb;
|
|
10586
10585
|
background-color: var(--primary-color); }
|
|
10587
10586
|
|
|
10588
10587
|
[dir=ltr] .bmc-course-amount {
|
|
@@ -12174,6 +12173,245 @@ button.submit-bar:hover {
|
|
|
12174
12173
|
.verify-receipt-page .citizen .main {
|
|
12175
12174
|
padding-top: 60px; } }
|
|
12176
12175
|
|
|
12176
|
+
.auction-form-grid {
|
|
12177
|
+
display: grid;
|
|
12178
|
+
grid-gap: 16px 24px;
|
|
12179
|
+
gap: 16px 24px; }
|
|
12180
|
+
|
|
12181
|
+
@media (max-width: 768px) {
|
|
12182
|
+
.auction-form-grid {
|
|
12183
|
+
grid-template-columns: 1fr !important; } }
|
|
12184
|
+
|
|
12185
|
+
.auction-field-label {
|
|
12186
|
+
display: block;
|
|
12187
|
+
font-size: 13px;
|
|
12188
|
+
font-weight: 600;
|
|
12189
|
+
color: #374151;
|
|
12190
|
+
margin-bottom: 4px; }
|
|
12191
|
+
|
|
12192
|
+
.auction-field-label .auction-field-required {
|
|
12193
|
+
color: #ec0000;
|
|
12194
|
+
margin-left: 4px; }
|
|
12195
|
+
|
|
12196
|
+
.auction-field-wrapper {
|
|
12197
|
+
position: relative; }
|
|
12198
|
+
|
|
12199
|
+
.auction-field-icon {
|
|
12200
|
+
position: absolute;
|
|
12201
|
+
left: 12px;
|
|
12202
|
+
top: 50%;
|
|
12203
|
+
-webkit-transform: translateY(-50%);
|
|
12204
|
+
transform: translateY(-50%);
|
|
12205
|
+
display: -webkit-box;
|
|
12206
|
+
display: -ms-flexbox;
|
|
12207
|
+
display: flex;
|
|
12208
|
+
-webkit-box-align: center;
|
|
12209
|
+
-ms-flex-align: center;
|
|
12210
|
+
align-items: center;
|
|
12211
|
+
color: #9ca3af;
|
|
12212
|
+
pointer-events: none;
|
|
12213
|
+
z-index: 1; }
|
|
12214
|
+
|
|
12215
|
+
.auction-field-input, .auction-field-select, .auction-field-textarea {
|
|
12216
|
+
width: 100%;
|
|
12217
|
+
padding: 10px 14px;
|
|
12218
|
+
font-size: 14px;
|
|
12219
|
+
border-radius: 8px;
|
|
12220
|
+
border: 1px solid #d1d5db;
|
|
12221
|
+
outline: none;
|
|
12222
|
+
-webkit-transition: border-color .2s;
|
|
12223
|
+
transition: border-color .2s;
|
|
12224
|
+
background-color: #fff;
|
|
12225
|
+
color: #1f2937;
|
|
12226
|
+
max-height: 40px; }
|
|
12227
|
+
|
|
12228
|
+
.auction-field-textarea {
|
|
12229
|
+
max-height: unset; }
|
|
12230
|
+
|
|
12231
|
+
.auction-field-input:focus, .auction-field-select:focus, .auction-field-textarea:focus {
|
|
12232
|
+
border-color: #097d28;
|
|
12233
|
+
-webkit-box-shadow: 0 0 0 2px rgba(102, 249, 22, 0.1);
|
|
12234
|
+
box-shadow: 0 0 0 2px rgba(102, 249, 22, 0.1); }
|
|
12235
|
+
|
|
12236
|
+
.auction-field-input.has-icon, .auction-field-select.has-icon, .auction-field-textarea.has-icon {
|
|
12237
|
+
padding-left: 40px; }
|
|
12238
|
+
|
|
12239
|
+
.auction-field-input.has-error, .auction-field-select.has-error, .auction-field-textarea.has-error {
|
|
12240
|
+
border-color: #e20000; }
|
|
12241
|
+
|
|
12242
|
+
.auction-field-input:disabled, .auction-field-select:disabled, .auction-field-textarea:disabled {
|
|
12243
|
+
background-color: #f3f4f6;
|
|
12244
|
+
cursor: not-allowed; }
|
|
12245
|
+
|
|
12246
|
+
.auction-field-select {
|
|
12247
|
+
cursor: pointer; }
|
|
12248
|
+
|
|
12249
|
+
.auction-field-textarea {
|
|
12250
|
+
resize: vertical; }
|
|
12251
|
+
|
|
12252
|
+
.auction-field-error {
|
|
12253
|
+
font-size: 12px;
|
|
12254
|
+
color: #e20000 !important;
|
|
12255
|
+
margin-top: 4px;
|
|
12256
|
+
display: block; }
|
|
12257
|
+
|
|
12258
|
+
.auction-radio-group {
|
|
12259
|
+
grid-gap: 16px;
|
|
12260
|
+
gap: 16px;
|
|
12261
|
+
-ms-flex-wrap: wrap;
|
|
12262
|
+
flex-wrap: wrap; }
|
|
12263
|
+
|
|
12264
|
+
.auction-radio-group, .auction-radio-label {
|
|
12265
|
+
display: -webkit-box;
|
|
12266
|
+
display: -ms-flexbox;
|
|
12267
|
+
display: flex; }
|
|
12268
|
+
|
|
12269
|
+
.auction-radio-label {
|
|
12270
|
+
-webkit-box-align: center;
|
|
12271
|
+
-ms-flex-align: center;
|
|
12272
|
+
align-items: center;
|
|
12273
|
+
grid-gap: 6px;
|
|
12274
|
+
gap: 6px;
|
|
12275
|
+
font-size: 14px;
|
|
12276
|
+
color: #374151;
|
|
12277
|
+
cursor: pointer; }
|
|
12278
|
+
|
|
12279
|
+
.auction-radio-label input[type=radio], .auction-radio-label .checkbox-wrap .input-emp[type=radio], .checkbox-wrap .auction-radio-label .input-emp[type=radio] {
|
|
12280
|
+
accent-color: #097d28; }
|
|
12281
|
+
|
|
12282
|
+
.auction-radio-label.disabled {
|
|
12283
|
+
cursor: not-allowed; }
|
|
12284
|
+
|
|
12285
|
+
.auction-submit-btn {
|
|
12286
|
+
padding: 10px 32px;
|
|
12287
|
+
background-color: #097d28;
|
|
12288
|
+
color: #fff;
|
|
12289
|
+
border: none;
|
|
12290
|
+
border-radius: 8px;
|
|
12291
|
+
font-size: 14px;
|
|
12292
|
+
font-weight: 600;
|
|
12293
|
+
cursor: pointer;
|
|
12294
|
+
-webkit-transition: background-color .2s;
|
|
12295
|
+
transition: background-color .2s; }
|
|
12296
|
+
|
|
12297
|
+
.auction-submit-btn:hover {
|
|
12298
|
+
background-color: #12ad3b; }
|
|
12299
|
+
|
|
12300
|
+
.auction-btn {
|
|
12301
|
+
padding: 10px 32px;
|
|
12302
|
+
border: none;
|
|
12303
|
+
border-radius: 8px;
|
|
12304
|
+
font-size: 14px;
|
|
12305
|
+
font-weight: 600;
|
|
12306
|
+
cursor: pointer;
|
|
12307
|
+
-webkit-transition: all .2s;
|
|
12308
|
+
transition: all .2s;
|
|
12309
|
+
display: -webkit-inline-box;
|
|
12310
|
+
display: -ms-inline-flexbox;
|
|
12311
|
+
display: inline-flex;
|
|
12312
|
+
-webkit-box-align: center;
|
|
12313
|
+
-ms-flex-align: center;
|
|
12314
|
+
align-items: center;
|
|
12315
|
+
-webkit-box-pack: center;
|
|
12316
|
+
-ms-flex-pack: center;
|
|
12317
|
+
justify-content: center;
|
|
12318
|
+
grid-gap: 6px;
|
|
12319
|
+
gap: 6px; }
|
|
12320
|
+
|
|
12321
|
+
.auction-btn:disabled {
|
|
12322
|
+
opacity: .5;
|
|
12323
|
+
cursor: not-allowed; }
|
|
12324
|
+
|
|
12325
|
+
.auction-btn-primary {
|
|
12326
|
+
background-color: #097d28;
|
|
12327
|
+
color: #fff; }
|
|
12328
|
+
.auction-btn-primary:hover {
|
|
12329
|
+
background-color: #12ad3b; }
|
|
12330
|
+
|
|
12331
|
+
.auction-btn-primary:hover:not(:disabled) {
|
|
12332
|
+
background-color: #12ad3b; }
|
|
12333
|
+
|
|
12334
|
+
.auction-btn-secondary {
|
|
12335
|
+
background-color: #f3f4f6;
|
|
12336
|
+
color: #374151; }
|
|
12337
|
+
|
|
12338
|
+
.auction-btn-secondary:hover:not(:disabled) {
|
|
12339
|
+
background-color: #e5e7eb; }
|
|
12340
|
+
|
|
12341
|
+
.auction-btn-outline {
|
|
12342
|
+
background-color: initial;
|
|
12343
|
+
color: #f97316;
|
|
12344
|
+
border: 1px solid #f97316; }
|
|
12345
|
+
|
|
12346
|
+
.auction-btn-outline:hover:not(:disabled) {
|
|
12347
|
+
background-color: #fff7ed; }
|
|
12348
|
+
|
|
12349
|
+
.auction-btn-danger {
|
|
12350
|
+
background-color: #ef4444;
|
|
12351
|
+
color: #fff; }
|
|
12352
|
+
|
|
12353
|
+
.auction-btn-danger:hover:not(:disabled) {
|
|
12354
|
+
background-color: #dc2626; }
|
|
12355
|
+
|
|
12356
|
+
.auction-btn-ghost {
|
|
12357
|
+
background-color: initial;
|
|
12358
|
+
color: #6b7280; }
|
|
12359
|
+
|
|
12360
|
+
.auction-btn-ghost:hover:not(:disabled) {
|
|
12361
|
+
background-color: #f3f4f6;
|
|
12362
|
+
color: #374151; }
|
|
12363
|
+
|
|
12364
|
+
.auction-submit-btn:disabled {
|
|
12365
|
+
opacity: .5;
|
|
12366
|
+
cursor: not-allowed; }
|
|
12367
|
+
|
|
12368
|
+
.auction-page .employeeCard {
|
|
12369
|
+
margin-left: 0 !important;
|
|
12370
|
+
margin-right: 0 !important; }
|
|
12371
|
+
|
|
12372
|
+
.uuid-click-field {
|
|
12373
|
+
cursor: pointer;
|
|
12374
|
+
color: #136906;
|
|
12375
|
+
background: #dcffc7;
|
|
12376
|
+
padding: 2px 8px;
|
|
12377
|
+
border-radius: 30px;
|
|
12378
|
+
position: relative;
|
|
12379
|
+
-webkit-transition: padding-right .1s ease-in-out,background .2s ease-in-out;
|
|
12380
|
+
transition: padding-right .1s ease-in-out,background .2s ease-in-out;
|
|
12381
|
+
overflow: hidden; }
|
|
12382
|
+
|
|
12383
|
+
.uuid-click-field:hover {
|
|
12384
|
+
padding-right: 20px;
|
|
12385
|
+
background: #b0e0b0; }
|
|
12386
|
+
|
|
12387
|
+
.uuid-click-field:after {
|
|
12388
|
+
content: "";
|
|
12389
|
+
position: absolute;
|
|
12390
|
+
right: 4px;
|
|
12391
|
+
top: 50%;
|
|
12392
|
+
-webkit-transform: translateY(-50%);
|
|
12393
|
+
transform: translateY(-50%);
|
|
12394
|
+
width: 18px;
|
|
12395
|
+
height: 18px;
|
|
12396
|
+
background-image: url('data:image/svg+xml;utf8,<svg width="64px" height="64px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M9.71069 18.2929C10.1012 18.6834 10.7344 18.6834 11.1249 18.2929L16.0123 13.4006C16.7927 12.6195 16.7924 11.3537 16.0117 10.5729L11.1213 5.68254C10.7308 5.29202 10.0976 5.29202 9.70708 5.68254C9.31655 6.07307 9.31655 6.70623 9.70708 7.09676L13.8927 11.2824C14.2833 11.6729 14.2833 12.3061 13.8927 12.6966L9.71069 16.8787C9.32016 17.2692 9.32016 17.9023 9.71069 18.2929Z" fill="%23136906"></path> </g></svg>');
|
|
12397
|
+
background-size: contain;
|
|
12398
|
+
background-repeat: no-repeat;
|
|
12399
|
+
opacity: 0;
|
|
12400
|
+
-webkit-transition: opacity .3s ease-in-out;
|
|
12401
|
+
transition: opacity .3s ease-in-out; }
|
|
12402
|
+
|
|
12403
|
+
.uuid-click-field:hover:after {
|
|
12404
|
+
opacity: 1; }
|
|
12405
|
+
|
|
12406
|
+
.auction-page .deonar-modal-content {
|
|
12407
|
+
margin-top: 0;
|
|
12408
|
+
padding: 0 0 60px !important; }
|
|
12409
|
+
|
|
12410
|
+
.qa-field.radio .auction-field-wrapper {
|
|
12411
|
+
padding: 8px;
|
|
12412
|
+
border: 1px solid rgba(128, 128, 128, 0.36863);
|
|
12413
|
+
border-radius: 8px; }
|
|
12414
|
+
|
|
12177
12415
|
@media (max-width: 768px) {
|
|
12178
12416
|
.deonar-security {
|
|
12179
12417
|
display: -webkit-box;
|
|
@@ -12788,9 +13026,9 @@ button.submit-bar:hover {
|
|
|
12788
13026
|
opacity: 1; }
|
|
12789
13027
|
|
|
12790
13028
|
:root {
|
|
12791
|
-
--primary-color:#
|
|
12792
|
-
--primary-hover:#
|
|
12793
|
-
--primary-light:#
|
|
13029
|
+
--primary-color:#d1b03f;
|
|
13030
|
+
--primary-hover:#b49326;
|
|
13031
|
+
--primary-light:#fffbeb;
|
|
12794
13032
|
--secondary-color:#64748b;
|
|
12795
13033
|
--secondary-light:#f1f5f9;
|
|
12796
13034
|
--success-color:#059669;
|
|
@@ -12798,8 +13036,8 @@ button.submit-bar:hover {
|
|
|
12798
13036
|
--danger-color:#dc2626;
|
|
12799
13037
|
--dark-color:#1e293b;
|
|
12800
13038
|
--light-color:#f8fafc;
|
|
12801
|
-
--border-color:#
|
|
12802
|
-
--text-primary:#
|
|
13039
|
+
--border-color:#fde68a;
|
|
13040
|
+
--text-primary:#92400e;
|
|
12803
13041
|
--text-secondary:#64748b;
|
|
12804
13042
|
--shadow-sm:0 1px 2px 0 rgba(0,0,0,0.05);
|
|
12805
13043
|
--shadow-md:0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -2px rgba(0,0,0,0.1);
|
|
@@ -12813,17 +13051,21 @@ button.submit-bar:hover {
|
|
|
12813
13051
|
|
|
12814
13052
|
body {
|
|
12815
13053
|
font-family: Segoe UI,Tahoma,Geneva,Verdana,sans-serif;
|
|
12816
|
-
background: linear-gradient(135deg, #
|
|
13054
|
+
background: linear-gradient(135deg, #fffbeb, #f8fafc);
|
|
12817
13055
|
background: linear-gradient(135deg, var(--primary-light), var(--light-color));
|
|
12818
|
-
color: #
|
|
13056
|
+
color: #92400e;
|
|
12819
13057
|
color: var(--text-primary);
|
|
12820
|
-
line-height: 1.6;
|
|
12821
13058
|
min-height: 100vh; }
|
|
12822
13059
|
|
|
13060
|
+
.inventory_container, body {
|
|
13061
|
+
line-height: 1.6; }
|
|
13062
|
+
|
|
12823
13063
|
.inventory_container {
|
|
12824
13064
|
max-width: 2000px;
|
|
12825
13065
|
margin: 0 auto;
|
|
12826
13066
|
padding: 2rem; }
|
|
13067
|
+
.inventory_container * {
|
|
13068
|
+
line-height: inherit; }
|
|
12827
13069
|
|
|
12828
13070
|
.inventory_header {
|
|
12829
13071
|
text-align: center;
|
|
@@ -12837,7 +13079,7 @@ body {
|
|
|
12837
13079
|
box-shadow: var(--shadow-md); }
|
|
12838
13080
|
|
|
12839
13081
|
.inventory_header h1 {
|
|
12840
|
-
color: #
|
|
13082
|
+
color: #d1b03f;
|
|
12841
13083
|
color: var(--primary-color);
|
|
12842
13084
|
font-size: 2.5rem;
|
|
12843
13085
|
font-weight: 700;
|
|
@@ -12860,7 +13102,7 @@ body {
|
|
|
12860
13102
|
transition: all .3s ease; }
|
|
12861
13103
|
|
|
12862
13104
|
.inventory_form-header {
|
|
12863
|
-
background: linear-gradient(135deg, #
|
|
13105
|
+
background: linear-gradient(135deg, #d1b03f, #b49326);
|
|
12864
13106
|
background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
|
|
12865
13107
|
color: #fff;
|
|
12866
13108
|
padding: 2rem;
|
|
@@ -12894,10 +13136,10 @@ body {
|
|
|
12894
13136
|
.inventory_form-label {
|
|
12895
13137
|
display: block;
|
|
12896
13138
|
font-weight: 600;
|
|
12897
|
-
color: #
|
|
12898
|
-
color: var(--text-primary);
|
|
13139
|
+
color: #92400e;
|
|
12899
13140
|
margin-bottom: .5rem;
|
|
12900
|
-
font-size: .
|
|
13141
|
+
font-size: .85rem;
|
|
13142
|
+
letter-spacing: .2px; }
|
|
12901
13143
|
|
|
12902
13144
|
.inventory_required {
|
|
12903
13145
|
color: #dc2626;
|
|
@@ -12906,26 +13148,31 @@ body {
|
|
|
12906
13148
|
|
|
12907
13149
|
.inventory_form-input, .inventory_form-select, .inventory_form-textarea {
|
|
12908
13150
|
width: 100%;
|
|
12909
|
-
padding: 10px;
|
|
12910
|
-
border:
|
|
12911
|
-
border-radius:
|
|
12912
|
-
font-size:
|
|
12913
|
-
-webkit-transition: all .
|
|
12914
|
-
transition: all .
|
|
12915
|
-
background: #
|
|
12916
|
-
color: #
|
|
13151
|
+
padding: 10px 14px;
|
|
13152
|
+
border: 1.5px solid #fde68a;
|
|
13153
|
+
border-radius: 10px;
|
|
13154
|
+
font-size: 14px;
|
|
13155
|
+
-webkit-transition: all .25s ease;
|
|
13156
|
+
transition: all .25s ease;
|
|
13157
|
+
background: #fffbeb;
|
|
13158
|
+
color: #1e293b;
|
|
12917
13159
|
line-height: normal;
|
|
12918
13160
|
height: 44px; }
|
|
12919
13161
|
|
|
12920
13162
|
.inventory_form-input:focus, .inventory_form-select:focus, .inventory_form-textarea:focus {
|
|
12921
13163
|
outline: none;
|
|
12922
|
-
border-color: #
|
|
12923
|
-
|
|
12924
|
-
|
|
12925
|
-
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
|
|
13164
|
+
border-color: #d1b03f;
|
|
13165
|
+
-webkit-box-shadow: 0 0 0 3px rgba(209, 176, 63, 0.15);
|
|
13166
|
+
box-shadow: 0 0 0 3px rgba(209, 176, 63, 0.15);
|
|
12926
13167
|
-webkit-transform: translateY(-1px);
|
|
12927
13168
|
transform: translateY(-1px); }
|
|
12928
13169
|
|
|
13170
|
+
.inventory_form-input:disabled, .inventory_form-select:disabled, .inventory_form-textarea:disabled {
|
|
13171
|
+
background: #f9f6ee;
|
|
13172
|
+
border-color: #e2e8f0;
|
|
13173
|
+
color: #6b7280;
|
|
13174
|
+
cursor: not-allowed; }
|
|
13175
|
+
|
|
12929
13176
|
.inventory_form-textarea {
|
|
12930
13177
|
resize: vertical;
|
|
12931
13178
|
min-height: 100px; }
|
|
@@ -12948,7 +13195,7 @@ body {
|
|
|
12948
13195
|
align-items: center;
|
|
12949
13196
|
cursor: pointer;
|
|
12950
13197
|
padding: .75rem 1rem;
|
|
12951
|
-
border: 2px solid #
|
|
13198
|
+
border: 2px solid #fde68a;
|
|
12952
13199
|
border: 2px solid var(--border-color);
|
|
12953
13200
|
border-radius: 8px;
|
|
12954
13201
|
-webkit-transition: all .3s ease;
|
|
@@ -12957,41 +13204,39 @@ body {
|
|
|
12957
13204
|
min-width: 140px; }
|
|
12958
13205
|
|
|
12959
13206
|
.inventory_radio-option:hover {
|
|
12960
|
-
border-color: #
|
|
13207
|
+
border-color: #d1b03f;
|
|
12961
13208
|
border-color: var(--primary-color);
|
|
12962
|
-
background: #
|
|
13209
|
+
background: #fffbeb;
|
|
12963
13210
|
background: var(--primary-light); }
|
|
12964
13211
|
|
|
12965
13212
|
.inventory_radio-option input[type=radio], .inventory_radio-option .checkbox-wrap .input-emp[type=radio], .checkbox-wrap .inventory_radio-option .input-emp[type=radio] {
|
|
12966
13213
|
margin-right: .5rem;
|
|
12967
|
-
accent-color: #
|
|
13214
|
+
accent-color: #d1b03f;
|
|
12968
13215
|
accent-color: var(--primary-color); }
|
|
12969
13216
|
|
|
12970
13217
|
.inventory_radio-option.selected {
|
|
12971
|
-
border-color: #
|
|
13218
|
+
border-color: #d1b03f;
|
|
12972
13219
|
border-color: var(--primary-color);
|
|
12973
|
-
background: #
|
|
13220
|
+
background: #fffbeb;
|
|
12974
13221
|
background: var(--primary-light);
|
|
12975
13222
|
font-weight: 600; }
|
|
12976
13223
|
|
|
12977
13224
|
.inventory_section-divider {
|
|
12978
13225
|
border: none;
|
|
12979
13226
|
height: 1px;
|
|
12980
|
-
background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#
|
|
12981
|
-
background: linear-gradient(90deg, transparent, #
|
|
13227
|
+
background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#fde68a), to(transparent));
|
|
13228
|
+
background: linear-gradient(90deg, transparent, #fde68a, transparent);
|
|
12982
13229
|
background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(var(--border-color)), to(transparent));
|
|
12983
13230
|
background: linear-gradient(90deg, transparent, var(--border-color), transparent);
|
|
12984
13231
|
margin: 2.5rem 0; }
|
|
12985
13232
|
|
|
12986
13233
|
.inventory_section-title {
|
|
12987
|
-
font-size:
|
|
12988
|
-
font-weight:
|
|
12989
|
-
color: #
|
|
12990
|
-
|
|
12991
|
-
|
|
12992
|
-
|
|
12993
|
-
border-bottom: 2px solid #dbeafe;
|
|
12994
|
-
border-bottom: 2px solid var(--primary-light); }
|
|
13234
|
+
font-size: 1rem;
|
|
13235
|
+
font-weight: 700;
|
|
13236
|
+
color: #b49326;
|
|
13237
|
+
margin-bottom: 1.2rem;
|
|
13238
|
+
padding-bottom: .4rem;
|
|
13239
|
+
border-bottom: 2px solid #fde68a; }
|
|
12995
13240
|
|
|
12996
13241
|
.inventory_button-group {
|
|
12997
13242
|
display: -webkit-box;
|
|
@@ -13020,7 +13265,7 @@ body {
|
|
|
13020
13265
|
min-width: 120px; }
|
|
13021
13266
|
|
|
13022
13267
|
.inventory_btn-primary {
|
|
13023
|
-
background: linear-gradient(135deg, #
|
|
13268
|
+
background: linear-gradient(135deg, #d1b03f, #b49326);
|
|
13024
13269
|
background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
|
|
13025
13270
|
color: #fff;
|
|
13026
13271
|
-webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
|
|
@@ -13041,11 +13286,11 @@ body {
|
|
|
13041
13286
|
background: var(--secondary-light);
|
|
13042
13287
|
color: #64748b;
|
|
13043
13288
|
color: var(--secondary-color);
|
|
13044
|
-
border: 2px solid #
|
|
13289
|
+
border: 2px solid #fde68a;
|
|
13045
13290
|
border: 2px solid var(--border-color); }
|
|
13046
13291
|
|
|
13047
13292
|
.inventory_btn-secondary:hover {
|
|
13048
|
-
background: #
|
|
13293
|
+
background: #fde68a;
|
|
13049
13294
|
background: var(--border-color);
|
|
13050
13295
|
-webkit-transform: translateY(-1px);
|
|
13051
13296
|
transform: translateY(-1px); }
|
|
@@ -13550,7 +13795,7 @@ body {
|
|
|
13550
13795
|
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
|
|
13551
13796
|
-webkit-box-shadow: var(--shadow-md);
|
|
13552
13797
|
box-shadow: var(--shadow-md);
|
|
13553
|
-
border: 1px solid #
|
|
13798
|
+
border: 1px solid #fde68a;
|
|
13554
13799
|
border: 1px solid var(--border-color); }
|
|
13555
13800
|
|
|
13556
13801
|
.Inventory-table table {
|
|
@@ -13560,7 +13805,7 @@ body {
|
|
|
13560
13805
|
background-color: #fff; }
|
|
13561
13806
|
|
|
13562
13807
|
.Inventory-table thead {
|
|
13563
|
-
background: linear-gradient(135deg, #
|
|
13808
|
+
background: linear-gradient(135deg, #d1b03f, #b49326);
|
|
13564
13809
|
background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
|
|
13565
13810
|
position: sticky;
|
|
13566
13811
|
top: 0;
|
|
@@ -13572,7 +13817,7 @@ body {
|
|
|
13572
13817
|
font-weight: 600;
|
|
13573
13818
|
font-size: 14px;
|
|
13574
13819
|
color: #fff;
|
|
13575
|
-
border-bottom: 2px solid #
|
|
13820
|
+
border-bottom: 2px solid #b49326;
|
|
13576
13821
|
border-bottom: 2px solid var(--primary-hover);
|
|
13577
13822
|
text-transform: uppercase;
|
|
13578
13823
|
letter-spacing: .5px;
|
|
@@ -13580,7 +13825,7 @@ body {
|
|
|
13580
13825
|
position: relative; }
|
|
13581
13826
|
|
|
13582
13827
|
.Inventory-table thead th:hover {
|
|
13583
|
-
background-color: #
|
|
13828
|
+
background-color: #b49326;
|
|
13584
13829
|
background-color: var(--primary-hover); }
|
|
13585
13830
|
|
|
13586
13831
|
.Inventory-table thead th:not(:last-child):after {
|
|
@@ -13598,16 +13843,16 @@ body {
|
|
|
13598
13843
|
.Inventory-table tbody tr {
|
|
13599
13844
|
-webkit-transition: all .2s ease-in-out;
|
|
13600
13845
|
transition: all .2s ease-in-out;
|
|
13601
|
-
border-bottom: 1px solid #
|
|
13846
|
+
border-bottom: 1px solid #fde68a;
|
|
13602
13847
|
border-bottom: 1px solid var(--border-color); }
|
|
13603
13848
|
|
|
13604
13849
|
.Inventory-table tbody tr:hover {
|
|
13605
|
-
background-color: #
|
|
13850
|
+
background-color: #fffbeb !important;
|
|
13606
13851
|
background-color: var(--primary-light) !important;
|
|
13607
13852
|
-webkit-transform: translateX(2px);
|
|
13608
13853
|
transform: translateX(2px);
|
|
13609
|
-
-webkit-box-shadow: inset 3px 0 0 #
|
|
13610
|
-
box-shadow: inset 3px 0 0 #
|
|
13854
|
+
-webkit-box-shadow: inset 3px 0 0 #d1b03f;
|
|
13855
|
+
box-shadow: inset 3px 0 0 #d1b03f;
|
|
13611
13856
|
-webkit-box-shadow: inset 3px 0 0 var(--primary-color);
|
|
13612
13857
|
box-shadow: inset 3px 0 0 var(--primary-color); }
|
|
13613
13858
|
|
|
@@ -13621,10 +13866,10 @@ body {
|
|
|
13621
13866
|
.Inventory-table tbody td {
|
|
13622
13867
|
padding: 12px;
|
|
13623
13868
|
font-size: 14px;
|
|
13624
|
-
color: #
|
|
13869
|
+
color: #92400e;
|
|
13625
13870
|
color: var(--text-primary);
|
|
13626
13871
|
vertical-align: middle;
|
|
13627
|
-
line-height: 1.
|
|
13872
|
+
line-height: 1.6; }
|
|
13628
13873
|
|
|
13629
13874
|
.Inventory-table tbody td:last-child {
|
|
13630
13875
|
border-right: none; }
|
|
@@ -13649,7 +13894,7 @@ body {
|
|
|
13649
13894
|
z-index: 10; }
|
|
13650
13895
|
|
|
13651
13896
|
.table-border-style {
|
|
13652
|
-
border: 1px solid #
|
|
13897
|
+
border: 1px solid #fde68a;
|
|
13653
13898
|
border: 1px solid var(--border-color); }
|
|
13654
13899
|
|
|
13655
13900
|
.loader-overlay {
|
|
@@ -13773,7 +14018,7 @@ body {
|
|
|
13773
14018
|
display: block; }
|
|
13774
14019
|
.mobile-card-view .Inventory-table tbody tr {
|
|
13775
14020
|
background-color: #fff;
|
|
13776
|
-
border: 1px solid #
|
|
14021
|
+
border: 1px solid #fde68a;
|
|
13777
14022
|
border: 1px solid var(--border-color);
|
|
13778
14023
|
border-radius: 8px;
|
|
13779
14024
|
margin-bottom: 10px;
|
|
@@ -13819,7 +14064,7 @@ body {
|
|
|
13819
14064
|
box-shadow: none !important; } }
|
|
13820
14065
|
|
|
13821
14066
|
.Inventory-table:focus-within, .Inventory-table[focus-within] {
|
|
13822
|
-
outline: 2px solid #
|
|
14067
|
+
outline: 2px solid #d1b03f;
|
|
13823
14068
|
outline: 2px solid var(--primary-color);
|
|
13824
14069
|
outline-offset: 2px; }
|
|
13825
14070
|
|
|
@@ -13836,7 +14081,7 @@ body {
|
|
|
13836
14081
|
border-radius: 3px; }
|
|
13837
14082
|
|
|
13838
14083
|
.Inventory-table::-webkit-scrollbar-thumb:hover {
|
|
13839
|
-
background: #
|
|
14084
|
+
background: #d1b03f;
|
|
13840
14085
|
background: var(--primary-color); }
|
|
13841
14086
|
|
|
13842
14087
|
.inv-badge {
|