Changes for page Konnaissance

Last modified by Gregory CAUCHIE on 2026/05/07 04:20

From version 22.1
edited by Gregory CAUCHIE
on 2026/05/07 03:43
Change comment: There is no comment for this version
To version 23.1
edited by Gregory CAUCHIE
on 2026/05/07 03:47
Change comment: Rollback to version 21.1

Summary

Details

Page properties
Content
... ... @@ -510,7 +510,7 @@
510 510  {{html clean="false"}}
511 511  <style>
512 512  /* ── USE-CASE CARDS — separate block, own scope ── */
513 -.konna-uc *{
513 +.konna-uc *, .konna-uc *::before, .konna-uc *::after {
514 514   box-sizing: border-box;
515 515   margin: 0;
516 516   padding: 0;
... ... @@ -540,8 +540,6 @@
540 540   width: 100%;
541 541   height: 220px;
542 542   overflow: hidden;
543 - /* Bootstrap 3 sets min-height on flex containers — override it */
544 - min-height: 0 !important;
545 545  }
546 546  .konna-uc .uc-card .ic {
547 547   width: 32px; height: 32px;
... ... @@ -548,9 +548,7 @@
548 548   border-radius: 50%;
549 549   display: flex; align-items: center; justify-content: center;
550 550   font-size: 16px;
551 - flex: 0 0 32px;
552 - /* explicit width prevents Bootstrap from stretching it */
553 - max-width: 32px;
549 + flex: 0 0 auto;
554 554  }
555 555  .konna-uc .uc-card .metric {
556 556   font-size: 13px;
... ... @@ -558,23 +558,15 @@
558 558   line-height: 1.3;
559 559   word-break: break-word;
560 560   flex: 0 0 auto;
561 - /* must be block-level and full-width for text to wrap */
562 - width: 100%;
563 - display: block;
564 -
565 -
566 566  }
567 567  .konna-uc .uc-card .label {
568 568   font-size: 11px;
569 569   color: #888780;
570 570   line-height: 1.4;
571 - flex: 1 1 auto;
572 - /* min-height:0 !important beats Bootstrap 3's min-height:auto on flex children */
573 - min-height: 0 !important;
574 - width: 100%;
575 - display: block;
576 - word-wrap: break-word;
577 - overflow-wrap: break-word;
562 + flex: 1 1 0;
563 + min-height: 0;
564 + overflow-y: auto;
565 + overflow-x: hidden;
578 578  }
579 579  
580 580