@keenmate/pure-admin-core 1.0.0-rc02 → 1.0.0-rc04
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/README.md +14 -26
- package/dist/css/main.css +1143 -202
- package/package.json +1 -1
- package/snippets/badges.html +7 -6
- package/snippets/buttons.html +15 -13
- package/snippets/callouts.html +129 -0
- package/snippets/profile.html +115 -6
- package/snippets/tabs.html +47 -17
- package/snippets/tooltips.html +1 -1
- package/src/scss/_base-css-variables.scss +14 -0
- package/src/scss/_core.scss +3 -0
- package/src/scss/core-components/_buttons.scss +0 -54
- package/src/scss/core-components/_callouts.scss +139 -0
- package/src/scss/core-components/_profile.scss +39 -13
- package/src/scss/core-components/_tables.scss +0 -13
- package/src/scss/core-components/_tabs.scss +16 -83
- package/src/scss/core-components/_utilities.scss +53 -0
- package/src/scss/core-components/badges/_badge-base.scss +0 -21
- package/src/scss/utilities.scss +260 -84
- package/src/scss/variables/_colors.scss +15 -0
- package/src/scss/variables/_components.scss +19 -15
package/src/scss/utilities.scss
CHANGED
|
@@ -254,94 +254,49 @@ $spacers: (
|
|
|
254
254
|
white-space: nowrap !important;
|
|
255
255
|
}
|
|
256
256
|
|
|
257
|
-
// Width utilities
|
|
258
|
-
.w-
|
|
259
|
-
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
.w-
|
|
263
|
-
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
.w-
|
|
267
|
-
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
.w-
|
|
271
|
-
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
.w-
|
|
275
|
-
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
.w-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
.w-
|
|
283
|
-
width: auto !important;
|
|
284
|
-
}
|
|
257
|
+
// Width utilities (5% increments)
|
|
258
|
+
.w-5 { width: 5% !important; }
|
|
259
|
+
.w-10 { width: 10% !important; }
|
|
260
|
+
.w-15 { width: 15% !important; }
|
|
261
|
+
.w-20 { width: 20% !important; }
|
|
262
|
+
.w-25 { width: 25% !important; }
|
|
263
|
+
.w-30 { width: 30% !important; }
|
|
264
|
+
.w-35 { width: 35% !important; }
|
|
265
|
+
.w-40 { width: 40% !important; }
|
|
266
|
+
.w-45 { width: 45% !important; }
|
|
267
|
+
.w-50 { width: 50% !important; }
|
|
268
|
+
.w-55 { width: 55% !important; }
|
|
269
|
+
.w-60 { width: 60% !important; }
|
|
270
|
+
.w-65 { width: 65% !important; }
|
|
271
|
+
.w-70 { width: 70% !important; }
|
|
272
|
+
.w-75 { width: 75% !important; }
|
|
273
|
+
.w-80 { width: 80% !important; }
|
|
274
|
+
.w-85 { width: 85% !important; }
|
|
275
|
+
.w-90 { width: 90% !important; }
|
|
276
|
+
.w-95 { width: 95% !important; }
|
|
277
|
+
.w-100 { width: 100% !important; }
|
|
278
|
+
.w-auto { width: auto !important; }
|
|
279
|
+
|
|
280
|
+
// Width utilities (fractions) - matches grid naming: pa-col-1-3, pa-col-2-3
|
|
281
|
+
.w-1-3 { width: 33.333333% !important; }
|
|
282
|
+
.w-2-3 { width: 66.666667% !important; }
|
|
285
283
|
|
|
286
284
|
// Min-width utilities
|
|
287
|
-
.mw-25 {
|
|
288
|
-
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
.mw-
|
|
292
|
-
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
.mw-50 {
|
|
296
|
-
min-width: 50% !important;
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
.mw-66 {
|
|
300
|
-
min-width: 66.666667% !important;
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
.mw-75 {
|
|
304
|
-
min-width: 75% !important;
|
|
305
|
-
}
|
|
306
|
-
|
|
307
|
-
.mw-100 {
|
|
308
|
-
min-width: 100% !important;
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
.mw-auto {
|
|
312
|
-
min-width: auto !important;
|
|
313
|
-
}
|
|
285
|
+
.mw-25 { min-width: 25% !important; }
|
|
286
|
+
.mw-50 { min-width: 50% !important; }
|
|
287
|
+
.mw-75 { min-width: 75% !important; }
|
|
288
|
+
.mw-100 { min-width: 100% !important; }
|
|
289
|
+
.mw-auto { min-width: auto !important; }
|
|
290
|
+
.mw-1-3 { min-width: 33.333333% !important; }
|
|
291
|
+
.mw-2-3 { min-width: 66.666667% !important; }
|
|
314
292
|
|
|
315
293
|
// Fixed width utilities (min-width + width locked)
|
|
316
|
-
.w-25-fixed {
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
}
|
|
320
|
-
|
|
321
|
-
.w-
|
|
322
|
-
min-width: 33.333333% !important;
|
|
323
|
-
width: 33.333333% !important;
|
|
324
|
-
}
|
|
325
|
-
|
|
326
|
-
.w-50-fixed {
|
|
327
|
-
min-width: 50% !important;
|
|
328
|
-
width: 50% !important;
|
|
329
|
-
}
|
|
330
|
-
|
|
331
|
-
.w-66-fixed {
|
|
332
|
-
min-width: 66.666667% !important;
|
|
333
|
-
width: 66.666667% !important;
|
|
334
|
-
}
|
|
335
|
-
|
|
336
|
-
.w-75-fixed {
|
|
337
|
-
min-width: 75% !important;
|
|
338
|
-
width: 75% !important;
|
|
339
|
-
}
|
|
340
|
-
|
|
341
|
-
.w-100-fixed {
|
|
342
|
-
min-width: 100% !important;
|
|
343
|
-
width: 100% !important;
|
|
344
|
-
}
|
|
294
|
+
.w-25-fixed { min-width: 25% !important; width: 25% !important; }
|
|
295
|
+
.w-50-fixed { min-width: 50% !important; width: 50% !important; }
|
|
296
|
+
.w-75-fixed { min-width: 75% !important; width: 75% !important; }
|
|
297
|
+
.w-100-fixed { min-width: 100% !important; width: 100% !important; }
|
|
298
|
+
.w-1-3-fixed { min-width: 33.333333% !important; width: 33.333333% !important; }
|
|
299
|
+
.w-2-3-fixed { min-width: 66.666667% !important; width: 66.666667% !important; }
|
|
345
300
|
|
|
346
301
|
// Height utilities
|
|
347
302
|
.h-25 {
|
|
@@ -364,6 +319,203 @@ $spacers: (
|
|
|
364
319
|
height: auto !important;
|
|
365
320
|
}
|
|
366
321
|
|
|
322
|
+
// ============================================================================
|
|
323
|
+
// REM-BASED SIZING UTILITIES
|
|
324
|
+
// Use 'r' suffix to distinguish from percentage-based utilities
|
|
325
|
+
// Values: 1-10, 15, 20, 25 (rem)
|
|
326
|
+
// ============================================================================
|
|
327
|
+
|
|
328
|
+
// Width (rem)
|
|
329
|
+
.wr-1 { width: 1rem !important; }
|
|
330
|
+
.wr-2 { width: 2rem !important; }
|
|
331
|
+
.wr-3 { width: 3rem !important; }
|
|
332
|
+
.wr-4 { width: 4rem !important; }
|
|
333
|
+
.wr-5 { width: 5rem !important; }
|
|
334
|
+
.wr-6 { width: 6rem !important; }
|
|
335
|
+
.wr-7 { width: 7rem !important; }
|
|
336
|
+
.wr-8 { width: 8rem !important; }
|
|
337
|
+
.wr-9 { width: 9rem !important; }
|
|
338
|
+
.wr-10 { width: 10rem !important; }
|
|
339
|
+
.wr-15 { width: 15rem !important; }
|
|
340
|
+
.wr-20 { width: 20rem !important; }
|
|
341
|
+
.wr-25 { width: 25rem !important; }
|
|
342
|
+
|
|
343
|
+
// Min-width (rem)
|
|
344
|
+
.minwr-1 { min-width: 1rem !important; }
|
|
345
|
+
.minwr-2 { min-width: 2rem !important; }
|
|
346
|
+
.minwr-3 { min-width: 3rem !important; }
|
|
347
|
+
.minwr-4 { min-width: 4rem !important; }
|
|
348
|
+
.minwr-5 { min-width: 5rem !important; }
|
|
349
|
+
.minwr-6 { min-width: 6rem !important; }
|
|
350
|
+
.minwr-7 { min-width: 7rem !important; }
|
|
351
|
+
.minwr-8 { min-width: 8rem !important; }
|
|
352
|
+
.minwr-9 { min-width: 9rem !important; }
|
|
353
|
+
.minwr-10 { min-width: 10rem !important; }
|
|
354
|
+
.minwr-15 { min-width: 15rem !important; }
|
|
355
|
+
.minwr-20 { min-width: 20rem !important; }
|
|
356
|
+
.minwr-25 { min-width: 25rem !important; }
|
|
357
|
+
|
|
358
|
+
// Max-width (rem)
|
|
359
|
+
.maxwr-1 { max-width: 1rem !important; }
|
|
360
|
+
.maxwr-2 { max-width: 2rem !important; }
|
|
361
|
+
.maxwr-3 { max-width: 3rem !important; }
|
|
362
|
+
.maxwr-4 { max-width: 4rem !important; }
|
|
363
|
+
.maxwr-5 { max-width: 5rem !important; }
|
|
364
|
+
.maxwr-6 { max-width: 6rem !important; }
|
|
365
|
+
.maxwr-7 { max-width: 7rem !important; }
|
|
366
|
+
.maxwr-8 { max-width: 8rem !important; }
|
|
367
|
+
.maxwr-9 { max-width: 9rem !important; }
|
|
368
|
+
.maxwr-10 { max-width: 10rem !important; }
|
|
369
|
+
.maxwr-15 { max-width: 15rem !important; }
|
|
370
|
+
.maxwr-20 { max-width: 20rem !important; }
|
|
371
|
+
.maxwr-25 { max-width: 25rem !important; }
|
|
372
|
+
|
|
373
|
+
// Height (rem)
|
|
374
|
+
.hr-1 { height: 1rem !important; }
|
|
375
|
+
.hr-2 { height: 2rem !important; }
|
|
376
|
+
.hr-3 { height: 3rem !important; }
|
|
377
|
+
.hr-4 { height: 4rem !important; }
|
|
378
|
+
.hr-5 { height: 5rem !important; }
|
|
379
|
+
.hr-6 { height: 6rem !important; }
|
|
380
|
+
.hr-7 { height: 7rem !important; }
|
|
381
|
+
.hr-8 { height: 8rem !important; }
|
|
382
|
+
.hr-9 { height: 9rem !important; }
|
|
383
|
+
.hr-10 { height: 10rem !important; }
|
|
384
|
+
.hr-15 { height: 15rem !important; }
|
|
385
|
+
.hr-20 { height: 20rem !important; }
|
|
386
|
+
.hr-25 { height: 25rem !important; }
|
|
387
|
+
|
|
388
|
+
// Min-height (rem)
|
|
389
|
+
.minhr-1 { min-height: 1rem !important; }
|
|
390
|
+
.minhr-2 { min-height: 2rem !important; }
|
|
391
|
+
.minhr-3 { min-height: 3rem !important; }
|
|
392
|
+
.minhr-4 { min-height: 4rem !important; }
|
|
393
|
+
.minhr-5 { min-height: 5rem !important; }
|
|
394
|
+
.minhr-6 { min-height: 6rem !important; }
|
|
395
|
+
.minhr-7 { min-height: 7rem !important; }
|
|
396
|
+
.minhr-8 { min-height: 8rem !important; }
|
|
397
|
+
.minhr-9 { min-height: 9rem !important; }
|
|
398
|
+
.minhr-10 { min-height: 10rem !important; }
|
|
399
|
+
.minhr-15 { min-height: 15rem !important; }
|
|
400
|
+
.minhr-20 { min-height: 20rem !important; }
|
|
401
|
+
.minhr-25 { min-height: 25rem !important; }
|
|
402
|
+
|
|
403
|
+
// Max-height (rem)
|
|
404
|
+
.maxhr-1 { max-height: 1rem !important; }
|
|
405
|
+
.maxhr-2 { max-height: 2rem !important; }
|
|
406
|
+
.maxhr-3 { max-height: 3rem !important; }
|
|
407
|
+
.maxhr-4 { max-height: 4rem !important; }
|
|
408
|
+
.maxhr-5 { max-height: 5rem !important; }
|
|
409
|
+
.maxhr-6 { max-height: 6rem !important; }
|
|
410
|
+
.maxhr-7 { max-height: 7rem !important; }
|
|
411
|
+
.maxhr-8 { max-height: 8rem !important; }
|
|
412
|
+
.maxhr-9 { max-height: 9rem !important; }
|
|
413
|
+
.maxhr-10 { max-height: 10rem !important; }
|
|
414
|
+
.maxhr-15 { max-height: 15rem !important; }
|
|
415
|
+
.maxhr-20 { max-height: 20rem !important; }
|
|
416
|
+
.maxhr-25 { max-height: 25rem !important; }
|
|
417
|
+
|
|
418
|
+
// ============================================================================
|
|
419
|
+
// PERCENTAGE-BASED MIN/MAX UTILITIES
|
|
420
|
+
// Extends existing w-* and h-* utilities with min/max variants
|
|
421
|
+
// ============================================================================
|
|
422
|
+
|
|
423
|
+
// Min-width (percentage) - 5% increments
|
|
424
|
+
.minw-5 { min-width: 5% !important; }
|
|
425
|
+
.minw-10 { min-width: 10% !important; }
|
|
426
|
+
.minw-15 { min-width: 15% !important; }
|
|
427
|
+
.minw-20 { min-width: 20% !important; }
|
|
428
|
+
.minw-25 { min-width: 25% !important; }
|
|
429
|
+
.minw-30 { min-width: 30% !important; }
|
|
430
|
+
.minw-35 { min-width: 35% !important; }
|
|
431
|
+
.minw-40 { min-width: 40% !important; }
|
|
432
|
+
.minw-45 { min-width: 45% !important; }
|
|
433
|
+
.minw-50 { min-width: 50% !important; }
|
|
434
|
+
.minw-55 { min-width: 55% !important; }
|
|
435
|
+
.minw-60 { min-width: 60% !important; }
|
|
436
|
+
.minw-65 { min-width: 65% !important; }
|
|
437
|
+
.minw-70 { min-width: 70% !important; }
|
|
438
|
+
.minw-75 { min-width: 75% !important; }
|
|
439
|
+
.minw-80 { min-width: 80% !important; }
|
|
440
|
+
.minw-85 { min-width: 85% !important; }
|
|
441
|
+
.minw-90 { min-width: 90% !important; }
|
|
442
|
+
.minw-95 { min-width: 95% !important; }
|
|
443
|
+
.minw-100 { min-width: 100% !important; }
|
|
444
|
+
.minw-1-3 { min-width: 33.333333% !important; }
|
|
445
|
+
.minw-2-3 { min-width: 66.666667% !important; }
|
|
446
|
+
|
|
447
|
+
// Max-width (percentage) - 5% increments
|
|
448
|
+
.maxw-5 { max-width: 5% !important; }
|
|
449
|
+
.maxw-10 { max-width: 10% !important; }
|
|
450
|
+
.maxw-15 { max-width: 15% !important; }
|
|
451
|
+
.maxw-20 { max-width: 20% !important; }
|
|
452
|
+
.maxw-25 { max-width: 25% !important; }
|
|
453
|
+
.maxw-30 { max-width: 30% !important; }
|
|
454
|
+
.maxw-35 { max-width: 35% !important; }
|
|
455
|
+
.maxw-40 { max-width: 40% !important; }
|
|
456
|
+
.maxw-45 { max-width: 45% !important; }
|
|
457
|
+
.maxw-50 { max-width: 50% !important; }
|
|
458
|
+
.maxw-55 { max-width: 55% !important; }
|
|
459
|
+
.maxw-60 { max-width: 60% !important; }
|
|
460
|
+
.maxw-65 { max-width: 65% !important; }
|
|
461
|
+
.maxw-70 { max-width: 70% !important; }
|
|
462
|
+
.maxw-75 { max-width: 75% !important; }
|
|
463
|
+
.maxw-80 { max-width: 80% !important; }
|
|
464
|
+
.maxw-85 { max-width: 85% !important; }
|
|
465
|
+
.maxw-90 { max-width: 90% !important; }
|
|
466
|
+
.maxw-95 { max-width: 95% !important; }
|
|
467
|
+
.maxw-100 { max-width: 100% !important; }
|
|
468
|
+
.maxw-1-3 { max-width: 33.333333% !important; }
|
|
469
|
+
.maxw-2-3 { max-width: 66.666667% !important; }
|
|
470
|
+
|
|
471
|
+
// Min-height (percentage)
|
|
472
|
+
.minh-5 { min-height: 5% !important; }
|
|
473
|
+
.minh-10 { min-height: 10% !important; }
|
|
474
|
+
.minh-15 { min-height: 15% !important; }
|
|
475
|
+
.minh-20 { min-height: 20% !important; }
|
|
476
|
+
.minh-25 { min-height: 25% !important; }
|
|
477
|
+
.minh-30 { min-height: 30% !important; }
|
|
478
|
+
.minh-35 { min-height: 35% !important; }
|
|
479
|
+
.minh-40 { min-height: 40% !important; }
|
|
480
|
+
.minh-45 { min-height: 45% !important; }
|
|
481
|
+
.minh-50 { min-height: 50% !important; }
|
|
482
|
+
.minh-55 { min-height: 55% !important; }
|
|
483
|
+
.minh-60 { min-height: 60% !important; }
|
|
484
|
+
.minh-65 { min-height: 65% !important; }
|
|
485
|
+
.minh-70 { min-height: 70% !important; }
|
|
486
|
+
.minh-75 { min-height: 75% !important; }
|
|
487
|
+
.minh-80 { min-height: 80% !important; }
|
|
488
|
+
.minh-85 { min-height: 85% !important; }
|
|
489
|
+
.minh-90 { min-height: 90% !important; }
|
|
490
|
+
.minh-95 { min-height: 95% !important; }
|
|
491
|
+
.minh-100 { min-height: 100% !important; }
|
|
492
|
+
.minh-1-3 { min-height: 33.333333% !important; }
|
|
493
|
+
.minh-2-3 { min-height: 66.666667% !important; }
|
|
494
|
+
|
|
495
|
+
// Max-height (percentage)
|
|
496
|
+
.maxh-5 { max-height: 5% !important; }
|
|
497
|
+
.maxh-10 { max-height: 10% !important; }
|
|
498
|
+
.maxh-15 { max-height: 15% !important; }
|
|
499
|
+
.maxh-20 { max-height: 20% !important; }
|
|
500
|
+
.maxh-25 { max-height: 25% !important; }
|
|
501
|
+
.maxh-30 { max-height: 30% !important; }
|
|
502
|
+
.maxh-35 { max-height: 35% !important; }
|
|
503
|
+
.maxh-40 { max-height: 40% !important; }
|
|
504
|
+
.maxh-45 { max-height: 45% !important; }
|
|
505
|
+
.maxh-50 { max-height: 50% !important; }
|
|
506
|
+
.maxh-55 { max-height: 55% !important; }
|
|
507
|
+
.maxh-60 { max-height: 60% !important; }
|
|
508
|
+
.maxh-65 { max-height: 65% !important; }
|
|
509
|
+
.maxh-70 { max-height: 70% !important; }
|
|
510
|
+
.maxh-75 { max-height: 75% !important; }
|
|
511
|
+
.maxh-80 { max-height: 80% !important; }
|
|
512
|
+
.maxh-85 { max-height: 85% !important; }
|
|
513
|
+
.maxh-90 { max-height: 90% !important; }
|
|
514
|
+
.maxh-95 { max-height: 95% !important; }
|
|
515
|
+
.maxh-100 { max-height: 100% !important; }
|
|
516
|
+
.maxh-1-3 { max-height: 33.333333% !important; }
|
|
517
|
+
.maxh-2-3 { max-height: 66.666667% !important; }
|
|
518
|
+
|
|
367
519
|
// Position utilities
|
|
368
520
|
.position-static {
|
|
369
521
|
position: static !important;
|
|
@@ -426,6 +578,30 @@ $spacers: (
|
|
|
426
578
|
border-left: 0 !important;
|
|
427
579
|
}
|
|
428
580
|
|
|
581
|
+
// Border style utilities
|
|
582
|
+
.border-solid { border-style: solid !important; }
|
|
583
|
+
.border-dashed { border-style: dashed !important; }
|
|
584
|
+
.border-dotted { border-style: dotted !important; }
|
|
585
|
+
.border-none { border-style: none !important; }
|
|
586
|
+
|
|
587
|
+
// Text color utilities (semantic colors)
|
|
588
|
+
.text-primary { color: var(--pa-accent) !important; }
|
|
589
|
+
.text-success { color: var(--pa-success-text) !important; }
|
|
590
|
+
.text-danger { color: var(--pa-danger-text) !important; }
|
|
591
|
+
.text-warning { color: var(--pa-warning-text) !important; }
|
|
592
|
+
.text-info { color: var(--pa-info-text) !important; }
|
|
593
|
+
|
|
594
|
+
// Text color utilities (theme custom colors 1-9)
|
|
595
|
+
.text-color-1 { color: var(--pa-color-1) !important; }
|
|
596
|
+
.text-color-2 { color: var(--pa-color-2) !important; }
|
|
597
|
+
.text-color-3 { color: var(--pa-color-3) !important; }
|
|
598
|
+
.text-color-4 { color: var(--pa-color-4) !important; }
|
|
599
|
+
.text-color-5 { color: var(--pa-color-5) !important; }
|
|
600
|
+
.text-color-6 { color: var(--pa-color-6) !important; }
|
|
601
|
+
.text-color-7 { color: var(--pa-color-7) !important; }
|
|
602
|
+
.text-color-8 { color: var(--pa-color-8) !important; }
|
|
603
|
+
.text-color-9 { color: var(--pa-color-9) !important; }
|
|
604
|
+
|
|
429
605
|
// Rounded utilities
|
|
430
606
|
.rounded {
|
|
431
607
|
border-radius: var(--border-radius) !important;
|
|
@@ -200,3 +200,18 @@ $code-syntax-property: #dd4a68 !default;
|
|
|
200
200
|
|
|
201
201
|
$comparison-accent-pink: #ec4899 !default;
|
|
202
202
|
$comparison-accent-orange: #f97316 !default;
|
|
203
|
+
|
|
204
|
+
// =============================================================================
|
|
205
|
+
// CUSTOM THEME COLOR SLOTS (1-9)
|
|
206
|
+
// Themes can override these to provide additional branded colors
|
|
207
|
+
// =============================================================================
|
|
208
|
+
|
|
209
|
+
$color-1: transparent !default;
|
|
210
|
+
$color-2: transparent !default;
|
|
211
|
+
$color-3: transparent !default;
|
|
212
|
+
$color-4: transparent !default;
|
|
213
|
+
$color-5: transparent !default;
|
|
214
|
+
$color-6: transparent !default;
|
|
215
|
+
$color-7: transparent !default;
|
|
216
|
+
$color-8: transparent !default;
|
|
217
|
+
$color-9: transparent !default;
|
|
@@ -48,21 +48,19 @@ $composite-badge-label-hover-bg: $secondary-lighter-bg !default;
|
|
|
48
48
|
// ============================================================================
|
|
49
49
|
// BUTTON SYSTEM
|
|
50
50
|
// ============================================================================
|
|
51
|
-
$btn-group-gap: 0.
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
$btn-padding-v: 0.
|
|
57
|
-
$btn-padding-h:
|
|
58
|
-
$btn-padding-
|
|
59
|
-
$btn-padding-
|
|
60
|
-
$btn-padding-
|
|
61
|
-
$btn-padding-
|
|
62
|
-
$btn-padding-
|
|
63
|
-
$btn-padding-
|
|
64
|
-
$btn-padding-xl-v: 1.2rem !default; // 12px (was 0.75rem)
|
|
65
|
-
$btn-padding-xl-h: 1.6rem !default; // 16px (was 1rem)
|
|
51
|
+
$btn-group-gap: 0.3rem !default; // 3px - default gap (use gap-* utilities for other sizes)
|
|
52
|
+
|
|
53
|
+
// Button specific - vertical padding matches input padding for height alignment
|
|
54
|
+
$btn-padding-v: 0.8rem !default; // 8px - matches input default
|
|
55
|
+
$btn-padding-h: 1.2rem !default; // 12px
|
|
56
|
+
$btn-padding-xs-v: 0.6rem !default; // 6px - matches input-xs
|
|
57
|
+
$btn-padding-xs-h: 0.8rem !default; // 8px
|
|
58
|
+
$btn-padding-sm-v: 0.8rem !default; // 8px - matches input default
|
|
59
|
+
$btn-padding-sm-h: 1rem !default; // 10px
|
|
60
|
+
$btn-padding-lg-v: 0.8rem !default; // 8px - matches input default
|
|
61
|
+
$btn-padding-lg-h: 1.4rem !default; // 14px
|
|
62
|
+
$btn-padding-xl-v: 0.8rem !default; // 8px - matches input default
|
|
63
|
+
$btn-padding-xl-h: 1.6rem !default; // 16px
|
|
66
64
|
$btn-border-width: 1px !default;
|
|
67
65
|
$btn-icon-only-size-xs: 2.8rem !default; // 28px (was 1.75rem)
|
|
68
66
|
$btn-icon-only-size-sm: 3.2rem !default; // 32px (was 2rem)
|
|
@@ -139,6 +137,7 @@ $profile-button-padding-v: $spacing-sm !default;
|
|
|
139
137
|
$profile-button-padding-h: $spacing-md !default;
|
|
140
138
|
$profile-role-letter-spacing: 0.5px !default;
|
|
141
139
|
$profile-panel-mobile-max-width: 40rem !default; // 400px (was 25rem)
|
|
140
|
+
$profile-panel-content-padding: 1.6rem !default; // Matches sidebar-padding horizontal (16px)
|
|
142
141
|
|
|
143
142
|
// ============================================================================
|
|
144
143
|
// CARD SYSTEM
|
|
@@ -266,6 +265,11 @@ $alert-info-bg: $info-bg-subtle !default;
|
|
|
266
265
|
$alert-info-border: $info-border !default;
|
|
267
266
|
$alert-info-text: $info-bg !default;
|
|
268
267
|
|
|
268
|
+
// ============================================================================
|
|
269
|
+
// CALLOUT SYSTEM
|
|
270
|
+
// ============================================================================
|
|
271
|
+
$callout-border-width: 0.4rem !default; // 4px left border accent
|
|
272
|
+
|
|
269
273
|
// ============================================================================
|
|
270
274
|
// STATS SYSTEM
|
|
271
275
|
// ============================================================================
|