sccoreui 2.2.8 → 2.3.0

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.
Files changed (34) hide show
  1. package/dist/App.scss +13 -15
  2. package/dist/assets/flex.css +845 -404
  3. package/dist/assets/sccoreui.css +466 -242
  4. package/dist/assets/theme.css +2 -2
  5. package/dist/components/breadcrumb/breacrumb.js +4 -0
  6. package/dist/components/sliders/sliders.js +4 -0
  7. package/dist/directives/svg-icons.js +170 -0
  8. package/dist/index.js +2 -2
  9. package/dist/pages/avatar/avatar.js +13 -115
  10. package/dist/pages/breadcrumb/breadcrumb.js +12 -0
  11. package/dist/pages/button/button.js +10 -0
  12. package/dist/pages/button-group/button-group.js +10 -0
  13. package/dist/pages/chart/chart.js +257 -0
  14. package/dist/pages/home.js +10 -1
  15. package/dist/pages/paginator/pagination.js +123 -0
  16. package/dist/pages/progress-steps/progress-steps.js +44 -0
  17. package/dist/pages/shadows/shadows.js +7 -0
  18. package/dist/pages/sliders/slider.js +39 -0
  19. package/dist/pages/tabs/tabs.js +9 -0
  20. package/dist/pages/toggle/toggle.js +1 -1
  21. package/dist/pages/tooltip/tooltip.js +1 -1
  22. package/dist/types/components/breadcrumb/breacrumb.d.ts +2 -0
  23. package/dist/types/components/sliders/sliders.d.ts +2 -0
  24. package/dist/types/index.d.ts +1 -1
  25. package/dist/types/pages/breadcrumb/breadcrumb.d.ts +2 -0
  26. package/dist/types/pages/button/button.d.ts +2 -0
  27. package/dist/types/pages/button-group/button-group.d.ts +2 -0
  28. package/dist/types/pages/chart/chart.d.ts +2 -0
  29. package/dist/types/pages/paginator/pagination.d.ts +2 -0
  30. package/dist/types/pages/progress-steps/progress-steps.d.ts +2 -0
  31. package/dist/types/pages/shadows/shadows.d.ts +2 -0
  32. package/dist/types/pages/sliders/slider.d.ts +1 -0
  33. package/dist/types/pages/tabs/tabs.d.ts +3 -0
  34. package/package.json +1 -1
@@ -22,6 +22,7 @@
22
22
  --surface-700: #616161;
23
23
  --surface-800: #424242;
24
24
  --surface-900: #212121;
25
+ --gray-25:#fcfcfd;
25
26
  --gray-50: #f9fafb;
26
27
  --gray-100: #f2f4f7;
27
28
  --gray-200: #eaecf0;
@@ -139,6 +140,7 @@ a {
139
140
  }
140
141
 
141
142
  :root {
143
+ --blue-25:#f1efff;
142
144
  --blue-50: #e3dfff;
143
145
  --blue-100: #d5cfff;
144
146
  --blue-200: #c7bfff;
@@ -149,6 +151,7 @@ a {
149
151
  --blue-700: #3b1eff;
150
152
  --blue-800: #2504ff;
151
153
  --blue-900: #1f00ea;
154
+ --green-25:#f6fef9;
152
155
  --green-50: #ecfdf3;
153
156
  --green-100: #d1fadf;
154
157
  --green-200: #a6f4c5;
@@ -159,6 +162,7 @@ a {
159
162
  --green-700: #027a48;
160
163
  --green-800: #05603a;
161
164
  --green-900: #054f31;
165
+ --yellow-25:#fff4ef;
162
166
  --yellow-50: #fefbf3;
163
167
  --yellow-100: #faedc4;
164
168
  --yellow-200: #f6de95;
@@ -169,6 +173,7 @@ a {
169
173
  --yellow-700: #a47d06;
170
174
  --yellow-800: #816204;
171
175
  --yellow-900: #5e4803;
176
+ --cyan-25:#e5f3ff;
172
177
  --cyan-50: #d5ebff;
173
178
  --cyan-100: #bfe1ff;
174
179
  --cyan-200: #aad8ff;
@@ -189,6 +194,7 @@ a {
189
194
  --pink-700: #a5326b;
190
195
  --pink-800: #822854;
191
196
  --pink-900: #5e1d3d;
197
+ --indigo-25:#f1efff;
192
198
  --indigo-50: #e3dfff;
193
199
  --indigo-100: #d5cfff;
194
200
  --indigo-200: #c7bfff;
@@ -209,6 +215,7 @@ a {
209
215
  --teal-700: #0e8174;
210
216
  --teal-800: #0b655b;
211
217
  --teal-900: #084a42;
218
+ --orange-25:#fffcf5;
212
219
  --orange-50: #fffaeb;
213
220
  --orange-100: #fef0c7;
214
221
  --orange-200: #fedf89;
@@ -239,6 +246,7 @@ a {
239
246
  --purple-700: #763cad;
240
247
  --purple-800: #5c2f88;
241
248
  --purple-900: #432263;
249
+ --red-25:#fffbfa;
242
250
  --red-50: #fef3f2;
243
251
  --red-100: #fee4e2;
244
252
  --red-200: #fecdca;
@@ -249,6 +257,7 @@ a {
249
257
  --red-700: #b42318;
250
258
  --red-800: #912018;
251
259
  --red-900: #7a271a;
260
+ --primary-25:#f5f6fd;
252
261
  --primary-50: #e2e5fa;
253
262
  --primary-100: #ced4f6;
254
263
  --primary-200: #a8b2ef;
@@ -766,7 +775,8 @@ a {
766
775
  line-height: 20px;
767
776
  user-select: none;
768
777
  -webkit-user-select: none;
769
- transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
778
+ transition: background-color 0.2s, color 0.2s, border-color 0.2s,
779
+ box-shadow 0.2s;
770
780
  }
771
781
 
772
782
  .p-checkbox-group:not(.p-group-disabled) .p-header-highlight {
@@ -776,7 +786,9 @@ a {
776
786
  color: var(--primary-800) !important;
777
787
  }
778
788
 
779
- .p-checkbox-group:not(.p-group-disabled):not(.p-group-highlight):has(.p-header-highlight) {
789
+ .p-checkbox-group:not(.p-group-disabled):not(.p-group-highlight):has(
790
+ .p-header-highlight
791
+ ) {
780
792
  border: 1px solid var(--primary-600);
781
793
  }
782
794
 
@@ -806,7 +818,10 @@ a {
806
818
  background: var(--primary-600);
807
819
  }
808
820
 
809
- .p-checkbox-group:not(.p-group-disabled):not(.p-group-highlight):has(.p-header-highlight) #separator {
821
+ .p-checkbox-group:not(.p-group-disabled):not(.p-group-highlight):has(
822
+ .p-header-highlight
823
+ )
824
+ #separator {
810
825
  background: var(--primary-600);
811
826
  }
812
827
 
@@ -826,10 +841,14 @@ a {
826
841
  color: var(--primary-700);
827
842
  }
828
843
 
829
- .p-checkbox-group:not(.p-group-disabled).p-group-highlight .group-text span:first-child {
844
+ .p-checkbox-group:not(.p-group-disabled).p-group-highlight
845
+ .group-text
846
+ span:first-child {
830
847
  color: var(--primary-800) !important;
831
848
  }
832
- .p-checkbox-group:not(.p-group-disabled).p-group-highlight .group-text span:last-child {
849
+ .p-checkbox-group:not(.p-group-disabled).p-group-highlight
850
+ .group-text
851
+ span:last-child {
833
852
  color: var(--primary-700) !important;
834
853
  }
835
854
 
@@ -1356,16 +1375,13 @@ a {
1356
1375
  }
1357
1376
  /* #################################################### Toggle Switch CSS changes START ################################################# */
1358
1377
  .p-inputswitch {
1359
- width: 2.25rem;
1360
- height: 1.25rem;
1361
- }
1362
-
1363
- .p-inputswitch-dark {
1364
1378
  --default-unchecked-bg: var(--gray-100);
1365
1379
  --default-checked-bg: var(--primary-600);
1366
1380
  --hover-unchecked-bg: var(--gray-200);
1367
1381
  --hover-checked-bg: var(--primary-700);
1368
1382
  --focus-unchecked-bg: var(--gray-50);
1383
+ width: 2.25rem;
1384
+ height: 1.25rem;
1369
1385
  }
1370
1386
 
1371
1387
  .p-inputswitch-light {
@@ -1389,7 +1405,8 @@ a {
1389
1405
  left: 1px;
1390
1406
  top: 1px;
1391
1407
  border-radius: 50%;
1392
- box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);
1408
+ box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1),
1409
+ 0px 1px 2px rgba(16, 24, 40, 0.06);
1393
1410
  transition-duration: 0.2s;
1394
1411
  }
1395
1412
  .p-inputswitch.p-inputswitch-checked .p-inputswitch-slider:before {
@@ -2080,7 +2097,7 @@ a {
2080
2097
  height: 0.286rem;
2081
2098
  }
2082
2099
  .p-slider.p-slider-horizontal .p-slider-handle {
2083
- margin-top: -0.5715rem;
2100
+ margin-top: -0.75rem;
2084
2101
  margin-left: -0.5715rem;
2085
2102
  }
2086
2103
  .p-slider.p-slider-vertical {
@@ -2091,10 +2108,10 @@ a {
2091
2108
  margin-bottom: -0.5715rem;
2092
2109
  }
2093
2110
  .p-slider .p-slider-handle {
2094
- height: 1.143rem;
2095
- width: 1.143rem;
2111
+ height: 1.5rem;
2112
+ width: 1.5rem;
2096
2113
  background: #ffffff;
2097
- border: 2px solid #6366f1;
2114
+ border: 1.5px solid var(--primary-500);
2098
2115
  border-radius: 50%;
2099
2116
  transition: background-color 0.2s, color 0.2s, border-color 0.2s,
2100
2117
  box-shadow 0.2s;
@@ -2105,11 +2122,11 @@ a {
2105
2122
  box-shadow: 0 0 0 0.2rem #c7d2fe;
2106
2123
  }
2107
2124
  .p-slider .p-slider-range {
2108
- background: #6366f1;
2125
+ background: var(--primary-500);
2109
2126
  }
2110
2127
  .p-slider:not(.p-disabled) .p-slider-handle:hover {
2111
- background: #6366f1;
2112
- border-color: #6366f1;
2128
+ background: var(--primary-500);
2129
+ border-color: var(--primary-500);
2113
2130
  }
2114
2131
 
2115
2132
  .p-treeselect {
@@ -2283,47 +2300,47 @@ a {
2283
2300
  .p-togglebutton.p-button.p-invalid > .p-button {
2284
2301
  border-color: var(--red-300);
2285
2302
  }
2303
+ /* ##################################### Basic Button CSS changes Start #################################################### */
2286
2304
 
2305
+ /* Default Button Classes */
2287
2306
  .p-button {
2288
2307
  color: #ffffff;
2289
2308
  background: var(--primary-500);
2290
- line-height: 0px !important;
2291
- height: 44px !important;
2292
- padding: 10px 18px;
2293
- font-size: 14px;
2309
+ line-height: 20px;
2310
+ height: 36px;
2311
+ width: auto;
2294
2312
  transition: background-color 0.2s, color 0.2s, border-color 0.2s,
2295
2313
  box-shadow 0.2s;
2296
2314
  border-radius: 8px;
2297
- border: none;
2298
- width: auto;
2299
- }
2300
-
2301
- .p-primary-50 {
2302
- background-color: #e2e5fa;
2303
- color: #162578;
2315
+ border: 1px solid var(--primary-500);
2304
2316
  }
2305
2317
  .p-button:enabled:hover,
2306
2318
  .p-button:not(button):not(a):not(.p-disabled):hover {
2307
2319
  background: var(--primary-700);
2308
2320
  color: #ffffff;
2309
- border-color: var(--gray-900);
2310
2321
  }
2311
2322
  .p-button:enabled:active,
2312
2323
  .p-button:not(button):not(a):not(.p-disabled):active {
2313
- /* background: #4338CA; */
2324
+ background: var(--primary-700);
2314
2325
  color: #ffffff;
2315
- /* border-color: var(--gray-900); */
2316
2326
  }
2327
+ .p-button:focus {
2328
+ outline: 0 none;
2329
+ outline-offset: 0;
2330
+ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px var(--primary-100);
2331
+ border: 1px solid var(--primary-600);
2332
+ }
2333
+
2334
+ /* Outlined Button Classes */
2317
2335
  .p-button.p-button-outlined {
2318
- background-color: transparent;
2319
- color: var(--gray-900);
2320
- border: 1px solid var(--gray-900);
2336
+ background: #ffffff;
2337
+ color: var(--gray-700);
2338
+ border: 1px solid var(--gray-300);
2321
2339
  }
2322
2340
  .p-button.p-button-outlined:enabled:hover,
2323
2341
  .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):hover {
2324
- background: #fff;
2325
- color: var(--gray-900);
2326
- /* border: 1px solid var(--gray-900); */
2342
+ background: var(--gray-50);
2343
+ color: var(--gray-800);
2327
2344
  }
2328
2345
  .p-button.p-button-outlined:enabled:active,
2329
2346
  .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):active {
@@ -2331,63 +2348,41 @@ a {
2331
2348
  color: var(--gray-900);
2332
2349
  border: 1px solid var(--gray-900);
2333
2350
  }
2334
- .p-button.p-button-outlined.p-button-plain {
2335
- color: #6c757d;
2336
- border-color: #6c757d;
2337
- }
2338
- .p-button.p-button-outlined.p-button-plain:enabled:hover,
2339
- .p-button.p-button-outlined.p-button-plain:not(button):not(a):not(
2340
- .p-disabled
2341
- ):hover {
2342
- background: #e9ecef;
2343
- color: #6c757d;
2344
- }
2345
- .p-button.p-button-outlined.p-button-plain:enabled:active,
2346
- .p-button.p-button-outlined.p-button-plain:not(button):not(a):not(
2347
- .p-disabled
2348
- ):active {
2349
- background: #dee2e6;
2350
- color: #6c757d;
2351
+
2352
+ .p-button.p-button-outlined:focus {
2353
+ outline: 0 none;
2354
+ outline-offset: 0;
2355
+ background: #FFFFFF;
2356
+ border: 1px solid var(--gray-300);
2357
+ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px var(--gray-100);
2351
2358
  }
2359
+
2360
+ /* Button with No Background and No Outline */
2352
2361
  .p-button.p-button-text {
2353
2362
  background-color: transparent;
2354
- color: #6366f1;
2363
+ color: var(--gray-600);
2355
2364
  border-color: transparent;
2356
2365
  }
2357
2366
  .p-button.p-button-text:enabled:hover,
2358
2367
  .p-button.p-button-text:not(button):not(a):not(.p-disabled):hover {
2359
- background: rgba(99, 102, 241, 0.04);
2360
- color: #6366f1;
2368
+ background: var(--gray-50);
2369
+ color: var(--gray-700);
2361
2370
  border-color: transparent;
2362
2371
  }
2363
2372
  .p-button.p-button-text:enabled:active,
2364
2373
  .p-button.p-button-text:not(button):not(a):not(.p-disabled):active {
2365
- background: rgba(99, 102, 241, 0.16);
2366
- color: #6366f1;
2374
+ background: var(--gray-50);
2375
+ color: var(--gray-700);
2367
2376
  border-color: transparent;
2368
2377
  }
2369
- .p-button.p-button-text.p-button-plain {
2370
- color: #6c757d;
2371
- }
2372
- .p-button.p-button-text.p-button-plain:enabled:hover,
2373
- .p-button.p-button-text.p-button-plain:not(button):not(a):not(
2374
- .p-disabled
2375
- ):hover {
2376
- background: #e9ecef;
2377
- color: #6c757d;
2378
- }
2379
- .p-button.p-button-text.p-button-plain:enabled:active,
2380
- .p-button.p-button-text.p-button-plain:not(button):not(a):not(
2381
- .p-disabled
2382
- ):active {
2383
- background: #dee2e6;
2384
- color: #6c757d;
2385
- }
2386
- .p-button:focus {
2378
+
2379
+ .p-button.p-button-text:focus {
2387
2380
  outline: 0 none;
2388
2381
  outline-offset: 0;
2389
- /* box-shadow: 0 0 0 0.2rem #C7D2FE; */
2382
+ background: transparent;
2383
+ border-color: transparent;
2390
2384
  }
2385
+
2391
2386
  .p-button .p-button-label {
2392
2387
  transition-duration: 0.2s;
2393
2388
  }
@@ -2419,8 +2414,8 @@ a {
2419
2414
  border-radius: 2rem;
2420
2415
  }
2421
2416
  .p-button.p-button-icon-only {
2422
- width: 3rem;
2423
- padding: 0.75rem 0;
2417
+ width: 2.25rem;
2418
+ padding: 8px;
2424
2419
  }
2425
2420
  .p-button.p-button-icon-only .p-button-icon-left,
2426
2421
  .p-button.p-button-icon-only .p-button-icon-right {
@@ -2509,39 +2504,39 @@ a {
2509
2504
  .p-buttonset.p-button-secondary > .p-button,
2510
2505
  .p-splitbutton.p-button-secondary > .p-button,
2511
2506
  .p-fileupload-choose.p-button-secondary {
2512
- color: #ffffff;
2513
- background: #64748b;
2514
- border: 1px solid #64748b;
2507
+ color: var(--primary-500);
2508
+ background: var(--primary-50);
2509
+ border: 1px solid var(--primary-50);
2515
2510
  }
2516
2511
  .p-button.p-button-secondary:enabled:hover,
2517
2512
  .p-button.p-button-secondary:not(button):not(a):not(.p-disabled):hover,
2518
2513
  .p-buttonset.p-button-secondary > .p-button:enabled:hover,
2519
2514
  .p-buttonset.p-button-secondary
2520
- > .p-button:not(button):not(a):not(.p-disabled):hover,
2515
+ > .p-button:not(button):not(a):not(.p-disabled):hover,
2521
2516
  .p-splitbutton.p-button-secondary > .p-button:enabled:hover,
2522
2517
  .p-splitbutton.p-button-secondary
2523
- > .p-button:not(button):not(a):not(.p-disabled):hover,
2518
+ > .p-button:not(button):not(a):not(.p-disabled):hover,
2524
2519
  .p-fileupload-choose.p-button-secondary:enabled:hover,
2525
2520
  .p-fileupload-choose.p-button-secondary:not(button):not(a):not(
2526
- .p-disabled
2521
+ .p-disabled
2527
2522
  ):hover {
2528
- background: #475569;
2529
- color: #ffffff;
2530
- border-color: #475569;
2531
- }
2523
+ background: var(--primary-100);
2524
+ color: var(--primary-800);
2525
+ border-color: var(--primary-100);
2526
+ }
2532
2527
  .p-button.p-button-secondary:enabled:focus,
2533
2528
  .p-button.p-button-secondary:not(button):not(a):not(.p-disabled):focus,
2534
2529
  .p-buttonset.p-button-secondary > .p-button:enabled:focus,
2535
2530
  .p-buttonset.p-button-secondary
2536
- > .p-button:not(button):not(a):not(.p-disabled):focus,
2531
+ > .p-button:not(button):not(a):not(.p-disabled):focus,
2537
2532
  .p-splitbutton.p-button-secondary > .p-button:enabled:focus,
2538
2533
  .p-splitbutton.p-button-secondary
2539
- > .p-button:not(button):not(a):not(.p-disabled):focus,
2534
+ > .p-button:not(button):not(a):not(.p-disabled):focus,
2540
2535
  .p-fileupload-choose.p-button-secondary:enabled:focus,
2541
2536
  .p-fileupload-choose.p-button-secondary:not(button):not(a):not(
2542
- .p-disabled
2537
+ .p-disabled
2543
2538
  ):focus {
2544
- box-shadow: 0 0 0 0.2rem #e2e8f0;
2539
+ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px var(--primary-100);
2545
2540
  }
2546
2541
  .p-button.p-button-secondary:enabled:active,
2547
2542
  .p-button.p-button-secondary:not(button):not(a):not(.p-disabled):active,
@@ -2550,124 +2545,125 @@ a {
2550
2545
  > .p-button:not(button):not(a):not(.p-disabled):active,
2551
2546
  .p-splitbutton.p-button-secondary > .p-button:enabled:active,
2552
2547
  .p-splitbutton.p-button-secondary
2553
- > .p-button:not(button):not(a):not(.p-disabled):active,
2548
+ > .p-button:not(button):not(a):not(.p-disabled):active,
2554
2549
  .p-fileupload-choose.p-button-secondary:enabled:active,
2555
2550
  .p-fileupload-choose.p-button-secondary:not(button):not(a):not(
2556
- .p-disabled
2551
+ .p-disabled
2557
2552
  ):active {
2558
- background: #334155;
2559
- color: #ffffff;
2560
- border-color: #334155;
2561
- }
2562
- .p-button.p-button-secondary.p-button-outlined,
2563
- .p-buttonset.p-button-secondary > .p-button.p-button-outlined,
2564
- .p-splitbutton.p-button-secondary > .p-button.p-button-outlined,
2565
- .p-fileupload-choose.p-button-secondary.p-button-outlined {
2566
- background-color: transparent;
2567
- color: #344054;
2568
- border: 1px solid #d0d5dd;
2569
- height: 44px !important;
2570
- }
2571
- .p-button.p-button-secondary.p-button-outlined:enabled:hover,
2572
- .p-button.p-button-secondary.p-button-outlined:not(button):not(a):not(
2573
- .p-disabled
2574
- ):hover,
2575
- .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:hover,
2576
- .p-buttonset.p-button-secondary
2577
- > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):hover,
2578
- .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:hover,
2579
- .p-splitbutton.p-button-secondary
2580
- > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):hover,
2581
- .p-fileupload-choose.p-button-secondary.p-button-outlined:enabled:hover,
2582
- .p-fileupload-choose.p-button-secondary.p-button-outlined:not(button):not(
2583
- a
2584
- ):not(.p-disabled):hover {
2585
- background: rgba(100, 116, 139, 0.04);
2586
- color: #344054;
2587
- border: 1px solid #d0d5dd;
2588
- }
2589
- .p-button.p-button-secondary.p-button-outlined:enabled:active,
2590
- .p-button.p-button-secondary.p-button-outlined:not(button):not(a):not(
2553
+ background: var(--primary-100);
2554
+ color: var(--primary-800);
2555
+ border-color: var(--primary-100);
2556
+ }
2557
+ .p-button.p-button-secondary.p-button-outlined,
2558
+ .p-buttonset.p-button-secondary > .p-button.p-button-outlined,
2559
+ .p-splitbutton.p-button-secondary > .p-button.p-button-outlined,
2560
+ .p-fileupload-choose.p-button-secondary.p-button-outlined {
2561
+ background-color: transparent;
2562
+ color: #344054;
2563
+ border: 1px solid #d0d5dd;
2564
+ height: 44px !important;
2565
+ }
2566
+ .p-button.p-button-secondary.p-button-outlined:enabled:hover,
2567
+ .p-button.p-button-secondary.p-button-outlined:not(button):not(a):not(
2591
2568
  .p-disabled
2592
- ):active,
2593
- .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:active,
2594
- .p-buttonset.p-button-secondary
2595
- > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):active,
2596
- .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:active,
2597
- .p-splitbutton.p-button-secondary
2598
- > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):active,
2599
- .p-fileupload-choose.p-button-secondary.p-button-outlined:enabled:active,
2600
- .p-fileupload-choose.p-button-secondary.p-button-outlined:not(button):not(
2601
- a
2569
+ ):hover,
2570
+ .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:hover,
2571
+ .p-buttonset.p-button-secondary
2572
+ > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):hover,
2573
+ .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:hover,
2574
+ .p-splitbutton.p-button-secondary
2575
+ > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):hover,
2576
+ .p-fileupload-choose.p-button-secondary.p-button-outlined:enabled:hover,
2577
+ .p-fileupload-choose.p-button-secondary.p-button-outlined:not(button):not(
2578
+ a
2579
+ ):not(.p-disabled):hover {
2580
+ background: rgba(100, 116, 139, 0.04);
2581
+ color: #344054;
2582
+ border: 1px solid #d0d5dd;
2583
+ }
2584
+ .p-button.p-button-secondary.p-button-outlined:enabled:active,
2585
+ .p-button.p-button-secondary.p-button-outlined:not(button):not(a):not(
2586
+ .p-disabled
2587
+ ):active,
2588
+ .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:active,
2589
+ .p-buttonset.p-button-secondary
2590
+ > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):active,
2591
+ .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:active,
2592
+ .p-splitbutton.p-button-secondary
2593
+ > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):active,
2594
+ .p-fileupload-choose.p-button-secondary.p-button-outlined:enabled:active,
2595
+ .p-fileupload-choose.p-button-secondary.p-button-outlined:not(button):not(
2596
+ a
2602
2597
  ):not(.p-disabled):active {
2603
- background: rgba(100, 116, 139, 0.16);
2604
- color: #64748b;
2605
- border: 1px solid;
2606
- }
2607
- .p-button.p-button-secondary.p-button-text,
2608
- .p-buttonset.p-button-secondary > .p-button.p-button-text,
2609
- .p-splitbutton.p-button-secondary > .p-button.p-button-text,
2610
- .p-fileupload-choose.p-button-secondary.p-button-text {
2611
- background-color: transparent;
2612
- color: #64748b;
2613
- border-color: transparent;
2614
- }
2615
- .p-button.p-button-secondary.p-button-text:enabled:hover,
2616
- .p-button.p-button-secondary.p-button-text:not(button):not(a):not(
2598
+ background: rgba(100, 116, 139, 0.16);
2599
+ color: #64748b;
2600
+ border: 1px solid;
2601
+ }
2602
+ .p-button.p-button-secondary.p-button-text,
2603
+ .p-buttonset.p-button-secondary > .p-button.p-button-text,
2604
+ .p-splitbutton.p-button-secondary > .p-button.p-button-text,
2605
+ .p-fileupload-choose.p-button-secondary.p-button-text {
2606
+ background-color: transparent;
2607
+ color: #64748b;
2608
+ border-color: transparent;
2609
+ }
2610
+ .p-button.p-button-secondary.p-button-text:enabled:hover,
2611
+ .p-button.p-button-secondary.p-button-text:not(button):not(a):not(
2617
2612
  .p-disabled
2618
- ):hover,
2619
- .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:hover,
2620
- .p-buttonset.p-button-secondary
2621
- > .p-button.p-button-text:not(button):not(a):not(.p-disabled):hover,
2622
- .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:hover,
2613
+ ):hover,
2614
+ .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:hover,
2615
+ .p-buttonset.p-button-secondary
2616
+ > .p-button.p-button-text:not(button):not(a):not(.p-disabled):hover,
2617
+ .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:hover,
2623
2618
  .p-splitbutton.p-button-secondary
2624
2619
  > .p-button.p-button-text:not(button):not(a):not(.p-disabled):hover,
2625
- .p-fileupload-choose.p-button-secondary.p-button-text:enabled:hover,
2626
- .p-fileupload-choose.p-button-secondary.p-button-text:not(button):not(a):not(
2620
+ .p-fileupload-choose.p-button-secondary.p-button-text:enabled:hover,
2621
+ .p-fileupload-choose.p-button-secondary.p-button-text:not(button):not(a):not(
2627
2622
  .p-disabled
2628
- ):hover {
2629
- background: rgba(100, 116, 139, 0.04);
2630
- border-color: transparent;
2631
- color: #64748b;
2632
- }
2633
- .p-button.p-button-secondary.p-button-text:enabled:active,
2634
- .p-button.p-button-secondary.p-button-text:not(button):not(a):not(
2623
+ ):hover {
2624
+ background: rgba(100, 116, 139, 0.04);
2625
+ border-color: transparent;
2626
+ color: #64748b;
2627
+ }
2628
+ .p-button.p-button-secondary.p-button-text:enabled:active,
2629
+ .p-button.p-button-secondary.p-button-text:not(button):not(a):not(
2635
2630
  .p-disabled
2636
2631
  ):active,
2637
2632
  .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:active,
2638
2633
  .p-buttonset.p-button-secondary
2639
- > .p-button.p-button-text:not(button):not(a):not(.p-disabled):active,
2634
+ > .p-button.p-button-text:not(button):not(a):not(.p-disabled):active,
2640
2635
  .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:active,
2641
2636
  .p-splitbutton.p-button-secondary
2642
- > .p-button.p-button-text:not(button):not(a):not(.p-disabled):active,
2637
+ > .p-button.p-button-text:not(button):not(a):not(.p-disabled):active,
2643
2638
  .p-fileupload-choose.p-button-secondary.p-button-text:enabled:active,
2644
2639
  .p-fileupload-choose.p-button-secondary.p-button-text:not(button):not(a):not(
2645
- .p-disabled
2640
+ .p-disabled
2646
2641
  ):active {
2647
- background: rgba(100, 116, 139, 0.16);
2648
- border-color: transparent;
2649
- color: #64748b;
2650
- }
2651
-
2652
- .p-button.p-button-info,
2653
- .p-buttonset.p-button-info > .p-button,
2654
- .p-splitbutton.p-button-info > .p-button,
2655
- .p-fileupload-choose.p-button-info {
2656
- color: #ffffff;
2657
- background: #3b82f6;
2658
- border: 1px solid #3b82f6;
2659
- }
2660
- .p-button.p-button-info:enabled:hover,
2661
- .p-button.p-button-info:not(button):not(a):not(.p-disabled):hover,
2662
- .p-buttonset.p-button-info > .p-button:enabled:hover,
2663
- .p-buttonset.p-button-info
2642
+ background: rgba(100, 116, 139, 0.16);
2643
+ border-color: transparent;
2644
+ color: #64748b;
2645
+ }
2646
+ /* ##################################### Basic Button CSS changes END #################################################### */
2647
+
2648
+ .p-button.p-button-info,
2649
+ .p-buttonset.p-button-info > .p-button,
2650
+ .p-splitbutton.p-button-info > .p-button,
2651
+ .p-fileupload-choose.p-button-info {
2652
+ color: #ffffff;
2653
+ background: #3b82f6;
2654
+ border: 1px solid #3b82f6;
2655
+ }
2656
+ .p-button.p-button-info:enabled:hover,
2657
+ .p-button.p-button-info:not(button):not(a):not(.p-disabled):hover,
2658
+ .p-buttonset.p-button-info > .p-button:enabled:hover,
2659
+ .p-buttonset.p-button-info
2664
2660
  > .p-button:not(button):not(a):not(.p-disabled):hover,
2665
- .p-splitbutton.p-button-info > .p-button:enabled:hover,
2666
- .p-splitbutton.p-button-info
2661
+ .p-splitbutton.p-button-info > .p-button:enabled:hover,
2662
+ .p-splitbutton.p-button-info
2667
2663
  > .p-button:not(button):not(a):not(.p-disabled):hover,
2668
- .p-fileupload-choose.p-button-info:enabled:hover,
2669
- .p-fileupload-choose.p-button-info:not(button):not(a):not(.p-disabled):hover {
2670
- background: #2563eb;
2664
+ .p-fileupload-choose.p-button-info:enabled:hover,
2665
+ .p-fileupload-choose.p-button-info:not(button):not(a):not(.p-disabled):hover {
2666
+ background: #2563eb;
2671
2667
  color: #ffffff;
2672
2668
  border-color: #2563eb;
2673
2669
  }
@@ -3204,14 +3200,14 @@ a {
3204
3200
  border-color: transparent;
3205
3201
  color: #a855f7;
3206
3202
  }
3207
-
3203
+ /* Button Changes Done Here For Danger Button */
3208
3204
  .p-button.p-button-danger,
3209
3205
  .p-buttonset.p-button-danger > .p-button,
3210
3206
  .p-splitbutton.p-button-danger > .p-button,
3211
3207
  .p-fileupload-choose.p-button-danger {
3212
3208
  color: #ffffff;
3213
- background: #ef4444;
3214
- border: 1px solid #ef4444;
3209
+ background: var(--red-600);
3210
+ border: 1px solid var(--red-600);
3215
3211
  }
3216
3212
  .p-button.p-button-danger:enabled:hover,
3217
3213
  .p-button.p-button-danger:not(button):not(a):not(.p-disabled):hover,
@@ -3223,9 +3219,9 @@ a {
3223
3219
  > .p-button:not(button):not(a):not(.p-disabled):hover,
3224
3220
  .p-fileupload-choose.p-button-danger:enabled:hover,
3225
3221
  .p-fileupload-choose.p-button-danger:not(button):not(a):not(.p-disabled):hover {
3226
- background: #dc2626;
3227
3222
  color: #ffffff;
3228
- border-color: #dc2626;
3223
+ background: var(--red-700);
3224
+ border: 1px solid var(--red-700);
3229
3225
  }
3230
3226
  .p-button.p-button-danger:enabled:focus,
3231
3227
  .p-button.p-button-danger:not(button):not(a):not(.p-disabled):focus,
@@ -3237,7 +3233,7 @@ a {
3237
3233
  > .p-button:not(button):not(a):not(.p-disabled):focus,
3238
3234
  .p-fileupload-choose.p-button-danger:enabled:focus,
3239
3235
  .p-fileupload-choose.p-button-danger:not(button):not(a):not(.p-disabled):focus {
3240
- box-shadow: 0 0 0 0.2rem #fecaca;
3236
+ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px var(--red-100);
3241
3237
  }
3242
3238
  .p-button.p-button-danger:enabled:active,
3243
3239
  .p-button.p-button-danger:not(button):not(a):not(.p-disabled):active,
@@ -3251,17 +3247,72 @@ a {
3251
3247
  .p-fileupload-choose.p-button-danger:not(button):not(a):not(
3252
3248
  .p-disabled
3253
3249
  ):active {
3254
- background: #b91c1c;
3255
- color: #ffffff;
3256
- border-color: #b91c1c;
3250
+ color: #ffffff;
3251
+ background: var(--red-700);
3252
+ border: 1px solid var(--red-700);
3253
+ }
3254
+ /* Error Secondary color CSS changes Start */
3255
+ .p-button.p-button-danger-secondary,
3256
+ .p-buttonset.p-button-danger-secondary > .p-button,
3257
+ .p-splitbutton.p-button-danger-secondary > .p-button,
3258
+ .p-fileupload-choose.p-button-danger-secondary {
3259
+ background: var(--red-50);
3260
+ border: 1px solid var(--red-50);
3261
+ color: var(--red-700);
3262
+ }
3263
+
3264
+ .p-button.p-button-danger-secondary:enabled:hover,
3265
+ .p-button.p-button-danger-secondary:not(button):not(a):not(.p-disabled):hover,
3266
+ .p-buttonset.p-button-danger-secondary > .p-button:enabled:hover,
3267
+ .p-buttonset.p-button-danger-secondary
3268
+ > .p-button:not(button):not(a):not(.p-disabled):hover,
3269
+ .p-splitbutton.p-button-danger-secondary > .p-button:enabled:hover,
3270
+ .p-splitbutton.p-button-danger-secondary
3271
+ > .p-button:not(button):not(a):not(.p-disabled):hover,
3272
+ .p-fileupload-choose.p-button-danger-secondary:enabled:hover,
3273
+ .p-fileupload-choose.p-button-danger-secondary:not(button):not(a):not(.p-disabled):hover {
3274
+ background: var(--red-100);
3275
+ border: 1px solid var(--red-100);
3276
+ color: var(--red-800);
3277
+ }
3278
+
3279
+ .p-button.p-button-danger-secondary:enabled:active,
3280
+ .p-button.p-button-danger-secondary:not(button):not(a):not(.p-disabled):active,
3281
+ .p-buttonset.p-button-danger-secondary > .p-button:enabled:active,
3282
+ .p-buttonset.p-button-danger-secondary
3283
+ > .p-button:not(button):not(a):not(.p-disabled):active,
3284
+ .p-splitbutton.p-button-danger-secondary > .p-button:enabled:active,
3285
+ .p-splitbutton.p-button-danger-secondary
3286
+ > .p-button:not(button):not(a):not(.p-disabled):active,
3287
+ .p-fileupload-choose.p-button-danger-secondary:enabled:active,
3288
+ .p-fileupload-choose.p-button-danger-secondary:not(button):not(a):not(
3289
+ .p-disabled
3290
+ ):active {
3291
+ background: var(--red-100);
3292
+ border: 1px solid var(--red-100);
3293
+ color: var(--red-800);
3294
+ }
3295
+
3296
+ .p-button.p-button-danger-secondary:enabled:focus,
3297
+ .p-button.p-button-danger-secondary:not(button):not(a):not(.p-disabled):focus,
3298
+ .p-buttonset.p-button-danger-secondary > .p-button:enabled:focus,
3299
+ .p-buttonset.p-button-danger-secondary
3300
+ > .p-button:not(button):not(a):not(.p-disabled):focus,
3301
+ .p-splitbutton.p-button-danger-secondary > .p-button:enabled:focus,
3302
+ .p-splitbutton.p-button-danger-secondary
3303
+ > .p-button:not(button):not(a):not(.p-disabled):focus,
3304
+ .p-fileupload-choose.p-button-danger-secondary:enabled:focus,
3305
+ .p-fileupload-choose.p-button-danger-secondary:not(button):not(a):not(.p-disabled):focus {
3306
+ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px var(--red-100);
3257
3307
  }
3308
+
3258
3309
  .p-button.p-button-danger.p-button-outlined,
3259
3310
  .p-buttonset.p-button-danger > .p-button.p-button-outlined,
3260
3311
  .p-splitbutton.p-button-danger > .p-button.p-button-outlined,
3261
3312
  .p-fileupload-choose.p-button-danger.p-button-outlined {
3262
3313
  background-color: transparent;
3263
- color: #ef4444;
3264
- border: 1px solid;
3314
+ color: var(--red-700);
3315
+ border: 1px solid var(--red-300);
3265
3316
  }
3266
3317
  .p-button.p-button-danger.p-button-outlined:enabled:hover,
3267
3318
  .p-button.p-button-danger.p-button-outlined:not(button):not(a):not(
@@ -3277,9 +3328,9 @@ a {
3277
3328
  .p-fileupload-choose.p-button-danger.p-button-outlined:not(button):not(a):not(
3278
3329
  .p-disabled
3279
3330
  ):hover {
3280
- background: rgba(239, 68, 68, 0.04);
3281
- color: #ef4444;
3282
- border: 1px solid;
3331
+ background: var(--red-50);
3332
+ color: var(--red-800);
3333
+ border: 1px solid var(--red-300);
3283
3334
  }
3284
3335
  .p-button.p-button-danger.p-button-outlined:enabled:active,
3285
3336
  .p-button.p-button-danger.p-button-outlined:not(button):not(a):not(
@@ -3295,16 +3346,16 @@ a {
3295
3346
  .p-fileupload-choose.p-button-danger.p-button-outlined:not(button):not(a):not(
3296
3347
  .p-disabled
3297
3348
  ):active {
3298
- background: rgba(239, 68, 68, 0.16);
3299
- color: #ef4444;
3300
- border: 1px solid;
3349
+ background: var(--red-50);
3350
+ color: var(--red-800);
3351
+ border: 1px solid var(--red-300);
3301
3352
  }
3302
3353
  .p-button.p-button-danger.p-button-text,
3303
3354
  .p-buttonset.p-button-danger > .p-button.p-button-text,
3304
3355
  .p-splitbutton.p-button-danger > .p-button.p-button-text,
3305
3356
  .p-fileupload-choose.p-button-danger.p-button-text {
3306
3357
  background-color: transparent;
3307
- color: #ef4444;
3358
+ color: var(--red-700);
3308
3359
  border-color: transparent;
3309
3360
  }
3310
3361
  .p-button.p-button-danger.p-button-text:enabled:hover,
@@ -3321,9 +3372,9 @@ a {
3321
3372
  .p-fileupload-choose.p-button-danger.p-button-text:not(button):not(a):not(
3322
3373
  .p-disabled
3323
3374
  ):hover {
3324
- background: rgba(239, 68, 68, 0.04);
3375
+ background: var(--red-50);
3325
3376
  border-color: transparent;
3326
- color: #ef4444;
3377
+ color: var(--red-700);
3327
3378
  }
3328
3379
  .p-button.p-button-danger.p-button-text:enabled:active,
3329
3380
  .p-button.p-button-danger.p-button-text:not(button):not(a):not(
@@ -3339,11 +3390,17 @@ a {
3339
3390
  .p-fileupload-choose.p-button-danger.p-button-text:not(button):not(a):not(
3340
3391
  .p-disabled
3341
3392
  ):active {
3342
- background: rgba(239, 68, 68, 0.16);
3393
+ background: var(--red-50);
3343
3394
  border-color: transparent;
3344
- color: #ef4444;
3395
+ color: var(--red-700);
3345
3396
  }
3346
3397
 
3398
+ .p-button.p-button-danger.p-button-text:focus {
3399
+ box-shadow: none !important;
3400
+ background: transparent;
3401
+ border-color: transparent;
3402
+ }
3403
+ /* Error Secondary color CSS changes END */
3347
3404
  .p-button.p-button-link {
3348
3405
  color: var(--gray-900);
3349
3406
  background: transparent;
@@ -4917,7 +4974,7 @@ a {
4917
4974
  }
4918
4975
  .p-paginator .p-dropdown {
4919
4976
  margin-left: 0.5rem;
4920
- height: auto;
4977
+
4921
4978
  border: none;
4922
4979
  }
4923
4980
  .p-paginator .p-dropdown .p-dropdown-label {
@@ -4952,11 +5009,13 @@ a {
4952
5009
  border-radius: 50%;
4953
5010
  }
4954
5011
  .p-paginator .p-paginator-pages .p-paginator-page.p-highlight {
4955
- /* background: #EEF2FF;
4956
- border-color: var(--gray-900); */
4957
- font-weight: 600;
4958
- color: var(--gray-900);
4959
- font-size: 12px;
5012
+ background: var(--gray-50);
5013
+ /* border-color: var(--gray-50); */
5014
+ font-weight: 500;
5015
+ color: var(--gray-800);
5016
+ line-height: 20px;
5017
+
5018
+ font-size: 14px;
4960
5019
  }
4961
5020
  .p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover {
4962
5021
  background: #e9ecef;
@@ -5634,7 +5693,7 @@ a {
5634
5693
  border-width: 0 0 2px 0;
5635
5694
  border-color: transparent transparent #dee2e6 transparent;
5636
5695
  background: #ffffff;
5637
- color: #6b7094;
5696
+ color: var(--gray-500);
5638
5697
  padding: 10px;
5639
5698
  font-weight: 500; /* changed to 500 */
5640
5699
  /* font-weight: 700; */
@@ -5670,7 +5729,7 @@ a {
5670
5729
 
5671
5730
  .p-tabview .p-tabview-nav li.p-highlight .p-tabview-nav-link {
5672
5731
  background: #ffffff;
5673
- color: var(--gray-900); /* color changed */
5732
+ color: var(--primary-700); /* color changed */
5674
5733
  position: relative;
5675
5734
  transition: 500ms cubic-bezier(0.35, 0, 0.25, 1);
5676
5735
  }
@@ -5910,10 +5969,11 @@ a {
5910
5969
  /* ############################# Tooltip changes From HERE ############################# */
5911
5970
 
5912
5971
  /* Added theme switching classes that switch the background color and text color of tooltip */
5913
- .p-tooltip.p-dark-tooltip {
5972
+ .p-tooltip {
5914
5973
  --background-color: var(--gray-900);
5915
5974
  --tooltip-text-color: #ffffff;
5916
5975
  }
5976
+
5917
5977
  .p-tooltip.p-light-tooltip {
5918
5978
  --background-color: #ffffff;
5919
5979
  --tooltip-text-color: var(--gray-700);
@@ -5979,9 +6039,9 @@ a {
5979
6039
 
5980
6040
  .p-breadcrumb {
5981
6041
  background: #ffffff;
5982
- border: 1px solid #dee2e6;
5983
- border-radius: 6px;
5984
- padding: 1rem;
6042
+ /* border: 1px solid #dee2e6;
6043
+ border-radius: 6px; */
6044
+ padding: 4px;
5985
6045
  }
5986
6046
  .p-breadcrumb ul li .p-menuitem-link {
5987
6047
  transition: box-shadow 0.2s;
@@ -5993,7 +6053,7 @@ a {
5993
6053
  box-shadow: 0 0 0 0.2rem #c7d2fe;
5994
6054
  }
5995
6055
  .p-breadcrumb ul li .p-menuitem-link .p-menuitem-text {
5996
- color: #495057;
6056
+ color: var(--gray-600);
5997
6057
  }
5998
6058
  .p-breadcrumb ul li .p-menuitem-link .p-menuitem-icon {
5999
6059
  color: #6c757d;
@@ -6003,7 +6063,7 @@ a {
6003
6063
  color: #495057;
6004
6064
  }
6005
6065
  .p-breadcrumb ul li:last-child .p-menuitem-text {
6006
- color: #495057;
6066
+ color: var(--primary-700);
6007
6067
  }
6008
6068
  .p-breadcrumb ul li:last-child .p-menuitem-icon {
6009
6069
  color: #6c757d;
@@ -7146,7 +7206,7 @@ a {
7146
7206
  }
7147
7207
  .p-steps .p-steps-item:before {
7148
7208
  content: " ";
7149
- border-top: 1px solid #dee2e6;
7209
+ border-top: 2px solid var(--primary-600);
7150
7210
  width: 100%;
7151
7211
  top: 50%;
7152
7212
  left: 0;
@@ -7923,11 +7983,10 @@ a {
7923
7983
  z-index: 1;
7924
7984
  display: block;
7925
7985
  position: absolute;
7926
- background: var(--gray-900);
7927
- height: 4px;
7986
+ background: var(--primary-700);
7987
+ height: 2px;
7928
7988
  bottom: 0;
7929
- border-top-left-radius: 4px;
7930
- border-top-right-radius: 4px;
7989
+
7931
7990
  transition: 500ms cubic-bezier(0.35, 0, 0.25, 1);
7932
7991
  }
7933
7992
 
@@ -7943,7 +8002,8 @@ a {
7943
8002
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #b1b3f8, 0 1px 2px 0 black;
7944
8003
  } */
7945
8004
  .p-button.p-button-secondary:enabled:focus {
7946
- box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #b0b9c6, 0 1px 2px 0 black;
8005
+ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px var(--primary-100);
8006
+ /* Changed the box shadow for Secondary Button */
7947
8007
  }
7948
8008
  .p-button.p-button-success:enabled:focus {
7949
8009
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #88eaac, 0 1px 2px 0 black;
@@ -7959,7 +8019,7 @@ a {
7959
8019
  box-shadow: none;
7960
8020
  }
7961
8021
  .p-button.p-button-danger:enabled:focus {
7962
- box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #f7a2a2, 0 1px 2px 0 black;
8022
+ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px var(--red-100);
7963
8023
  }
7964
8024
 
7965
8025
  .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
@@ -7999,11 +8059,11 @@ a {
7999
8059
  .p-paginator .p-paginator-prev,
8000
8060
  .p-paginator .p-paginator-next,
8001
8061
  .p-paginator .p-dropdown .p-dropdown-trigger {
8002
- min-width: 18px;
8003
- max-width: 18px;
8004
- height: 18px;
8005
- font-size: 12px;
8006
- color: #444b74;
8062
+ min-width: 44px;
8063
+ max-width: 44px;
8064
+ height: 44px;
8065
+ font-size: 14px;
8066
+ color: var(--gray-800);
8007
8067
  }
8008
8068
 
8009
8069
  .p-paginator .p-paginator-prev .pi.pi-angle-left {
@@ -8016,7 +8076,7 @@ a {
8016
8076
 
8017
8077
  .p-paginator .p-dropdown .p-dropdown-label {
8018
8078
  padding-left: 6px;
8019
- font-size: 12px;
8079
+ font-size: 14px;
8020
8080
  }
8021
8081
 
8022
8082
  .p-paginator span.p-dropdown-trigger-icon.p-clickable.pi.pi-chevron-down {
@@ -8176,3 +8236,167 @@ input[type="number"]::-webkit-outer-spin-button {
8176
8236
  -webkit-appearance: none;
8177
8237
  margin: 0;
8178
8238
  }
8239
+
8240
+ /* New button classes added for different Size Variations ++++++++++++++++++++++++++++ */
8241
+
8242
+ .p-button.p-button-dual-icon {
8243
+ width: 157px !important;
8244
+ padding: 10px 18px;
8245
+ font-size: 14px;
8246
+ }
8247
+
8248
+ .p-button.p-button-xs {
8249
+ height: 32px !important;
8250
+ line-height: 20px !important;
8251
+ font-size: 14px !important;
8252
+ }
8253
+ .p-button.p-button-dual-icon.p-button-xs {
8254
+ width: 157px !important;
8255
+ padding: 6px 14px !important;
8256
+ }
8257
+ .p-button.p-button-icon-only.p-button-xs {
8258
+ padding: 8px !important;
8259
+ }
8260
+
8261
+ .p-button.p-button-sm {
8262
+ height: 40px !important;
8263
+ line-height: 20px !important;
8264
+ font-size: 14px !important;
8265
+ }
8266
+ .p-button.p-button-dual-icon.p-button-sm {
8267
+ width: 161px !important;
8268
+ padding: 10px 16px !important;
8269
+ }
8270
+ .p-button.p-button-icon-only.p-button-sm {
8271
+ padding: 10px !important;
8272
+ }
8273
+
8274
+ .p-button.p-button-md {
8275
+ height: 44px !important;
8276
+ line-height: 24px !important;
8277
+ font-size: 16px !important;
8278
+ }
8279
+ .p-button.p-button-dual-icon.p-button-md {
8280
+ width: 175px !important;
8281
+ padding: 10px 14px !important;
8282
+ }
8283
+ .p-button.p-button-icon-only.p-button-md {
8284
+ padding: 12px !important;
8285
+ }
8286
+
8287
+ .p-button.p-button-lg {
8288
+ height: 48px !important;
8289
+ line-height: 24px !important;
8290
+ font-size: 16px !important;
8291
+ }
8292
+ .p-button.p-button-dual-icon.p-button-lg{
8293
+ width: 179px !important;
8294
+ padding: 12px 20px !important;
8295
+ }
8296
+ .p-button.p-button-icon-only.p-button-lg {
8297
+ padding: 14px !important;
8298
+ }
8299
+
8300
+ .p-button.p-button-xl {
8301
+ height: 60px !important;
8302
+ line-height: 28px !important;
8303
+ font-size: 18px !important;
8304
+ }
8305
+ .p-button.p-button-dual-icon.p-button-xl {
8306
+ width: 221px !important;
8307
+ padding: 16px 28px !important;
8308
+ }
8309
+ .p-button.p-button-icon-only.p-button-xl {
8310
+ padding: 16px !important;
8311
+ }
8312
+
8313
+ /* Social Button classes */
8314
+ /* Google */
8315
+ .p-button.p-button-google {
8316
+ background: #ffffff;
8317
+ border: 1px solid var(--gray-300);
8318
+ color: var(--gray-700);
8319
+ }
8320
+ .p-button.p-button-google:enabled:hover {
8321
+ background: var(--gray-50);
8322
+ color: var(--gray-700);
8323
+ }
8324
+ .p-button.p-button-google:focus {
8325
+ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px var(--gray-100);
8326
+ }
8327
+ /* Facebook */
8328
+ .p-button.p-button-facebook {
8329
+ background: #1877F2;
8330
+ border: none;
8331
+ color: #ffffff;
8332
+ }
8333
+ .p-button.p-button-facebook:enabled:hover {
8334
+ background: #0C63D4;
8335
+ color: #ffffff;
8336
+ }
8337
+ .p-button.p-button-facebook:focus {
8338
+ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px var(--gray-100);
8339
+ }
8340
+ /* Apple */
8341
+ .p-button.p-button-apple {
8342
+ background: #000000;
8343
+ border: none;
8344
+ color: #ffffff;
8345
+ }
8346
+ .p-button.p-button-apple:enabled:hover {
8347
+ background: #000000;
8348
+ color: #ffffff;
8349
+ }
8350
+ .p-button.p-button-apple:focus {
8351
+ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px var(--gray-100);
8352
+ }
8353
+ /* Twitter */
8354
+ .p-button.p-button-twitter {
8355
+ background: #1DA1F2;
8356
+ border: none;
8357
+ color: #ffffff;
8358
+ }
8359
+ .p-button.p-button-twitter:enabled:hover {
8360
+ background: #0C8BD9;
8361
+ color: #ffffff;
8362
+ }
8363
+ .p-button.p-button-twitter:focus {
8364
+ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px var(--gray-100);
8365
+ }
8366
+
8367
+ /* pagination classes */
8368
+ @media screen and (min-width: 768px) {
8369
+ .p-paginator-pages {
8370
+ display: flex;
8371
+ }
8372
+ }
8373
+
8374
+ @media screen and (max-width: 768px) {
8375
+ .p-paginator-pages {
8376
+ display: none;
8377
+ }
8378
+ .paginator-boxes > .p-paginator-pages {
8379
+ display: flex;
8380
+ }
8381
+ }
8382
+ .bg-square .p-paginator-pages .p-paginator-page.p-highlight {
8383
+ border-radius: 8px;
8384
+ }
8385
+
8386
+ .paginator-boxes > .p-paginator-pages .p-paginator-page {
8387
+ margin: 0px !important;
8388
+ border-radius: 0px !important;
8389
+ border-style: solid !important;
8390
+ }
8391
+ .paginator-boxes > .p-paginator-pages {
8392
+ position: relative;
8393
+ top: 0px !important;
8394
+ }
8395
+ .last-item-bg-color ul li:last-child {
8396
+ background-color: var(--primary-50);
8397
+ border-radius: 6px;
8398
+ }
8399
+ .last-item-bg-color-gray-50 ul li:last-child {
8400
+ background-color: var(--gray-50);
8401
+ border-radius: 6px;
8402
+ }