Basculer le menu
Changer de menu des préférences
Basculer le menu personnel
Non connecté(e)
Votre adresse IP sera visible au public si vous faites des modifications.

« Modèle:SocialButton/styles.css » : différence entre les versions

De Nefald
Agrado (discussion | contributions)
Aucun résumé des modifications
Balise : Révoqué
Agrado (discussion | contributions)
Aucun résumé des modifications
 
(57 versions intermédiaires par le même utilisateur non affichées)
Ligne 1 : Ligne 1 :
/* Bandeau : une seule ligne (desktop), fond transparent */
/* =========================================
  BANDEAU FOOTER SOCIAL
  ========================================= */
 
.sb-footer{
.sb-footer{
   width: 100%;
   width: 100%;
Ligne 6 : Ligne 9 :
   display: flex;
   display: flex;
   align-items: center;
   align-items: center;
   gap: 14px;
   gap: 10px;


   padding: 14px 16px;
   padding: 12px 16px;
   border-radius: 12px;
   border-radius: 12px;


   background: transparent;     /* <-- plus de fond gris */
   background: transparent;
   box-shadow: none;             /* optionnel, tu peux remettre une ombre si tu veux */
   box-shadow: none;
   overflow: visible;
 
  /* IMPORTANT : évite le scroll/grey wrapper du skin */
  flex-wrap: nowrap;
   overflow: hidden;
}
}


/* Titres inline */
/* Titres */
.sb-title{
.sb-title{
   color: #fff;
   color: #000 !important;
   font-weight: 700;
   font-weight: 700;
   font-size: 1.05rem;
   font-size: 1.05rem;
   white-space: nowrap;
   white-space: nowrap;
  flex: 0 0 auto;
}
}


/* Spacer pour pousser la partie soutien à droite */
/* (Spacer supprimé) */
.sb-spacer{
.sb-spacer{ display: none !important; }
  flex: 1 1 auto;
}


/* Groupes de boutons */
/* Groupes */
.sb-buttons{
.sb-buttons{
   display: flex;
   display: flex;
   align-items: center;
   align-items: center;
   gap: 10px;
   gap: 8px;
   flex-wrap: nowrap;           /* <-- tout sur une seule ligne */
   flex-wrap: nowrap;
  flex: 0 0 auto;
}
}


/* Boutons (wrapper) : reprend le look ButtonLink */
/* =========================================
.sb-btn{
  BOUTONS (fond garanti via :before)
  ========================================= */
 
.sb-footer .sb-btn{
  position: relative;
   border-radius: 12px;
   border-radius: 12px;
   overflow: hidden;
   overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;


   box-shadow: 0 2px 8px rgba(0,0,0,.10);
   box-shadow: 0 2px 8px rgba(0,0,0,.10);
   transition: all .3s cubic-bezier(.4,0,.2,1);
   transition: all .3s cubic-bezier(.4,0,.2,1);


   display: flex;
   flex: 0 0 auto;
   align-items: center;
}
   justify-content: center;
 
.sb-footer .sb-btn:before{
  content: "";
  position: absolute;
   top: 0; right: 0; bottom: 0; left: 0;
   z-index: 0;


   /* fallback */
   background: transparent;
   background: #6c757d;
   pointer-events: none;
}
}


.sb-btn:hover{
.sb-footer .sb-btn:hover{
   transform: translateY(-2px);
   transform: translateY(-2px);
   box-shadow: 0 4px 16px rgba(0,0,0,.20);
   box-shadow: 0 4px 16px rgba(0,0,0,.20);
}
}


/* Réseaux : 58x58 */
/* Tailles */
.sb-icon{
.sb-icon{ width: 45px; height: 45px; }
   width: 58px;
 
   height: 58px;
.sb-btn.button-link--tiktok img{
   transform: scale(1.8);
   transform-origin: center;
}
}


/* Soutien : 58px haut, largeur auto */
/* Support : base */
.sb-support{
.sb-support{
   height: 58px;
   height: 45px;         /* même hauteur que les icônes */
   padding: 0 14px;
   padding: 0;
  width: auto;
  flex: 0 0 auto;
}
}


/* IMPORTANT : le lien généré par [URL LABEL] doit remplir le bouton */
/* =========================================
.sb-footer a{
  Lien plein bouton, au-dessus du fond
  ========================================= */
 
.sb-footer .sb-btn > a{
  position: relative;
  z-index: 1;
 
   display: flex;
   display: flex;
   align-items: center;
   align-items: center;
Ligne 79 : Ligne 108 :
   width: 100%;
   width: 100%;
   height: 100%;
   height: 100%;
  margin: 0 !important;
  padding: 0 !important;


   color: #fff !important;
   color: #fff !important;
   text-decoration: none !important;
   text-decoration: none !important;


   background: transparent !important; /* évite que le thème mette un fond sur <a> */
   background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
 
/* =========================================
  HELLOASSO — compact MAIS logo au-dessus du texte
  ========================================= */
 
.sb-buttons--support{
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}
 
.sb-buttons--support .sb-btn.sb-support{
  flex: 0 0 auto;
  width: 140px;          /* légèrement + large pour stabiliser la colonne */
  height: 45px;
}
 
.sb-buttons--support .sb-btn.sb-support > a{
  width: 100% !important;
 
  display: flex;
  flex-direction: column;      /* logo au-dessus */
  justify-content: center;
  align-items: center;
 
  padding: 0 12px !important;  /* compact horizontal */
  gap: 2px;
 
  line-height: 1;
  text-align: center;
}
}


/* Neutraliser l’icône au survol (lien externe / copier) DANS le bandeau */
/* Logo : un peu moins "zoomé" pour éviter l’écrasement */
.sb-footer a.external::after{
.sb-buttons--support .sb-btn.sb-support img{
   display: none !important;
  height: 18px !important;
   content: none !important;
  width: auto !important;
 
  transform: scale(1.55);      /* avant ~1.9/2 : dézoom */
  transform-origin: center;
 
   display: block;
   margin: 0 !important;
}
}
.sb-footer a::after{
 
   display: none !important;
/* Texte : compact et lisible */
   content: none !important;
.sb-buttons--support .sb-btn.sb-support b,
.sb-buttons--support .sb-btn.sb-support strong{
   display: block;
  margin: 0 !important;
   line-height: 1;
 
  font-size: 0.66rem;
  font-weight: 600;
 
  white-space: nowrap;
}
}


/* Certains skins ajoutent une icône via background-image : on coupe */
/* =========================================
.sb-footer a.external{
  Neutraliser wrappers MediaWiki (fichiers)
   background-image: none !important;
  ========================================= */
   padding-right: 0 !important;
 
.sb-footer .sb-btn .mw-file-description,
.sb-footer .sb-btn .mw-file-element,
.sb-footer .sb-btn .mw-file-description a,
.sb-footer .sb-btn .mw-file-element a{
   background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
   padding: 0 !important;
  margin: 0 !important;
}
}


/* Images : tailles propres */
/* Images icônes réseaux sociaux */
.sb-icon img{
.sb-icon img{
   width: 28px !important;
   width: 28px !important;
Ligne 108 : Ligne 197 :
   object-fit: contain;
   object-fit: contain;
   display: block;
   display: block;
  background: transparent !important;
}
}


.sb-support img{
/* =========================================
   width: 22px !important;
  Supprimer icônes externes (skins)
   height: 22px !important;
  ========================================= */
  object-fit: contain;
 
  display: block;
.sb-footer a:after,
.sb-footer a:before,
.sb-footer a.external:after,
.sb-footer a.external:before{
   display: none !important;
   content: none !important;
}
}


/* Empêcher l’URL de s’afficher (ce que tu vois sur ta capture) :
  certains wikis affichent l’URL dans les liens externes si label “non reconnu”.
  Ici on force le label à rester le contenu seulement. */
.sb-footer a.external{
.sb-footer a.external{
   font-size: 0;                 /* masque tout texte brut éventuel */
   background-image: none !important;
  padding-right: 0 !important;
}
}
.sb-footer a.external img,
 
.sb-footer a.external b,
/* =========================================
.sb-footer a.external strong{
  COULEURS (fond via :before)
   font-size: initial;           /* réactive la taille sur éléments visibles */
  ========================================= */
 
.sb-footer .sb-btn.button-link--discord:before  { background: #5865f2; }
.sb-footer .sb-btn.button-link--twitter:before  { background: #1da1f2; }
.sb-footer .sb-btn.button-link--instagram:before {
   background: linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}
}
.sb-footer .sb-btn.button-link--tiktok:before    { background: #000; }
.sb-footer .sb-btn.button-link--helloasso:before { background: #5a2ca0; }


/* Texte des boutons soutien */
/* =========================================
.sb-support strong, .sb-support b{
  COMPTEURS (à droite) — compact + anti-style skin
   font-size: 0.95rem;
  ========================================= */
   font-weight: 700;
 
.sb-counters{
   margin-left: auto;              /* pousse à droite */
  display: flex;
   align-items: center;
  gap: 10px;
   white-space: nowrap;
   white-space: nowrap;
  flex: 0 0 auto;
  /* évite toute boîte scrollable ajoutée */
  min-width: 0;
}
/* Reset ciblé : on neutralise l'apparence "code" sans casser le reste */
.sb-counters,
.sb-counters *{
  font-family: inherit !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
}
}


/* Responsive : en dessous de 900px, on wrap sur 2 lignes proprement */
/* Si le skin injecte code/pre */
.sb-counters code,
.sb-counters pre{
  font-family: inherit !important;
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
}
 
/* Cartes compteurs */
.sb-counter{
  display: flex;
  align-items: center;
  gap: 6px;
 
  height: 45px;
  padding: 0 8px;              /* compact pour tenir en 1 ligne */
  border-radius: 12px;
 
  background: rgba(0,0,0,.05);
  line-height: 1;
  font-size: 0.82rem;
}
 
.sb-counter__num{
  font-weight: 800;
  font-size: 1.0rem;
}
 
.sb-counter__label{
  font-weight: 600;
  opacity: .7;
}
 
/* =========================================
  RESPONSIVE
  ========================================= */
 
@media (max-width: 900px){
@media (max-width: 900px){
   .sb-footer{
   .sb-footer{
     flex-wrap: wrap;
     flex-wrap: wrap;
     align-items: flex-start;
     align-items: flex-start;
    overflow: visible;          /* on autorise le wrap sur petit écran */
   }
   }
   .sb-spacer{
 
    display: none;
   .sb-buttons{ flex-wrap: wrap; }
   }
 
   .sb-buttons{
   /* compteurs passent sur la ligne suivante, sans casser */
     flex-wrap: wrap;
   .sb-counters{
     margin-left: 0;
    width: 100%;
    justify-content: flex-start;
    margin-top: 6px;
   }
   }
}
}
/* =========================================================
/* Empêche les comportements de wrapper/scroll du skin sur la fin de ligne */
  PATCH: icône "copier"/externe + surcouche de fond
.sb-footer{
  ========================================================= */
  overflow: hidden; /* au lieu de visible */
}
 
/* Compteurs à droite : compact et stable */
.sb-counters{
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex: 0 0 auto;
}
 
/* Style visuel compteurs */
.sb-counter{
  display: flex;
  align-items: center;
  gap: 6px;
  height: 45px;
  padding: 0 10px;
  border-radius: 12px;
  background: rgba(0,0,0,.05);
  line-height: 1;
  font-size: 0.85rem;
}
 
.sb-counter__num{
  font-weight: 800;
  font-size: 1.0rem;
}


/* 1) Texte fixe en noir */
.sb-counter__label{
.sb-title{
   font-weight: 600;
   color: #000 !important;
  opacity: .7;
}
}


/* 2) Neutraliser tout ce que le skin/gadgets met sur les liens externes */
/* Neutralise uniquement les styles "code/copy" SI un wrapper est injecté DANS les compteurs */
.sb-footer a,
.sb-counters code,
.sb-footer a.external{
.sb-counters pre{
   background: transparent !important;
   background: transparent !important;
   background-image: none !important;
   border: 0 !important;
  padding: 0 !important;
   box-shadow: none !important;
   box-shadow: none !important;
  font-family: inherit !important;
}
/* On évite que des décorations de lien/skin polluent les compteurs */
.sb-counters a:before,
.sb-counters a:after,
.sb-counters .external:before,
.sb-counters .external:after{
  display: none !important;
  content: none !important;
}
/* =========================================
  COMPTEURS — neutraliser le gadget/extension "copier"
  (sans toucher aux boutons)
  ========================================= */
.sb-counters{
  -webkit-user-select: none;
  user-select: none;
}
/* Si le gadget s'accroche à code/pre injectés, on les neutralise */
.sb-counters code,
.sb-counters pre,
.sb-counters kbd,
.sb-counters samp{
  background: transparent !important;
   border: 0 !important;
   border: 0 !important;
   outline: 0 !important;
   padding: 0 !important;
   filter: none !important;
   box-shadow: none !important;
  font-family: inherit !important;
}
}


/* Pseudo éléments (souvent l’icône externe/copie) */
/* Certains gadgets posent un bouton via pseudo-éléments / enfants */
.sb-footer a::after,
.sb-counters [class*="copy"],
.sb-footer a::before,
.sb-counters .copy-button,
.sb-footer a.external::after,
.sb-counters .mw-copybutton,
.sb-footer a.external::before{
.sb-counters .mw-clipboard-button{
  content: none !important;
   display: none !important;
   display: none !important;
  background: none !important;
}
}
/* =========================================
  Séparateurs verticaux entre les 3 sections
  ========================================= */


/* Certains skins ajoutent une marge/padding pour l’icône */
.sb-buttons--icons,
.sb-footer a.external{
.sb-buttons--support{
   padding-right: 0 !important;
   position: relative;
  margin-right: 0 !important;
}
}


/* 3) Éviter la "surcouche" : le <a> doit remplir sans peindre */
/* barre après Réseaux */
.sb-footer .sb-btn{
.sb-buttons--icons::after{
   /* le fond DOIT venir du wrapper (sb-btn + button-link--xxx) */
   content: "";
   background-clip: padding-box;
  display: block;
  width: 2px;
  height: 36px;                /* ajuste si tu veux plus/moins haut */
   background: #000;
  border-radius: 2px;
 
  margin: 0 14px;               /* espace autour de la barre */
}
}


.sb-footer .sb-btn > a{
/* barre après HelloAsso */
   /* le lien remplit et reste transparent */
.sb-buttons--support::after{
   width: 100% !important;
   content: "";
   height: 100% !important;
  display: block;
   background: transparent !important;
   width: 2px;
   height: 36px;
   background: #000;
  border-radius: 2px;
 
  margin: 0 14px;
}
}


/* Bonus: si ton wiki injecte une icône via un élément enfant (rare mais vu) */
/* sur mobile (wrap), on enlève pour éviter des barres perdues */
.sb-footer .external-link-icon,
@media (max-width: 900px){
.sb-footer .mw-ui-icon,
  .sb-buttons--icons::after,
.sb-footer .mw-icon{
  .sb-buttons--support::after{
  display: none !important;
    display: none;
  }
}
}

Dernière version du 5 février 2026 à 11:52

/* =========================================
   BANDEAU FOOTER SOCIAL
   ========================================= */

.sb-footer{
  width: 100%;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 16px;
  border-radius: 12px;

  background: transparent;
  box-shadow: none;

  /* IMPORTANT : évite le scroll/grey wrapper du skin */
  flex-wrap: nowrap;
  overflow: hidden;
}

/* Titres */
.sb-title{
  color: #000 !important;
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
  flex: 0 0 auto;
}

/* (Spacer supprimé) */
.sb-spacer{ display: none !important; }

/* Groupes */
.sb-buttons{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  flex: 0 0 auto;
}

/* =========================================
   BOUTONS (fond garanti via :before)
   ========================================= */

.sb-footer .sb-btn{
  position: relative;
  border-radius: 12px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 2px 8px rgba(0,0,0,.10);
  transition: all .3s cubic-bezier(.4,0,.2,1);

  flex: 0 0 auto;
}

.sb-footer .sb-btn:before{
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 0;

  background: transparent;
  pointer-events: none;
}

.sb-footer .sb-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,.20);
}

/* Tailles */
.sb-icon{ width: 45px; height: 45px; }

.sb-btn.button-link--tiktok img{
  transform: scale(1.8);
  transform-origin: center;
}

/* Support : base */
.sb-support{
  height: 45px;          /* même hauteur que les icônes */
  padding: 0;
  width: auto;
  flex: 0 0 auto;
}

/* =========================================
   Lien plein bouton, au-dessus du fond
   ========================================= */

.sb-footer .sb-btn > a{
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;
  height: 100%;

  margin: 0 !important;
  padding: 0 !important;

  color: #fff !important;
  text-decoration: none !important;

  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* =========================================
   HELLOASSO — compact MAIS logo au-dessus du texte
   ========================================= */

.sb-buttons--support{
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.sb-buttons--support .sb-btn.sb-support{
  flex: 0 0 auto;
  width: 140px;          /* légèrement + large pour stabiliser la colonne */
  height: 45px;
}

.sb-buttons--support .sb-btn.sb-support > a{
  width: 100% !important;

  display: flex;
  flex-direction: column;      /* logo au-dessus */
  justify-content: center;
  align-items: center;

  padding: 0 12px !important;  /* compact horizontal */
  gap: 2px;

  line-height: 1;
  text-align: center;
}

/* Logo : un peu moins "zoomé" pour éviter l’écrasement */
.sb-buttons--support .sb-btn.sb-support img{
  height: 18px !important;
  width: auto !important;

  transform: scale(1.55);      /* avant ~1.9/2 : dézoom */
  transform-origin: center;

  display: block;
  margin: 0 !important;
}

/* Texte : compact et lisible */
.sb-buttons--support .sb-btn.sb-support b,
.sb-buttons--support .sb-btn.sb-support strong{
  display: block;
  margin: 0 !important;
  line-height: 1;

  font-size: 0.66rem;
  font-weight: 600;

  white-space: nowrap;
}

/* =========================================
   Neutraliser wrappers MediaWiki (fichiers)
   ========================================= */

.sb-footer .sb-btn .mw-file-description,
.sb-footer .sb-btn .mw-file-element,
.sb-footer .sb-btn .mw-file-description a,
.sb-footer .sb-btn .mw-file-element a{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Images icônes réseaux sociaux */
.sb-icon img{
  width: 28px !important;
  height: 28px !important;
  object-fit: contain;
  display: block;
  background: transparent !important;
}

/* =========================================
   Supprimer icônes externes (skins)
   ========================================= */

.sb-footer a:after,
.sb-footer a:before,
.sb-footer a.external:after,
.sb-footer a.external:before{
  display: none !important;
  content: none !important;
}

.sb-footer a.external{
  background-image: none !important;
  padding-right: 0 !important;
}

/* =========================================
   COULEURS (fond via :before)
   ========================================= */

.sb-footer .sb-btn.button-link--discord:before   { background: #5865f2; }
.sb-footer .sb-btn.button-link--twitter:before   { background: #1da1f2; }
.sb-footer .sb-btn.button-link--instagram:before {
  background: linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}
.sb-footer .sb-btn.button-link--tiktok:before    { background: #000; }
.sb-footer .sb-btn.button-link--helloasso:before { background: #5a2ca0; }

/* =========================================
   COMPTEURS (à droite) — compact + anti-style skin
   ========================================= */

.sb-counters{
  margin-left: auto;              /* pousse à droite */
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex: 0 0 auto;

  /* évite toute boîte scrollable ajoutée */
  min-width: 0;
}

/* Reset ciblé : on neutralise l'apparence "code" sans casser le reste */
.sb-counters,
.sb-counters *{
  font-family: inherit !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

/* Si le skin injecte code/pre */
.sb-counters code,
.sb-counters pre{
  font-family: inherit !important;
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
}

/* Cartes compteurs */
.sb-counter{
  display: flex;
  align-items: center;
  gap: 6px;

  height: 45px;
  padding: 0 8px;               /* compact pour tenir en 1 ligne */
  border-radius: 12px;

  background: rgba(0,0,0,.05);
  line-height: 1;
  font-size: 0.82rem;
}

.sb-counter__num{
  font-weight: 800;
  font-size: 1.0rem;
}

.sb-counter__label{
  font-weight: 600;
  opacity: .7;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 900px){
  .sb-footer{
    flex-wrap: wrap;
    align-items: flex-start;
    overflow: visible;          /* on autorise le wrap sur petit écran */
  }

  .sb-buttons{ flex-wrap: wrap; }

  /* compteurs passent sur la ligne suivante, sans casser */
  .sb-counters{
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
    margin-top: 6px;
  }
}
/* Empêche les comportements de wrapper/scroll du skin sur la fin de ligne */
.sb-footer{
  overflow: hidden; /* au lieu de visible */
}

/* Compteurs à droite : compact et stable */
.sb-counters{
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex: 0 0 auto;
}

/* Style visuel compteurs */
.sb-counter{
  display: flex;
  align-items: center;
  gap: 6px;
  height: 45px;
  padding: 0 10px;
  border-radius: 12px;
  background: rgba(0,0,0,.05);
  line-height: 1;
  font-size: 0.85rem;
}

.sb-counter__num{
  font-weight: 800;
  font-size: 1.0rem;
}

.sb-counter__label{
  font-weight: 600;
  opacity: .7;
}

/* Neutralise uniquement les styles "code/copy" SI un wrapper est injecté DANS les compteurs */
.sb-counters code,
.sb-counters pre{
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  font-family: inherit !important;
}

/* On évite que des décorations de lien/skin polluent les compteurs */
.sb-counters a:before,
.sb-counters a:after,
.sb-counters .external:before,
.sb-counters .external:after{
  display: none !important;
  content: none !important;
}
/* =========================================
   COMPTEURS — neutraliser le gadget/extension "copier"
   (sans toucher aux boutons)
   ========================================= */

.sb-counters{
  -webkit-user-select: none;
  user-select: none;
}

/* Si le gadget s'accroche à code/pre injectés, on les neutralise */
.sb-counters code,
.sb-counters pre,
.sb-counters kbd,
.sb-counters samp{
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  font-family: inherit !important;
}

/* Certains gadgets posent un bouton via pseudo-éléments / enfants */
.sb-counters [class*="copy"],
.sb-counters .copy-button,
.sb-counters .mw-copybutton,
.sb-counters .mw-clipboard-button{
  display: none !important;
}
/* =========================================
   Séparateurs verticaux entre les 3 sections
   ========================================= */

.sb-buttons--icons,
.sb-buttons--support{
  position: relative;
}

/* barre après Réseaux */
.sb-buttons--icons::after{
  content: "";
  display: block;
  width: 2px;
  height: 36px;                 /* ajuste si tu veux plus/moins haut */
  background: #000;
  border-radius: 2px;

  margin: 0 14px;               /* espace autour de la barre */
}

/* barre après HelloAsso */
.sb-buttons--support::after{
  content: "";
  display: block;
  width: 2px;
  height: 36px;
  background: #000;
  border-radius: 2px;

  margin: 0 14px;
}

/* sur mobile (wrap), on enlève pour éviter des barres perdues */
@media (max-width: 900px){
  .sb-buttons--icons::after,
  .sb-buttons--support::after{
    display: none;
  }
}
Les témoins (''cookies'') nous aident à fournir nos services. En utilisant nos services, vous acceptez notre utilisation de témoins.