thanks ! Can I use Microsoft identity platform endpoint instead of Live platform ?
Also on CB Connect I have a question regarding css.
We defined CB Connect buttons with icons and texts for CB Login modules. But for a special CB Login Module located at the top of the page (like yours) we would like to display on Icons and no text.
I defined a special css class in the module but could it be possible to add the choices icon/text/both inside the CB login modules ?
for now I use
Code:
/*suppression des textes sur login haut*/
.no-networks .cbConnectButton.cbConnectButtonIconText {
text-indent: -9999px;
width: 25px;
}
.no-networks .cbConnectButton.cbConnectButtonIconText.cbConnectButtonFacebook::before {
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
font-family: "Font Awesome 5 Brands";
content: "\f39e";
text-indent: 9999px;
}
.no-networks .cbConnectButton.cbConnectButtonIconText.cbConnectButtonGoogle::before {
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
font-family: "Font Awesome 5 Brands";
content: "\f1a0";
text-indent: 9996px;
}
.no-networks .cbConnectButton.cbConnectButtonIconText.cbConnectButtonLinkedin::before {
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
font-family: "Font Awesome 5 Brands";
content: "\f0e1";
text-indent: 9996px;
}
.no-networks .cbConnectButton.cbConnectButtonIconText.cbConnectButtonWindowslive::before {
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
font-family: "Font Awesome 5 Brands";
content: "\f17a";
text-indent: 9996px;
}
.no-networks .cbConnectButton.cbConnectButtonIconText {
margin-top: 0px !important;
margin-right: 10px !important;
}
thanks