@aaravpos/appointment-barber-booking 1.0.5 → 1.0.8
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/components/common/MainLayout.d.ts +1 -1
- package/dist/components/sidebar/Sidebar.d.ts +1 -2
- package/dist/index.cjs +28 -28
- package/dist/index.js +3026 -3011
- package/dist/styles.css +249 -216
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -798,11 +798,11 @@
|
|
|
798
798
|
.success-pulse {
|
|
799
799
|
animation: pulseBrand 2s ease infinite;
|
|
800
800
|
}
|
|
801
|
-
.
|
|
801
|
+
.aaravpos-barber-error-box {
|
|
802
802
|
padding: 16px;
|
|
803
803
|
color: #ef4444;
|
|
804
804
|
}
|
|
805
|
-
.
|
|
805
|
+
.aaravpos-barber-m0 {
|
|
806
806
|
margin: 0px !important;
|
|
807
807
|
}
|
|
808
808
|
.aaravpos-barber-overflow-hidden {
|
|
@@ -820,7 +820,7 @@
|
|
|
820
820
|
opacity: 0.5;
|
|
821
821
|
pointer-events: none;
|
|
822
822
|
}
|
|
823
|
-
.
|
|
823
|
+
.aaravpos-barber-container {
|
|
824
824
|
background-color: #fff;
|
|
825
825
|
padding: 16px;
|
|
826
826
|
width: 100%;
|
|
@@ -837,6 +837,10 @@
|
|
|
837
837
|
.aaravpos-barber-mt-auto {
|
|
838
838
|
margin-top: auto;
|
|
839
839
|
}
|
|
840
|
+
.aaravpos-barber-btn-position-relative {
|
|
841
|
+
position: relative !important;
|
|
842
|
+
bottom: auto !important;
|
|
843
|
+
}
|
|
840
844
|
.aaravpos-barber-btn {
|
|
841
845
|
gap: 8px;
|
|
842
846
|
padding: 8px 16px;
|
|
@@ -889,6 +893,36 @@
|
|
|
889
893
|
.aaravpos-barber-padding-btn {
|
|
890
894
|
padding: 9px 8px !important;
|
|
891
895
|
}
|
|
896
|
+
.aaravpos-barber-cart-btn {
|
|
897
|
+
position: absolute;
|
|
898
|
+
left: -36px;
|
|
899
|
+
padding: 9px;
|
|
900
|
+
top: 0px;
|
|
901
|
+
background: var(--btn-bg);
|
|
902
|
+
color: var(--btn-text, #ffffff);
|
|
903
|
+
border: 0px;
|
|
904
|
+
outline: none;
|
|
905
|
+
border-top-left-radius: 8px;
|
|
906
|
+
border-bottom-left-radius: 8px;
|
|
907
|
+
cursor: pointer;
|
|
908
|
+
display: flex;
|
|
909
|
+
align-items: center;
|
|
910
|
+
justify-content: center;
|
|
911
|
+
}
|
|
912
|
+
.aaravpos-barber-count {
|
|
913
|
+
position: absolute;
|
|
914
|
+
top: -5px;
|
|
915
|
+
left: -14px;
|
|
916
|
+
background: var(--btn-bg, #000);
|
|
917
|
+
color: var(--btn-text, #fff);
|
|
918
|
+
border-radius: 50%;
|
|
919
|
+
height: 22px;
|
|
920
|
+
width: 22px;
|
|
921
|
+
display: flex;
|
|
922
|
+
align-items: center;
|
|
923
|
+
justify-content: center;
|
|
924
|
+
font-size: 12px;
|
|
925
|
+
}
|
|
892
926
|
.aaravpos-barber-layout {
|
|
893
927
|
height: 700px;
|
|
894
928
|
display: flex;
|
|
@@ -948,7 +982,6 @@
|
|
|
948
982
|
background: var(--surface-bg, #ffffff);
|
|
949
983
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
950
984
|
padding: 16px 16px 14px;
|
|
951
|
-
overflow: hidden;
|
|
952
985
|
position: fixed;
|
|
953
986
|
top: 10px;
|
|
954
987
|
right: 10px;
|
|
@@ -967,7 +1000,7 @@
|
|
|
967
1000
|
.aaravpos-barber-sidebar-mobile {
|
|
968
1001
|
position: fixed;
|
|
969
1002
|
inset: 0;
|
|
970
|
-
z-index:
|
|
1003
|
+
z-index: 999;
|
|
971
1004
|
background: #fff;
|
|
972
1005
|
display: flex;
|
|
973
1006
|
flex-direction: column;
|
|
@@ -1842,7 +1875,7 @@
|
|
|
1842
1875
|
transition: all 0.2s ease;
|
|
1843
1876
|
border-radius: 6px;
|
|
1844
1877
|
}
|
|
1845
|
-
.aaravpos-barber-common-btn:hover {
|
|
1878
|
+
.aaravpos-barber-common-btn:hover, .aaravpos-barber-cart-btn:hover {
|
|
1846
1879
|
background: var(--btn-bg-hover);
|
|
1847
1880
|
color: var(--btn-text-hover, #ffffff);
|
|
1848
1881
|
}
|
|
@@ -1988,7 +2021,7 @@
|
|
|
1988
2021
|
margin-bottom: 8px;
|
|
1989
2022
|
}
|
|
1990
2023
|
.aaravpos-barber-tip-btn {
|
|
1991
|
-
padding: 6px
|
|
2024
|
+
padding: 5px 6px;
|
|
1992
2025
|
border: 1px solid var(--btn-bg-hover);
|
|
1993
2026
|
border-radius: 4px;
|
|
1994
2027
|
background: #fff;
|
|
@@ -2204,13 +2237,13 @@
|
|
|
2204
2237
|
position: relative;
|
|
2205
2238
|
z-index: 2;
|
|
2206
2239
|
}
|
|
2207
|
-
.
|
|
2240
|
+
.aaravpos-barber-date-card-disabled {
|
|
2208
2241
|
position: relative;
|
|
2209
2242
|
opacity: 0.6;
|
|
2210
2243
|
cursor: not-allowed;
|
|
2211
2244
|
overflow: hidden;
|
|
2212
2245
|
}
|
|
2213
|
-
.
|
|
2246
|
+
.aaravpos-barber-date-disabled-slash {
|
|
2214
2247
|
position: absolute;
|
|
2215
2248
|
top: 50%;
|
|
2216
2249
|
left: -20%;
|
|
@@ -2220,7 +2253,7 @@
|
|
|
2220
2253
|
transform: rotate(-45deg);
|
|
2221
2254
|
z-index: 1;
|
|
2222
2255
|
}
|
|
2223
|
-
.
|
|
2256
|
+
.aaravpos-barber-date-unavailable {
|
|
2224
2257
|
font-size: 8px;
|
|
2225
2258
|
font-weight: 700;
|
|
2226
2259
|
margin-top: 2px;
|
|
@@ -2293,29 +2326,29 @@
|
|
|
2293
2326
|
line-height: 1.5;
|
|
2294
2327
|
color: rgba(0, 0, 0, 0.5);
|
|
2295
2328
|
}
|
|
2296
|
-
.
|
|
2329
|
+
.aaravpos-barber-details-section {
|
|
2297
2330
|
margin-top: 20px;
|
|
2298
2331
|
}
|
|
2299
|
-
.
|
|
2332
|
+
.aaravpos-barber-details-scroll {
|
|
2300
2333
|
overflow-y: auto;
|
|
2301
2334
|
padding-bottom: 30px;
|
|
2302
2335
|
scrollbar-width: none;
|
|
2303
2336
|
height: 565px;
|
|
2304
2337
|
}
|
|
2305
|
-
.
|
|
2338
|
+
.aaravpos-barber-details-scroll::-webkit-scrollbar {
|
|
2306
2339
|
display: none;
|
|
2307
2340
|
}
|
|
2308
|
-
.
|
|
2341
|
+
.aaravpos-barber-details-grid {
|
|
2309
2342
|
display: grid;
|
|
2310
2343
|
grid-template-columns: 1fr;
|
|
2311
2344
|
gap: 16px;
|
|
2312
2345
|
}
|
|
2313
|
-
.
|
|
2346
|
+
.aaravpos-barber-form-group {
|
|
2314
2347
|
display: flex;
|
|
2315
2348
|
flex-direction: column;
|
|
2316
2349
|
width: 100%;
|
|
2317
2350
|
}
|
|
2318
|
-
.
|
|
2351
|
+
.aaravpos-barber-form-label {
|
|
2319
2352
|
font-size: 12px;
|
|
2320
2353
|
font-weight: 600;
|
|
2321
2354
|
color: #4b5563;
|
|
@@ -2324,14 +2357,14 @@
|
|
|
2324
2357
|
align-items: center;
|
|
2325
2358
|
gap: 4px;
|
|
2326
2359
|
}
|
|
2327
|
-
.
|
|
2360
|
+
.aaravpos-barber-required {
|
|
2328
2361
|
color: #ef4444;
|
|
2329
2362
|
}
|
|
2330
|
-
.
|
|
2363
|
+
.aaravpos-barber-input-wrapper {
|
|
2331
2364
|
position: relative;
|
|
2332
2365
|
width: 100%;
|
|
2333
2366
|
}
|
|
2334
|
-
.
|
|
2367
|
+
.aaravpos-barber-custom-input {
|
|
2335
2368
|
border: 1px solid #d1d5db;
|
|
2336
2369
|
border-radius: 4px;
|
|
2337
2370
|
padding: 10px 12px;
|
|
@@ -2340,15 +2373,15 @@
|
|
|
2340
2373
|
transition: all 0.3s ease;
|
|
2341
2374
|
background-color: #ffffff;
|
|
2342
2375
|
}
|
|
2343
|
-
.
|
|
2376
|
+
.aaravpos-barber-custom-input:focus, .aaravpos-barber-custom-input input:focus {
|
|
2344
2377
|
border-color: black;
|
|
2345
2378
|
}
|
|
2346
|
-
.
|
|
2379
|
+
.aaravpos-barber-error-text {
|
|
2347
2380
|
margin-top: 6px;
|
|
2348
2381
|
font-size: 13px;
|
|
2349
2382
|
color: #ef4444;
|
|
2350
2383
|
}
|
|
2351
|
-
.
|
|
2384
|
+
.aaravpos-barber-autofill-text {
|
|
2352
2385
|
margin-top: 6px;
|
|
2353
2386
|
font-size: 12px;
|
|
2354
2387
|
color: #6b7280;
|
|
@@ -2356,31 +2389,31 @@
|
|
|
2356
2389
|
align-items: center;
|
|
2357
2390
|
gap: 4px;
|
|
2358
2391
|
}
|
|
2359
|
-
.
|
|
2392
|
+
.aaravpos-barber-clear-text {
|
|
2360
2393
|
color: #dc2626;
|
|
2361
2394
|
cursor: pointer;
|
|
2362
2395
|
font-weight: 500;
|
|
2363
2396
|
}
|
|
2364
|
-
.
|
|
2397
|
+
.aaravpos-barber-loader-wrapper {
|
|
2365
2398
|
position: absolute;
|
|
2366
2399
|
right: 10px;
|
|
2367
2400
|
top: 50%;
|
|
2368
2401
|
transform: translateY(-50%);
|
|
2369
2402
|
z-index: 999;
|
|
2370
2403
|
}
|
|
2371
|
-
.
|
|
2404
|
+
.aaravpos-barber-loader {
|
|
2372
2405
|
width: 16px;
|
|
2373
2406
|
height: 16px;
|
|
2374
2407
|
border: 2px solid #d1d5db;
|
|
2375
2408
|
border-top-color: #000000;
|
|
2376
2409
|
border-radius: 50%;
|
|
2377
|
-
animation:
|
|
2410
|
+
animation: aaravpos-barber-spin 0.8s linear infinite;
|
|
2378
2411
|
}
|
|
2379
|
-
.
|
|
2412
|
+
.aaravpos-barber-booking-wrapper {
|
|
2380
2413
|
width: 100%;
|
|
2381
2414
|
max-width: 100%;
|
|
2382
2415
|
}
|
|
2383
|
-
.
|
|
2416
|
+
.aaravpos-barber-outlet-info {
|
|
2384
2417
|
display: flex;
|
|
2385
2418
|
align-items: center;
|
|
2386
2419
|
gap: 12px;
|
|
@@ -2389,7 +2422,7 @@
|
|
|
2389
2422
|
margin-bottom: 4px;
|
|
2390
2423
|
border: 1px solid #e5e7eb;
|
|
2391
2424
|
}
|
|
2392
|
-
.
|
|
2425
|
+
.aaravpos-barber-outlet-logo {
|
|
2393
2426
|
width: 40px;
|
|
2394
2427
|
height: 40px;
|
|
2395
2428
|
border-radius: 4px;
|
|
@@ -2399,63 +2432,63 @@
|
|
|
2399
2432
|
align-items: center;
|
|
2400
2433
|
justify-content: center;
|
|
2401
2434
|
}
|
|
2402
|
-
.
|
|
2435
|
+
.aaravpos-barber-outlet-logo-img {
|
|
2403
2436
|
width: 100%;
|
|
2404
2437
|
height: 100%;
|
|
2405
2438
|
object-fit: cover;
|
|
2406
2439
|
}
|
|
2407
|
-
.
|
|
2440
|
+
.aaravpos-barber-outlet-content {
|
|
2408
2441
|
flex: 1;
|
|
2409
2442
|
min-width: 0;
|
|
2410
2443
|
}
|
|
2411
|
-
.
|
|
2444
|
+
.aaravpos-barber-outlet-name {
|
|
2412
2445
|
font-size: 14px;
|
|
2413
2446
|
font-weight: 600;
|
|
2414
2447
|
color: #111827;
|
|
2415
2448
|
margin: 0;
|
|
2416
2449
|
line-height: 1.4;
|
|
2417
2450
|
}
|
|
2418
|
-
.
|
|
2451
|
+
.aaravpos-barber-outlet-address {
|
|
2419
2452
|
font-size: 12px;
|
|
2420
2453
|
color: rgba(0, 0, 0, 0.7);
|
|
2421
2454
|
margin-top: 2px;
|
|
2422
2455
|
line-height: 1.5;
|
|
2423
2456
|
word-break: break-word;
|
|
2424
2457
|
}
|
|
2425
|
-
.
|
|
2458
|
+
.aaravpos-barber-booking-scroll {
|
|
2426
2459
|
overflow-y: auto;
|
|
2427
2460
|
scrollbar-width: none;
|
|
2428
2461
|
height: 495px;
|
|
2429
2462
|
padding-bottom: 15px;
|
|
2430
2463
|
}
|
|
2431
|
-
.
|
|
2464
|
+
.aaravpos-barber-booking-scroll::-webkit-scrollbar {
|
|
2432
2465
|
display: none;
|
|
2433
2466
|
}
|
|
2434
|
-
.
|
|
2467
|
+
.aaravpos-barber-booking-grid {
|
|
2435
2468
|
display: flex;
|
|
2436
2469
|
gap: 28px;
|
|
2437
2470
|
justify-content: space-between;
|
|
2438
2471
|
}
|
|
2439
|
-
.
|
|
2472
|
+
.aaravpos-barber-booking-column {
|
|
2440
2473
|
width: 100%;
|
|
2441
2474
|
min-width: 0;
|
|
2442
2475
|
}
|
|
2443
|
-
.
|
|
2476
|
+
.aaravpos-barber-appointment-header {
|
|
2444
2477
|
display: flex;
|
|
2445
2478
|
align-items: center;
|
|
2446
2479
|
gap: 12px;
|
|
2447
2480
|
}
|
|
2448
|
-
.
|
|
2481
|
+
.aaravpos-barber-appointment-content {
|
|
2449
2482
|
flex: 1;
|
|
2450
2483
|
min-width: 0;
|
|
2451
2484
|
}
|
|
2452
|
-
.
|
|
2485
|
+
.aaravpos-barber-appointment-name {
|
|
2453
2486
|
font-size: 14px;
|
|
2454
2487
|
font-weight: 600;
|
|
2455
2488
|
color: #111827;
|
|
2456
2489
|
margin: 0;
|
|
2457
2490
|
}
|
|
2458
|
-
.
|
|
2491
|
+
.aaravpos-barber-appointment-services {
|
|
2459
2492
|
font-size: 12px;
|
|
2460
2493
|
color: #6b7280;
|
|
2461
2494
|
margin-top: 2px;
|
|
@@ -2464,7 +2497,7 @@
|
|
|
2464
2497
|
white-space: nowrap;
|
|
2465
2498
|
margin-bottom: 0px;
|
|
2466
2499
|
}
|
|
2467
|
-
.
|
|
2500
|
+
.aaravpos-barber-appointment-price {
|
|
2468
2501
|
font-family: monospace;
|
|
2469
2502
|
font-weight: 600;
|
|
2470
2503
|
font-size: 15px;
|
|
@@ -2474,7 +2507,7 @@
|
|
|
2474
2507
|
display: flex;
|
|
2475
2508
|
flex-direction: row;
|
|
2476
2509
|
}
|
|
2477
|
-
.
|
|
2510
|
+
.aaravpos-barber-appointment-date {
|
|
2478
2511
|
display: flex;
|
|
2479
2512
|
align-items: center;
|
|
2480
2513
|
gap: 8px;
|
|
@@ -2482,20 +2515,20 @@
|
|
|
2482
2515
|
padding-top: 12px;
|
|
2483
2516
|
border-top: 1px solid #e5e7eb;
|
|
2484
2517
|
}
|
|
2485
|
-
.
|
|
2518
|
+
.aaravpos-barber-appointment-date-text {
|
|
2486
2519
|
font-size: 14px;
|
|
2487
2520
|
font-weight: 600;
|
|
2488
2521
|
color: #111827;
|
|
2489
2522
|
}
|
|
2490
|
-
.
|
|
2523
|
+
.aaravpos-barber-success-wrapper {
|
|
2491
2524
|
overflow-y: auto;
|
|
2492
2525
|
scrollbar-width: none;
|
|
2493
2526
|
height: 700px;
|
|
2494
2527
|
}
|
|
2495
|
-
.
|
|
2528
|
+
.aaravpos-barber-success-wrapper::-webkit-scrollbar {
|
|
2496
2529
|
display: none;
|
|
2497
2530
|
}
|
|
2498
|
-
.
|
|
2531
|
+
.aaravpos-barber-success-motion {
|
|
2499
2532
|
display: flex;
|
|
2500
2533
|
flex-direction: column;
|
|
2501
2534
|
height: 668px;
|
|
@@ -2505,7 +2538,7 @@
|
|
|
2505
2538
|
text-align: center;
|
|
2506
2539
|
padding: 16px;
|
|
2507
2540
|
}
|
|
2508
|
-
.
|
|
2541
|
+
.aaravpos-barber-success-icon {
|
|
2509
2542
|
width: 34px;
|
|
2510
2543
|
height: 34px;
|
|
2511
2544
|
background: var(--btn-bg);
|
|
@@ -2518,23 +2551,23 @@
|
|
|
2518
2551
|
font-size: 36px;
|
|
2519
2552
|
margin-bottom: 24px;
|
|
2520
2553
|
}
|
|
2521
|
-
.
|
|
2554
|
+
.aaravpos-barber-success-title {
|
|
2522
2555
|
font-family: "Bebas Neue", sans-serif;
|
|
2523
2556
|
font-size: 20px;
|
|
2524
2557
|
margin-bottom: 8px;
|
|
2525
2558
|
}
|
|
2526
|
-
.
|
|
2559
|
+
.aaravpos-barber-success-description {
|
|
2527
2560
|
font-size: 14px;
|
|
2528
2561
|
color: var(--muted);
|
|
2529
2562
|
margin-bottom: 10px;
|
|
2530
2563
|
line-height: 1.625;
|
|
2531
2564
|
margin-top: 0px;
|
|
2532
2565
|
}
|
|
2533
|
-
.
|
|
2566
|
+
.aaravpos-barber-success-content {
|
|
2534
2567
|
width: 100%;
|
|
2535
2568
|
max-width: 570px;
|
|
2536
2569
|
}
|
|
2537
|
-
.
|
|
2570
|
+
.aaravpos-barber-success-card {
|
|
2538
2571
|
background: #ffffff;
|
|
2539
2572
|
border-radius: 6px;
|
|
2540
2573
|
text-align: left;
|
|
@@ -2546,55 +2579,55 @@
|
|
|
2546
2579
|
scrollbar-width: none;
|
|
2547
2580
|
-ms-overflow-style: none;
|
|
2548
2581
|
}
|
|
2549
|
-
.
|
|
2582
|
+
.aaravpos-barber-success-row {
|
|
2550
2583
|
display: flex;
|
|
2551
2584
|
justify-content: space-between;
|
|
2552
2585
|
padding-top: 8px;
|
|
2553
2586
|
padding-bottom: 8px;
|
|
2554
2587
|
border-bottom: 1px solid #f3f4f6;
|
|
2555
2588
|
}
|
|
2556
|
-
.
|
|
2589
|
+
.aaravpos-barber-success-row-first {
|
|
2557
2590
|
padding-top: 0;
|
|
2558
2591
|
}
|
|
2559
|
-
.
|
|
2592
|
+
.aaravpos-barber-total-row {
|
|
2560
2593
|
display: flex;
|
|
2561
2594
|
justify-content: space-between;
|
|
2562
2595
|
padding-top: 16px;
|
|
2563
2596
|
padding-bottom: 0;
|
|
2564
2597
|
}
|
|
2565
|
-
.
|
|
2598
|
+
.aaravpos-barber-label {
|
|
2566
2599
|
color: #4b5563;
|
|
2567
2600
|
font-size: 14px;
|
|
2568
2601
|
font-weight: 700;
|
|
2569
2602
|
}
|
|
2570
|
-
.
|
|
2603
|
+
.aaravpos-barber-services-label {
|
|
2571
2604
|
color: #6b7280;
|
|
2572
2605
|
font-size: 14px;
|
|
2573
2606
|
font-weight: 700;
|
|
2574
2607
|
}
|
|
2575
|
-
.
|
|
2608
|
+
.aaravpos-barber-value {
|
|
2576
2609
|
font-size: 14px;
|
|
2577
2610
|
font-weight: 500;
|
|
2578
2611
|
color: #1f2937;
|
|
2579
2612
|
}
|
|
2580
|
-
.
|
|
2613
|
+
.aaravpos-barber-price {
|
|
2581
2614
|
display: flex;
|
|
2582
2615
|
flex-direction: row;
|
|
2583
2616
|
align-items: center;
|
|
2584
2617
|
color: #1f2937;
|
|
2585
2618
|
font-weight: 600;
|
|
2586
2619
|
}
|
|
2587
|
-
.
|
|
2620
|
+
.aaravpos-barber-total-price {
|
|
2588
2621
|
display: flex;
|
|
2589
2622
|
flex-direction: row;
|
|
2590
2623
|
align-items: center;
|
|
2591
2624
|
color: var(--red);
|
|
2592
2625
|
font-weight: 600;
|
|
2593
2626
|
}
|
|
2594
|
-
.
|
|
2627
|
+
.aaravpos-barber-services-header {
|
|
2595
2628
|
align-items: center;
|
|
2596
2629
|
}
|
|
2597
|
-
.
|
|
2630
|
+
.aaravpos-barber-services-list {
|
|
2598
2631
|
padding-top: 8px;
|
|
2599
2632
|
padding-bottom: 8px;
|
|
2600
2633
|
border-bottom: 1px solid #f3f4f6;
|
|
@@ -2605,23 +2638,23 @@
|
|
|
2605
2638
|
overflow-y: auto;
|
|
2606
2639
|
max-height: 23vh;
|
|
2607
2640
|
}
|
|
2608
|
-
.
|
|
2641
|
+
.aaravpos-barber-service-row {
|
|
2609
2642
|
display: flex;
|
|
2610
2643
|
justify-content: space-between;
|
|
2611
2644
|
font-size: 14px;
|
|
2612
2645
|
padding-top: 6px;
|
|
2613
2646
|
padding-bottom: 6px;
|
|
2614
2647
|
}
|
|
2615
|
-
.
|
|
2648
|
+
.aaravpos-barber-service-name {
|
|
2616
2649
|
color: #374151;
|
|
2617
2650
|
}
|
|
2618
|
-
.
|
|
2651
|
+
.aaravpos-barber-service-price {
|
|
2619
2652
|
color: #111827;
|
|
2620
2653
|
display: flex;
|
|
2621
2654
|
flex-direction: row;
|
|
2622
2655
|
align-items: center;
|
|
2623
2656
|
}
|
|
2624
|
-
.
|
|
2657
|
+
.aaravpos-barber-more-services {
|
|
2625
2658
|
text-align: center;
|
|
2626
2659
|
font-size: 12px;
|
|
2627
2660
|
color: #6b7280;
|
|
@@ -2632,7 +2665,7 @@
|
|
|
2632
2665
|
justify-content: center;
|
|
2633
2666
|
gap: 4px;
|
|
2634
2667
|
}
|
|
2635
|
-
.
|
|
2668
|
+
.aaravpos-barber-show-btn {
|
|
2636
2669
|
color: #2563eb;
|
|
2637
2670
|
font-size: 12px;
|
|
2638
2671
|
font-weight: 500;
|
|
@@ -2640,13 +2673,13 @@
|
|
|
2640
2673
|
background: transparent;
|
|
2641
2674
|
border: none;
|
|
2642
2675
|
}
|
|
2643
|
-
.
|
|
2676
|
+
.aaravpos-barber-show-btn-inner {
|
|
2644
2677
|
display: flex;
|
|
2645
2678
|
flex-direction: row;
|
|
2646
2679
|
align-items: center;
|
|
2647
2680
|
gap: 4px;
|
|
2648
2681
|
}
|
|
2649
|
-
.
|
|
2682
|
+
.aaravpos-barber-book-btn {
|
|
2650
2683
|
background: var(--btn-bg);
|
|
2651
2684
|
color: var(--btn-text);
|
|
2652
2685
|
border: 1px solid var(--btn-bg);
|
|
@@ -2664,12 +2697,12 @@
|
|
|
2664
2697
|
border-radius: 4px;
|
|
2665
2698
|
transition: all 0.3s ease;
|
|
2666
2699
|
}
|
|
2667
|
-
.
|
|
2700
|
+
.aaravpos-barber-book-btn:hover {
|
|
2668
2701
|
color: var(--btn-text-hover);
|
|
2669
2702
|
border-color: var(--btn-bg-hover);
|
|
2670
2703
|
background: var(--btn-bg-hover);
|
|
2671
2704
|
}
|
|
2672
|
-
.
|
|
2705
|
+
.aaravpos-barber-payment-overlay {
|
|
2673
2706
|
position: fixed;
|
|
2674
2707
|
inset: 0;
|
|
2675
2708
|
display: flex;
|
|
@@ -2679,7 +2712,7 @@
|
|
|
2679
2712
|
z-index: 1025;
|
|
2680
2713
|
padding: 16px;
|
|
2681
2714
|
}
|
|
2682
|
-
.
|
|
2715
|
+
.aaravpos-barber-payment-form {
|
|
2683
2716
|
width: 100%;
|
|
2684
2717
|
margin: auto;
|
|
2685
2718
|
display: flex;
|
|
@@ -2695,40 +2728,40 @@
|
|
|
2695
2728
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
|
|
2696
2729
|
box-sizing: border-box;
|
|
2697
2730
|
}
|
|
2698
|
-
.
|
|
2731
|
+
.aaravpos-barber-payment-header {
|
|
2699
2732
|
display: flex;
|
|
2700
2733
|
justify-content: space-between;
|
|
2701
2734
|
margin-bottom: 20px;
|
|
2702
2735
|
}
|
|
2703
|
-
.
|
|
2736
|
+
.aaravpos-barber-payment-title {
|
|
2704
2737
|
font-size: 18px;
|
|
2705
2738
|
font-weight: 600;
|
|
2706
2739
|
color: #111827;
|
|
2707
2740
|
margin: 0px;
|
|
2708
2741
|
}
|
|
2709
|
-
.
|
|
2742
|
+
.aaravpos-barber-payment-amount {
|
|
2710
2743
|
display: flex;
|
|
2711
2744
|
flex-direction: row;
|
|
2712
2745
|
align-items: center;
|
|
2713
2746
|
font-weight: 600;
|
|
2714
2747
|
color: #111827;
|
|
2715
2748
|
}
|
|
2716
|
-
.
|
|
2749
|
+
.aaravpos-barber-payment-fields {
|
|
2717
2750
|
display: flex;
|
|
2718
2751
|
flex-direction: column;
|
|
2719
2752
|
gap: 16px;
|
|
2720
2753
|
}
|
|
2721
|
-
.
|
|
2754
|
+
.aaravpos-barber-payment-label {
|
|
2722
2755
|
font-size: 12px;
|
|
2723
2756
|
font-weight: 600;
|
|
2724
2757
|
color: #4b5563;
|
|
2725
2758
|
display: flex;
|
|
2726
2759
|
margin-bottom: 4px;
|
|
2727
2760
|
}
|
|
2728
|
-
.
|
|
2761
|
+
.aaravpos-barber-payment-required {
|
|
2729
2762
|
color: #ef4444;
|
|
2730
2763
|
}
|
|
2731
|
-
.
|
|
2764
|
+
.aaravpos-barber-payment-input {
|
|
2732
2765
|
width: 100%;
|
|
2733
2766
|
padding: 10px 12px;
|
|
2734
2767
|
border: 1px solid red;
|
|
@@ -2737,26 +2770,26 @@
|
|
|
2737
2770
|
outline: none;
|
|
2738
2771
|
transition: border-color 0.2s ease;
|
|
2739
2772
|
}
|
|
2740
|
-
.
|
|
2773
|
+
.aaravpos-barber-payment-input:focus {
|
|
2741
2774
|
border-color: var(--red);
|
|
2742
2775
|
}
|
|
2743
|
-
.
|
|
2776
|
+
.aaravpos-barber-payment-error {
|
|
2744
2777
|
color: #ef4444;
|
|
2745
2778
|
font-size: 14px;
|
|
2746
2779
|
margin-top: 4px;
|
|
2747
2780
|
}
|
|
2748
|
-
.
|
|
2781
|
+
.aaravpos-barber-payment-grid {
|
|
2749
2782
|
display: grid;
|
|
2750
2783
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2751
2784
|
gap: 16px;
|
|
2752
2785
|
}
|
|
2753
|
-
.
|
|
2786
|
+
.aaravpos-barber-payment-btn-grid {
|
|
2754
2787
|
display: grid;
|
|
2755
2788
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2756
2789
|
gap: 16px;
|
|
2757
2790
|
margin-top: 20px;
|
|
2758
2791
|
}
|
|
2759
|
-
.
|
|
2792
|
+
.aaravpos-barber-payment-cancel-btn {
|
|
2760
2793
|
padding: 10px 16px;
|
|
2761
2794
|
cursor: pointer;
|
|
2762
2795
|
border-radius: 6px;
|
|
@@ -2764,7 +2797,7 @@
|
|
|
2764
2797
|
background: linear-gradient(to right, #ef4444, #dc2626);
|
|
2765
2798
|
color: #ffffff;
|
|
2766
2799
|
}
|
|
2767
|
-
.
|
|
2800
|
+
.aaravpos-barber-payment-submit-btn {
|
|
2768
2801
|
padding: 8px 16px;
|
|
2769
2802
|
border-radius: 6px;
|
|
2770
2803
|
cursor: pointer;
|
|
@@ -2773,11 +2806,11 @@
|
|
|
2773
2806
|
color: #ffffff;
|
|
2774
2807
|
transition: opacity 0.2s ease;
|
|
2775
2808
|
}
|
|
2776
|
-
.
|
|
2809
|
+
.aaravpos-barber-payment-submit-btn:disabled {
|
|
2777
2810
|
opacity: 0.5;
|
|
2778
2811
|
cursor: not-allowed;
|
|
2779
2812
|
}
|
|
2780
|
-
.
|
|
2813
|
+
.aaravpos-barber-consent-overlay {
|
|
2781
2814
|
position: fixed;
|
|
2782
2815
|
inset: 0;
|
|
2783
2816
|
z-index: 1025;
|
|
@@ -2787,12 +2820,12 @@
|
|
|
2787
2820
|
background-color: rgba(0, 0, 0, 0.4);
|
|
2788
2821
|
padding: 16px;
|
|
2789
2822
|
}
|
|
2790
|
-
.
|
|
2823
|
+
.aaravpos-barber-consent-backdrop {
|
|
2791
2824
|
position: fixed;
|
|
2792
2825
|
inset: 0;
|
|
2793
2826
|
background-color: rgba(0, 0, 0, 0.6);
|
|
2794
2827
|
}
|
|
2795
|
-
.
|
|
2828
|
+
.aaravpos-barber-consent-modal {
|
|
2796
2829
|
position: relative;
|
|
2797
2830
|
z-index: 10;
|
|
2798
2831
|
width: 90%;
|
|
@@ -2802,50 +2835,50 @@
|
|
|
2802
2835
|
border-radius: 12px;
|
|
2803
2836
|
padding: 16px;
|
|
2804
2837
|
}
|
|
2805
|
-
.
|
|
2838
|
+
.aaravpos-barber-consent-header {
|
|
2806
2839
|
display: flex;
|
|
2807
2840
|
justify-content: space-between;
|
|
2808
2841
|
margin-bottom: 10px;
|
|
2809
2842
|
}
|
|
2810
|
-
.
|
|
2843
|
+
.aaravpos-barber-consent-title {
|
|
2811
2844
|
font-size: 16px;
|
|
2812
2845
|
font-weight: 600;
|
|
2813
2846
|
color: #111827;
|
|
2814
2847
|
margin: 0px;
|
|
2815
2848
|
}
|
|
2816
|
-
.
|
|
2849
|
+
.aaravpos-barber-consent-close-btn {
|
|
2817
2850
|
color: #9ca3af;
|
|
2818
2851
|
cursor: pointer;
|
|
2819
2852
|
border: none;
|
|
2820
2853
|
background: transparent;
|
|
2821
2854
|
transition: color 0.2s ease;
|
|
2822
2855
|
}
|
|
2823
|
-
.
|
|
2856
|
+
.aaravpos-barber-consent-close-btn:hover {
|
|
2824
2857
|
color: #4b5563;
|
|
2825
2858
|
}
|
|
2826
|
-
.
|
|
2859
|
+
.aaravpos-barber-consent-content-wrapper {
|
|
2827
2860
|
max-height: 42vh;
|
|
2828
2861
|
}
|
|
2829
|
-
.
|
|
2862
|
+
.aaravpos-barber-consent-content-box {
|
|
2830
2863
|
border: 1px solid #e5e7eb;
|
|
2831
2864
|
border-radius: 6px;
|
|
2832
2865
|
padding: 16px;
|
|
2833
2866
|
background-color: #f9fafb;
|
|
2834
2867
|
}
|
|
2835
|
-
.
|
|
2868
|
+
.aaravpos-barber-consent-content {
|
|
2836
2869
|
color: #374151;
|
|
2837
2870
|
white-space: pre-wrap;
|
|
2838
2871
|
overflow-y: auto;
|
|
2839
2872
|
max-height: 30vh;
|
|
2840
2873
|
}
|
|
2841
|
-
.
|
|
2874
|
+
.aaravpos-barber-consent-checkbox-label {
|
|
2842
2875
|
display: flex;
|
|
2843
2876
|
gap: 8px;
|
|
2844
2877
|
align-items: center;
|
|
2845
2878
|
margin-top: 12px;
|
|
2846
2879
|
border-color: #e5e7eb;
|
|
2847
2880
|
}
|
|
2848
|
-
.
|
|
2881
|
+
.aaravpos-barber-consent-checkbox {
|
|
2849
2882
|
width: 18px;
|
|
2850
2883
|
height: 18px;
|
|
2851
2884
|
color: #ef4444;
|
|
@@ -2853,49 +2886,49 @@
|
|
|
2853
2886
|
border: 1px solid #d1d5db;
|
|
2854
2887
|
border-radius: 4px;
|
|
2855
2888
|
}
|
|
2856
|
-
.
|
|
2889
|
+
.aaravpos-barber-consent-checkbox-text {
|
|
2857
2890
|
font-size: 14px;
|
|
2858
2891
|
font-weight: 500;
|
|
2859
2892
|
color: #374151;
|
|
2860
2893
|
}
|
|
2861
|
-
.
|
|
2894
|
+
.aaravpos-barber-consent-typed-wrapper {
|
|
2862
2895
|
margin-top: 16px;
|
|
2863
2896
|
}
|
|
2864
|
-
.
|
|
2897
|
+
.aaravpos-barber-consent-input-label {
|
|
2865
2898
|
display: block;
|
|
2866
2899
|
margin-bottom: 8px;
|
|
2867
2900
|
font-size: 14px;
|
|
2868
2901
|
font-weight: 500;
|
|
2869
2902
|
color: #374151;
|
|
2870
2903
|
}
|
|
2871
|
-
.
|
|
2904
|
+
.aaravpos-barber-consent-required {
|
|
2872
2905
|
color: #ef4444;
|
|
2873
2906
|
}
|
|
2874
|
-
.
|
|
2907
|
+
.aaravpos-barber-consent-input {
|
|
2875
2908
|
width: 100%;
|
|
2876
2909
|
padding: 8px 12px;
|
|
2877
2910
|
border-radius: 6px;
|
|
2878
2911
|
outline: none;
|
|
2879
2912
|
}
|
|
2880
|
-
.
|
|
2913
|
+
.aaravpos-barber-consent-input-normal {
|
|
2881
2914
|
border: 1px solid #d1d5db;
|
|
2882
2915
|
}
|
|
2883
|
-
.
|
|
2916
|
+
.aaravpos-barber-consent-input-error {
|
|
2884
2917
|
border: 1px solid #ef4444;
|
|
2885
2918
|
}
|
|
2886
|
-
.
|
|
2919
|
+
.aaravpos-barber-consent-helper-text {
|
|
2887
2920
|
margin-top: 4px;
|
|
2888
2921
|
font-size: 12px;
|
|
2889
2922
|
color: #6b7280;
|
|
2890
2923
|
}
|
|
2891
|
-
.
|
|
2924
|
+
.aaravpos-barber-consent-error {
|
|
2892
2925
|
font-size: 14px;
|
|
2893
2926
|
color: #ef4444;
|
|
2894
2927
|
}
|
|
2895
|
-
.
|
|
2928
|
+
.aaravpos-barber-consent-signature-wrapper {
|
|
2896
2929
|
margin-top: 16px;
|
|
2897
2930
|
}
|
|
2898
|
-
.
|
|
2931
|
+
.aaravpos-barber-consent-signature-canvas {
|
|
2899
2932
|
width: 100%;
|
|
2900
2933
|
height: 136px;
|
|
2901
2934
|
overflow: hidden;
|
|
@@ -2903,16 +2936,16 @@
|
|
|
2903
2936
|
border-radius: 6px;
|
|
2904
2937
|
background-color: #ffffff;
|
|
2905
2938
|
}
|
|
2906
|
-
.
|
|
2939
|
+
.aaravpos-barber-consent-error-signature {
|
|
2907
2940
|
margin-top: 4px;
|
|
2908
2941
|
margin-bottom: 4px;
|
|
2909
2942
|
}
|
|
2910
|
-
.
|
|
2943
|
+
.aaravpos-barber-consent-signature-actions {
|
|
2911
2944
|
display: flex;
|
|
2912
2945
|
justify-content: space-between;
|
|
2913
2946
|
margin-top: 8px;
|
|
2914
2947
|
}
|
|
2915
|
-
.
|
|
2948
|
+
.aaravpos-barber-consent-clear-btn {
|
|
2916
2949
|
display: flex;
|
|
2917
2950
|
flex-direction: row;
|
|
2918
2951
|
align-items: center;
|
|
@@ -2925,17 +2958,17 @@
|
|
|
2925
2958
|
border-radius: 6px;
|
|
2926
2959
|
background: transparent;
|
|
2927
2960
|
}
|
|
2928
|
-
.
|
|
2961
|
+
.aaravpos-barber-consent-clear-btn:hover {
|
|
2929
2962
|
color: #1f2937;
|
|
2930
2963
|
}
|
|
2931
|
-
.
|
|
2964
|
+
.aaravpos-barber-consent-email-label {
|
|
2932
2965
|
display: flex;
|
|
2933
2966
|
gap: 8px;
|
|
2934
2967
|
align-items: center;
|
|
2935
2968
|
cursor: pointer;
|
|
2936
2969
|
font-size: 14px;
|
|
2937
2970
|
}
|
|
2938
|
-
.
|
|
2971
|
+
.aaravpos-barber-consent-email-checkbox {
|
|
2939
2972
|
width: 16px;
|
|
2940
2973
|
height: 16px;
|
|
2941
2974
|
accent-color: var(--btn-bg);
|
|
@@ -2943,17 +2976,17 @@
|
|
|
2943
2976
|
border: 1px solid #d1d5db;
|
|
2944
2977
|
border-radius: 4px;
|
|
2945
2978
|
}
|
|
2946
|
-
.
|
|
2979
|
+
.aaravpos-barber-consent-email-text {
|
|
2947
2980
|
font-size: 14px;
|
|
2948
2981
|
color: #374151;
|
|
2949
2982
|
}
|
|
2950
|
-
.
|
|
2983
|
+
.aaravpos-barber-consent-footer {
|
|
2951
2984
|
display: flex;
|
|
2952
2985
|
justify-content: flex-end;
|
|
2953
2986
|
gap: 12px;
|
|
2954
2987
|
margin-top: 20px;
|
|
2955
2988
|
}
|
|
2956
|
-
.
|
|
2989
|
+
.aaravpos-barber-consent-cancel-btn {
|
|
2957
2990
|
padding: 8px 16px;
|
|
2958
2991
|
border: 1px solid #d1d5db;
|
|
2959
2992
|
border-radius: 6px;
|
|
@@ -2962,10 +2995,10 @@
|
|
|
2962
2995
|
cursor: pointer;
|
|
2963
2996
|
transition: color 0.2s ease;
|
|
2964
2997
|
}
|
|
2965
|
-
.
|
|
2998
|
+
.aaravpos-barber-consent-cancel-btn:hover {
|
|
2966
2999
|
color: #111827;
|
|
2967
3000
|
}
|
|
2968
|
-
.
|
|
3001
|
+
.aaravpos-barber-consent-submit-btn {
|
|
2969
3002
|
display: flex;
|
|
2970
3003
|
align-items: center;
|
|
2971
3004
|
gap: 8px;
|
|
@@ -2974,27 +3007,27 @@
|
|
|
2974
3007
|
border-radius: 6px;
|
|
2975
3008
|
transition: all 0.2s ease;
|
|
2976
3009
|
}
|
|
2977
|
-
.
|
|
3010
|
+
.aaravpos-barber-consent-submit-disabled {
|
|
2978
3011
|
background-color: #d1d5db;
|
|
2979
3012
|
color: #4b5563;
|
|
2980
3013
|
cursor: not-allowed;
|
|
2981
3014
|
}
|
|
2982
|
-
.
|
|
3015
|
+
.aaravpos-barber-consent-submit-active {
|
|
2983
3016
|
background-color: var(--btn-bg);
|
|
2984
3017
|
color: #ffffff;
|
|
2985
3018
|
cursor: pointer;
|
|
2986
3019
|
}
|
|
2987
|
-
.
|
|
3020
|
+
.aaravpos-barber-consent-submit-active:hover {
|
|
2988
3021
|
background-color: var(--btn-bg-hover);
|
|
2989
3022
|
}
|
|
2990
|
-
.
|
|
3023
|
+
.aaravpos-barber-date-wrapper {
|
|
2991
3024
|
margin-top: 8px;
|
|
2992
3025
|
margin-bottom: 14px;
|
|
2993
3026
|
display: flex;
|
|
2994
3027
|
flex-direction: row;
|
|
2995
3028
|
flex-wrap: wrap;
|
|
2996
3029
|
}
|
|
2997
|
-
.
|
|
3030
|
+
.aaravpos-barber-date-strip {
|
|
2998
3031
|
display: flex;
|
|
2999
3032
|
align-items: stretch;
|
|
3000
3033
|
gap: 6px;
|
|
@@ -3004,10 +3037,10 @@
|
|
|
3004
3037
|
-webkit-overflow-scrolling: touch;
|
|
3005
3038
|
scroll-behavior: smooth;
|
|
3006
3039
|
}
|
|
3007
|
-
.
|
|
3040
|
+
.aaravpos-barber-date-strip::-webkit-scrollbar {
|
|
3008
3041
|
display: none;
|
|
3009
3042
|
}
|
|
3010
|
-
.
|
|
3043
|
+
.aaravpos-barber-date-card {
|
|
3011
3044
|
flex-shrink: 0;
|
|
3012
3045
|
display: flex;
|
|
3013
3046
|
flex-direction: column;
|
|
@@ -3021,37 +3054,37 @@
|
|
|
3021
3054
|
user-select: none;
|
|
3022
3055
|
border: 1px solid transparent;
|
|
3023
3056
|
}
|
|
3024
|
-
.
|
|
3057
|
+
.aaravpos-barber-date-card-active {
|
|
3025
3058
|
background-color: var(--btn-bg);
|
|
3026
3059
|
color: var(--btn-text);
|
|
3027
3060
|
border-color: var(--btn-bg);
|
|
3028
3061
|
}
|
|
3029
|
-
.
|
|
3062
|
+
.aaravpos-barber-date-card-default:hover {
|
|
3030
3063
|
color: var(--btn-text-hover);
|
|
3031
3064
|
border-color: var(--btn-bg-hover);
|
|
3032
3065
|
background-color: var(--btn-bg-hover);
|
|
3033
3066
|
}
|
|
3034
|
-
.
|
|
3067
|
+
.aaravpos-barber-date-week {
|
|
3035
3068
|
font-size: 10px;
|
|
3036
3069
|
text-transform: uppercase;
|
|
3037
3070
|
margin-bottom: 4px;
|
|
3038
3071
|
line-height: 1;
|
|
3039
3072
|
font-weight: 500;
|
|
3040
3073
|
}
|
|
3041
|
-
.
|
|
3074
|
+
.aaravpos-barber-date-day {
|
|
3042
3075
|
font-family: monospace;
|
|
3043
3076
|
font-size: 18px;
|
|
3044
3077
|
line-height: 1;
|
|
3045
3078
|
font-weight: 500;
|
|
3046
3079
|
}
|
|
3047
|
-
.
|
|
3080
|
+
.aaravpos-barber-date-today {
|
|
3048
3081
|
margin-top: 6px;
|
|
3049
3082
|
font-size: 8px;
|
|
3050
3083
|
color: var(--red);
|
|
3051
3084
|
font-weight: 700;
|
|
3052
3085
|
line-height: 1;
|
|
3053
3086
|
}
|
|
3054
|
-
.
|
|
3087
|
+
.aaravpos-barber-calendar-btn {
|
|
3055
3088
|
margin-left: 16px;
|
|
3056
3089
|
padding: 8px;
|
|
3057
3090
|
font-size: 14px;
|
|
@@ -3070,7 +3103,7 @@
|
|
|
3070
3103
|
color: #ffffff;
|
|
3071
3104
|
border: none;
|
|
3072
3105
|
}
|
|
3073
|
-
.
|
|
3106
|
+
.aaravpos-barber-selected-professional {
|
|
3074
3107
|
display: flex;
|
|
3075
3108
|
align-items: center;
|
|
3076
3109
|
gap: 12px;
|
|
@@ -3081,14 +3114,14 @@
|
|
|
3081
3114
|
border-radius: 2px;
|
|
3082
3115
|
flex-wrap: wrap;
|
|
3083
3116
|
}
|
|
3084
|
-
.
|
|
3117
|
+
.aaravpos-barber-selected-professional-image {
|
|
3085
3118
|
width: 40px;
|
|
3086
3119
|
height: 40px;
|
|
3087
3120
|
border-radius: 9999px;
|
|
3088
3121
|
object-fit: cover;
|
|
3089
3122
|
flex-shrink: 0;
|
|
3090
3123
|
}
|
|
3091
|
-
.
|
|
3124
|
+
.aaravpos-barber-selected-professional-avatar {
|
|
3092
3125
|
width: 40px;
|
|
3093
3126
|
height: 40px;
|
|
3094
3127
|
border-radius: 9999px;
|
|
@@ -3099,16 +3132,16 @@
|
|
|
3099
3132
|
justify-content: center;
|
|
3100
3133
|
flex-shrink: 0;
|
|
3101
3134
|
}
|
|
3102
|
-
.
|
|
3135
|
+
.aaravpos-barber-selected-professional-content {
|
|
3103
3136
|
flex: 1;
|
|
3104
3137
|
min-width: 0;
|
|
3105
3138
|
}
|
|
3106
|
-
.
|
|
3139
|
+
.aaravpos-barber-selected-professional-name {
|
|
3107
3140
|
font-size: 14px;
|
|
3108
3141
|
font-weight: 600;
|
|
3109
3142
|
margin: 0px 0px 4px;
|
|
3110
3143
|
}
|
|
3111
|
-
.
|
|
3144
|
+
.aaravpos-barber-selected-professional-services {
|
|
3112
3145
|
font-size: 12px;
|
|
3113
3146
|
color: var(--muted);
|
|
3114
3147
|
overflow: hidden;
|
|
@@ -3116,41 +3149,41 @@
|
|
|
3116
3149
|
white-space: nowrap;
|
|
3117
3150
|
margin: 0px;
|
|
3118
3151
|
}
|
|
3119
|
-
.
|
|
3152
|
+
.aaravpos-barber-scroll-area {
|
|
3120
3153
|
overflow-y: auto;
|
|
3121
3154
|
padding-bottom: 80px;
|
|
3122
3155
|
scrollbar-width: none;
|
|
3123
3156
|
max-height: 362px;
|
|
3124
3157
|
position: relative;
|
|
3125
3158
|
}
|
|
3126
|
-
.
|
|
3159
|
+
.aaravpos-barber-scroll-area::-webkit-scrollbar {
|
|
3127
3160
|
display: none;
|
|
3128
3161
|
}
|
|
3129
|
-
.
|
|
3162
|
+
.aaravpos-barber-loader-wrapper {
|
|
3130
3163
|
display: flex;
|
|
3131
3164
|
align-items: center;
|
|
3132
3165
|
justify-content: center;
|
|
3133
3166
|
width: 100%;
|
|
3134
3167
|
height: 100%;
|
|
3135
3168
|
}
|
|
3136
|
-
.
|
|
3169
|
+
.aaravpos-barber-loader {
|
|
3137
3170
|
width: 32px;
|
|
3138
3171
|
height: 32px;
|
|
3139
3172
|
border-radius: 9999px;
|
|
3140
3173
|
border: 3px solid var(--btn-bg);
|
|
3141
3174
|
border-top-color: transparent;
|
|
3142
|
-
animation:
|
|
3175
|
+
animation: aaravpos-barber-spin 1s linear infinite;
|
|
3143
3176
|
}
|
|
3144
|
-
.
|
|
3177
|
+
.aaravpos-barber-slot-icon {
|
|
3145
3178
|
color: #fb923c;
|
|
3146
3179
|
}
|
|
3147
|
-
.
|
|
3180
|
+
.aaravpos-barber-slot-section {
|
|
3148
3181
|
margin-bottom: 16px;
|
|
3149
3182
|
border: 1px solid rgb(0 0 0 / 10%);
|
|
3150
3183
|
border-radius: 2px;
|
|
3151
3184
|
overflow: hidden;
|
|
3152
3185
|
}
|
|
3153
|
-
.
|
|
3186
|
+
.aaravpos-barber-slot-section-header {
|
|
3154
3187
|
display: flex;
|
|
3155
3188
|
align-items: center;
|
|
3156
3189
|
justify-content: space-between;
|
|
@@ -3159,10 +3192,10 @@
|
|
|
3159
3192
|
background-color: var(--surface);
|
|
3160
3193
|
transition: background-color 0.2s ease;
|
|
3161
3194
|
}
|
|
3162
|
-
.
|
|
3195
|
+
.aaravpos-barber-slot-section-header:hover {
|
|
3163
3196
|
background-color: rgba(var(--btn-bg), 0.08);
|
|
3164
3197
|
}
|
|
3165
|
-
.
|
|
3198
|
+
.aaravpos-barber-slot-section-title {
|
|
3166
3199
|
display: flex;
|
|
3167
3200
|
align-items: center;
|
|
3168
3201
|
gap: 8px;
|
|
@@ -3172,23 +3205,23 @@
|
|
|
3172
3205
|
letter-spacing: 1.2px;
|
|
3173
3206
|
color: rgba(0, 0, 0, 0.8);
|
|
3174
3207
|
}
|
|
3175
|
-
.
|
|
3208
|
+
.aaravpos-barber-slot-section-arrow {
|
|
3176
3209
|
transition: transform 0.2s ease;
|
|
3177
3210
|
}
|
|
3178
|
-
.
|
|
3211
|
+
.aaravpos-barber-slot-section-arrow-open {
|
|
3179
3212
|
transform: rotate(180deg);
|
|
3180
3213
|
}
|
|
3181
|
-
.
|
|
3214
|
+
.aaravpos-barber-slot-section-content {
|
|
3182
3215
|
padding: 12px;
|
|
3183
3216
|
border-top: 1px solid rgb(0 0 0 / 10%);
|
|
3184
3217
|
background-color: #ffffff;
|
|
3185
3218
|
}
|
|
3186
|
-
.
|
|
3219
|
+
.aaravpos-barber-slot-grid {
|
|
3187
3220
|
display: grid;
|
|
3188
3221
|
grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
|
|
3189
3222
|
gap: 8px;
|
|
3190
3223
|
}
|
|
3191
|
-
.
|
|
3224
|
+
.aaravpos-barber-slot-card {
|
|
3192
3225
|
display: flex;
|
|
3193
3226
|
flex-direction: column;
|
|
3194
3227
|
align-items: center;
|
|
@@ -3199,30 +3232,30 @@
|
|
|
3199
3232
|
border-radius: 2px;
|
|
3200
3233
|
transition: all 0.2s ease;
|
|
3201
3234
|
}
|
|
3202
|
-
.
|
|
3235
|
+
.aaravpos-barber-slot-card-default {
|
|
3203
3236
|
background-color: #ffffff;
|
|
3204
3237
|
cursor: pointer;
|
|
3205
3238
|
}
|
|
3206
|
-
.
|
|
3239
|
+
.aaravpos-barber-slot-card-default:hover {
|
|
3207
3240
|
color: var(--btn-bg);
|
|
3208
3241
|
border-color: var(--btn-bg);
|
|
3209
3242
|
}
|
|
3210
|
-
.
|
|
3243
|
+
.aaravpos-barber-slot-card-selected {
|
|
3211
3244
|
background-color: #fff8f8;
|
|
3212
3245
|
color: var(--btn-bg);
|
|
3213
3246
|
border-color: rgb(0 0 0 / 10%);
|
|
3214
3247
|
cursor: pointer;
|
|
3215
3248
|
}
|
|
3216
|
-
.
|
|
3249
|
+
.aaravpos-barber-slot-card-disabled {
|
|
3217
3250
|
background-color: #f3f4f6;
|
|
3218
3251
|
color: #9ca3af;
|
|
3219
3252
|
cursor: not-allowed;
|
|
3220
3253
|
}
|
|
3221
|
-
.
|
|
3254
|
+
.aaravpos-barber-slot-time {
|
|
3222
3255
|
font-family: monospace;
|
|
3223
3256
|
font-size: 14px;
|
|
3224
3257
|
}
|
|
3225
|
-
.
|
|
3258
|
+
.aaravpos-barber-slot-status {
|
|
3226
3259
|
font-size: 10px;
|
|
3227
3260
|
}
|
|
3228
3261
|
.aaravpos-barber-staff-wrapper {
|
|
@@ -3235,14 +3268,14 @@
|
|
|
3235
3268
|
.aaravpos-barber-staff-wrapper::-webkit-scrollbar {
|
|
3236
3269
|
display: none;
|
|
3237
3270
|
}
|
|
3238
|
-
.
|
|
3271
|
+
.aaravpos-barber-profile-image {
|
|
3239
3272
|
width: 40px;
|
|
3240
3273
|
height: 40px;
|
|
3241
3274
|
border-radius: 9999px;
|
|
3242
3275
|
object-fit: cover;
|
|
3243
3276
|
flex-shrink: 0;
|
|
3244
3277
|
}
|
|
3245
|
-
.
|
|
3278
|
+
.aaravpos-barber-profile-avatar {
|
|
3246
3279
|
width: 40px;
|
|
3247
3280
|
height: 40px;
|
|
3248
3281
|
border-radius: 9999px;
|
|
@@ -3253,7 +3286,7 @@
|
|
|
3253
3286
|
justify-content: center;
|
|
3254
3287
|
flex-shrink: 0;
|
|
3255
3288
|
}
|
|
3256
|
-
.
|
|
3289
|
+
.aaravpos-barber-card-box {
|
|
3257
3290
|
background-color: #ffffff;
|
|
3258
3291
|
border: 1px solid var(--btn-bg);
|
|
3259
3292
|
border-radius: 2px;
|
|
@@ -3261,7 +3294,7 @@
|
|
|
3261
3294
|
margin-bottom: 8px;
|
|
3262
3295
|
font-size: 14px;
|
|
3263
3296
|
}
|
|
3264
|
-
.
|
|
3297
|
+
.aaravpos-barber-section-label {
|
|
3265
3298
|
margin-top: 20px;
|
|
3266
3299
|
margin-bottom: 8px;
|
|
3267
3300
|
font-size: 10px;
|
|
@@ -3270,7 +3303,7 @@
|
|
|
3270
3303
|
letter-spacing: 1.5px;
|
|
3271
3304
|
color: rgba(0, 0, 0, 0.7);
|
|
3272
3305
|
}
|
|
3273
|
-
.
|
|
3306
|
+
.aaravpos-barber-select-card {
|
|
3274
3307
|
display: flex;
|
|
3275
3308
|
flex-direction: row;
|
|
3276
3309
|
align-items: center;
|
|
@@ -3281,22 +3314,22 @@
|
|
|
3281
3314
|
margin-bottom: 8px;
|
|
3282
3315
|
border: 1px solid;
|
|
3283
3316
|
}
|
|
3284
|
-
.
|
|
3317
|
+
.aaravpos-barber-select-card-default {
|
|
3285
3318
|
border-color: var(--border);
|
|
3286
3319
|
background-color: transparent;
|
|
3287
3320
|
}
|
|
3288
|
-
.
|
|
3321
|
+
.aaravpos-barber-select-card-active {
|
|
3289
3322
|
border-color: var(--red);
|
|
3290
3323
|
background-color: rgba(255, 0, 0, 0.05);
|
|
3291
3324
|
}
|
|
3292
|
-
.
|
|
3325
|
+
.aaravpos-barber-select-check {
|
|
3293
3326
|
margin-left: auto;
|
|
3294
3327
|
display: flex;
|
|
3295
3328
|
align-items: center;
|
|
3296
3329
|
justify-content: center;
|
|
3297
3330
|
flex-shrink: 0;
|
|
3298
3331
|
}
|
|
3299
|
-
.
|
|
3332
|
+
.aaravpos-barber-date-nav-btn {
|
|
3300
3333
|
flex-shrink: 0;
|
|
3301
3334
|
width: 34px;
|
|
3302
3335
|
background-color: rgb(242, 240, 236);
|
|
@@ -3312,7 +3345,7 @@
|
|
|
3312
3345
|
align-self: stretch;
|
|
3313
3346
|
transition: all 150ms ease;
|
|
3314
3347
|
}
|
|
3315
|
-
.
|
|
3348
|
+
.aaravpos-barber-date-nav-btn:hover {
|
|
3316
3349
|
border-color: var(--red);
|
|
3317
3350
|
color: var(--red);
|
|
3318
3351
|
background-color: rgba(215, 38, 61, 0.12);
|
|
@@ -3396,7 +3429,7 @@
|
|
|
3396
3429
|
}
|
|
3397
3430
|
}
|
|
3398
3431
|
@media (max-width: 768px) {
|
|
3399
|
-
.
|
|
3432
|
+
.aaravpos-barber-select-card {
|
|
3400
3433
|
gap: 10px;
|
|
3401
3434
|
padding: 10px;
|
|
3402
3435
|
}
|
|
@@ -3414,47 +3447,47 @@
|
|
|
3414
3447
|
.aaravpos-barber-calendar-grid {
|
|
3415
3448
|
gap: 8px;
|
|
3416
3449
|
}
|
|
3417
|
-
.
|
|
3450
|
+
.aaravpos-barber-date-nav-btn svg {
|
|
3418
3451
|
width: 18px;
|
|
3419
3452
|
height: 18px;
|
|
3420
3453
|
}
|
|
3421
|
-
.
|
|
3454
|
+
.aaravpos-barber-date-strip {
|
|
3422
3455
|
gap: 5px;
|
|
3423
3456
|
}
|
|
3424
|
-
.
|
|
3457
|
+
.aaravpos-barber-date-week {
|
|
3425
3458
|
font-size: 9px;
|
|
3426
3459
|
}
|
|
3427
|
-
.
|
|
3460
|
+
.aaravpos-barber-date-day {
|
|
3428
3461
|
font-size: 20px;
|
|
3429
3462
|
}
|
|
3430
|
-
.
|
|
3463
|
+
.aaravpos-barber-date-today {
|
|
3431
3464
|
font-size: 7px;
|
|
3432
3465
|
}
|
|
3433
|
-
.
|
|
3466
|
+
.aaravpos-barber-select-check svg {
|
|
3434
3467
|
width: 18px;
|
|
3435
3468
|
height: 18px;
|
|
3436
3469
|
}
|
|
3437
|
-
.
|
|
3470
|
+
.aaravpos-barber-card-box {
|
|
3438
3471
|
padding: 14px;
|
|
3439
3472
|
font-size: 13px;
|
|
3440
3473
|
}
|
|
3441
|
-
.
|
|
3474
|
+
.aaravpos-barber-calendar-btn {
|
|
3442
3475
|
font-size: 12px;
|
|
3443
3476
|
}
|
|
3444
|
-
.
|
|
3477
|
+
.aaravpos-barber-outlet-info {
|
|
3445
3478
|
padding: 10px;
|
|
3446
3479
|
}
|
|
3447
|
-
.
|
|
3480
|
+
.aaravpos-barber-outlet-logo {
|
|
3448
3481
|
width: 36px;
|
|
3449
3482
|
height: 36px;
|
|
3450
3483
|
}
|
|
3451
|
-
.
|
|
3484
|
+
.aaravpos-barber-appointment-header {
|
|
3452
3485
|
align-items: flex-start;
|
|
3453
3486
|
}
|
|
3454
|
-
.
|
|
3487
|
+
.aaravpos-barber-appointment-price {
|
|
3455
3488
|
font-size: 14px;
|
|
3456
3489
|
}
|
|
3457
|
-
.
|
|
3490
|
+
.aaravpos-barber-appointment-services {
|
|
3458
3491
|
white-space: normal;
|
|
3459
3492
|
display: -webkit-box;
|
|
3460
3493
|
-webkit-line-clamp: 2;
|
|
@@ -3487,17 +3520,17 @@
|
|
|
3487
3520
|
}
|
|
3488
3521
|
}
|
|
3489
3522
|
@media (min-width: 768px) {
|
|
3490
|
-
.
|
|
3523
|
+
.aaravpos-barber-section-label {
|
|
3491
3524
|
margin-top: 18px;
|
|
3492
3525
|
font-size: 9px;
|
|
3493
3526
|
letter-spacing: 1.3px;
|
|
3494
3527
|
}
|
|
3495
|
-
.
|
|
3528
|
+
.aaravpos-barber-profile-avatar {
|
|
3496
3529
|
width: 36px;
|
|
3497
3530
|
height: 36px;
|
|
3498
3531
|
font-size: 14px;
|
|
3499
3532
|
}
|
|
3500
|
-
.
|
|
3533
|
+
.aaravpos-barber-profile-image {
|
|
3501
3534
|
width: 36px;
|
|
3502
3535
|
height: 36px;
|
|
3503
3536
|
}
|
|
@@ -3526,7 +3559,7 @@
|
|
|
3526
3559
|
.aaravpos-barber-pro-order-list {
|
|
3527
3560
|
height: calc(100dvh - 380px);
|
|
3528
3561
|
}
|
|
3529
|
-
.
|
|
3562
|
+
.aaravpos-barber-details-grid {
|
|
3530
3563
|
grid-template-columns: repeat(2, 1fr);
|
|
3531
3564
|
gap: 20px;
|
|
3532
3565
|
}
|
|
@@ -3535,73 +3568,73 @@
|
|
|
3535
3568
|
}
|
|
3536
3569
|
}
|
|
3537
3570
|
@media (max-width: 480px) {
|
|
3538
|
-
.
|
|
3571
|
+
.aaravpos-barber-date-nav-btn {
|
|
3539
3572
|
width: 23px;
|
|
3540
3573
|
padding: 6px;
|
|
3541
3574
|
}
|
|
3542
|
-
.
|
|
3575
|
+
.aaravpos-barber-date-nav-btn svg {
|
|
3543
3576
|
width: 16px;
|
|
3544
3577
|
height: 16px;
|
|
3545
3578
|
}
|
|
3546
|
-
.
|
|
3579
|
+
.aaravpos-barber-date-strip {
|
|
3547
3580
|
gap: 4px;
|
|
3548
3581
|
}
|
|
3549
|
-
.
|
|
3582
|
+
.aaravpos-barber-date-card {
|
|
3550
3583
|
min-width: 24px;
|
|
3551
3584
|
min-height: 38px;
|
|
3552
3585
|
padding: 8px 4px;
|
|
3553
3586
|
}
|
|
3554
|
-
.
|
|
3587
|
+
.aaravpos-barber-calendar-btn {
|
|
3555
3588
|
margin-left: 2px;
|
|
3556
3589
|
padding: 6px;
|
|
3557
3590
|
}
|
|
3558
|
-
.
|
|
3591
|
+
.aaravpos-barber-date-week {
|
|
3559
3592
|
font-size: 8px;
|
|
3560
3593
|
margin-bottom: 3px;
|
|
3561
3594
|
}
|
|
3562
|
-
.
|
|
3595
|
+
.aaravpos-barber-date-day {
|
|
3563
3596
|
font-size: 18px;
|
|
3564
3597
|
}
|
|
3565
|
-
.
|
|
3598
|
+
.aaravpos-barber-date-today {
|
|
3566
3599
|
margin-top: 4px;
|
|
3567
3600
|
font-size: 6px;
|
|
3568
3601
|
}
|
|
3569
|
-
.
|
|
3602
|
+
.aaravpos-barber-select-check svg {
|
|
3570
3603
|
width: 16px;
|
|
3571
3604
|
height: 16px;
|
|
3572
3605
|
}
|
|
3573
|
-
.
|
|
3606
|
+
.aaravpos-barber-select-card {
|
|
3574
3607
|
gap: 8px;
|
|
3575
3608
|
padding: 8px;
|
|
3576
3609
|
}
|
|
3577
|
-
.
|
|
3610
|
+
.aaravpos-barber-section-label {
|
|
3578
3611
|
margin-top: 16px;
|
|
3579
3612
|
font-size: 8px;
|
|
3580
3613
|
letter-spacing: 1.1px;
|
|
3581
3614
|
}
|
|
3582
|
-
.
|
|
3615
|
+
.aaravpos-barber-card-box {
|
|
3583
3616
|
padding: 12px;
|
|
3584
3617
|
font-size: 12px;
|
|
3585
3618
|
}
|
|
3586
|
-
.
|
|
3619
|
+
.aaravpos-barber-profile-image {
|
|
3587
3620
|
width: 32px;
|
|
3588
3621
|
height: 32px;
|
|
3589
3622
|
}
|
|
3590
|
-
.
|
|
3623
|
+
.aaravpos-barber-profile-avatar {
|
|
3591
3624
|
width: 32px;
|
|
3592
3625
|
height: 32px;
|
|
3593
3626
|
font-size: 12px;
|
|
3594
3627
|
}
|
|
3595
|
-
.
|
|
3628
|
+
.aaravpos-barber-outlet-name {
|
|
3596
3629
|
font-size: 13px;
|
|
3597
3630
|
}
|
|
3598
|
-
.
|
|
3631
|
+
.aaravpos-barber-outlet-address {
|
|
3599
3632
|
font-size: 11px;
|
|
3600
3633
|
}
|
|
3601
|
-
.
|
|
3634
|
+
.aaravpos-barber-appointment-name {
|
|
3602
3635
|
font-size: 13px;
|
|
3603
3636
|
}
|
|
3604
|
-
.
|
|
3637
|
+
.aaravpos-barber-appointment-date-text {
|
|
3605
3638
|
font-size: 13px;
|
|
3606
3639
|
}
|
|
3607
3640
|
.aaravpos-barber-date-modal {
|
|
@@ -3613,7 +3646,7 @@
|
|
|
3613
3646
|
}
|
|
3614
3647
|
}
|
|
3615
3648
|
@media (max-width: 543px) {
|
|
3616
|
-
.
|
|
3649
|
+
.aaravpos-barber-date-wrapper {
|
|
3617
3650
|
justify-content: space-between;
|
|
3618
3651
|
}
|
|
3619
3652
|
.aaravpos-barber-services-grid {
|
|
@@ -3624,7 +3657,7 @@
|
|
|
3624
3657
|
.aaravpos-barber-sidebar {
|
|
3625
3658
|
display: block;
|
|
3626
3659
|
}
|
|
3627
|
-
.aaravpos-barber-sidebar-
|
|
3660
|
+
.aaravpos-barber-sidebar-mobile {
|
|
3628
3661
|
display: none;
|
|
3629
3662
|
}
|
|
3630
3663
|
.aaravpos-barber-layout-wrapper {
|
|
@@ -3640,20 +3673,20 @@
|
|
|
3640
3673
|
}
|
|
3641
3674
|
}
|
|
3642
3675
|
@media (min-width: 1024px) {
|
|
3643
|
-
.
|
|
3676
|
+
.aaravpos-barber-date-strip {
|
|
3644
3677
|
gap: 6px;
|
|
3645
3678
|
}
|
|
3646
3679
|
.custom-container {
|
|
3647
3680
|
padding-left: 64px;
|
|
3648
3681
|
padding-right: 64px;
|
|
3649
3682
|
}
|
|
3650
|
-
.
|
|
3683
|
+
.aaravpos-barber-consent-modal {
|
|
3651
3684
|
width: 60%;
|
|
3652
3685
|
}
|
|
3653
|
-
.
|
|
3686
|
+
.aaravpos-barber-scroll-area {
|
|
3654
3687
|
padding-bottom: 16px;
|
|
3655
3688
|
}
|
|
3656
|
-
.
|
|
3689
|
+
.aaravpos-barber-consent-title {
|
|
3657
3690
|
font-size: 20px;
|
|
3658
3691
|
}
|
|
3659
3692
|
.aaravpos-barber-header {
|
|
@@ -3679,7 +3712,7 @@
|
|
|
3679
3712
|
align-items: flex-end;
|
|
3680
3713
|
gap: 32px;
|
|
3681
3714
|
}
|
|
3682
|
-
.
|
|
3715
|
+
.aaravpos-barber-details-scroll {
|
|
3683
3716
|
padding-bottom: 16px;
|
|
3684
3717
|
}
|
|
3685
3718
|
}
|
|
@@ -3691,7 +3724,7 @@
|
|
|
3691
3724
|
.aaravpos-barber-sidebar {
|
|
3692
3725
|
display: none;
|
|
3693
3726
|
}
|
|
3694
|
-
.
|
|
3727
|
+
.aaravpos-barber-booking-grid {
|
|
3695
3728
|
flex-direction: column;
|
|
3696
3729
|
gap: 20px;
|
|
3697
3730
|
}
|
|
@@ -3812,12 +3845,12 @@
|
|
|
3812
3845
|
transform: rotate(360deg);
|
|
3813
3846
|
}
|
|
3814
3847
|
}
|
|
3815
|
-
@keyframes
|
|
3848
|
+
@keyframes aaravpos-barber-spin {
|
|
3816
3849
|
to {
|
|
3817
3850
|
transform: rotate(360deg);
|
|
3818
3851
|
}
|
|
3819
3852
|
}
|
|
3820
|
-
@keyframes
|
|
3853
|
+
@keyframes aaravpos-barber-spin {
|
|
3821
3854
|
to {
|
|
3822
3855
|
transform: rotate(360deg);
|
|
3823
3856
|
}
|