Security

last person joined: 10 hours ago 

Forum to discuss Enterprise security using HPE Aruba Networking NAC solutions (ClearPass), Introspect, VIA, 360 Security Exchange, Extensions, and Policy Enforcement Firewall (PEF).
Expand all | Collapse all

Guest Social Login - Instagram Button Missing CSS

This thread has been viewed 2 times
  • 1.  Guest Social Login - Instagram Button Missing CSS

    MVP
    Posted Apr 03, 2017 02:24 PM

    Good afternoon everyone,

     

    Was wondering if anyone came across this before. Setting up Social Logins on 6.5.6 and when we add Instagram to the Galleria-2 Skin, the button is transparent w/ no color and the Instagram Logo is missing from the button as well, just a white box. I was able to add the coloring by adding the following to the skin:

     

    .btn-instagram {

    background-color: #e4405f;

    background-image: linear-gradient(to bottom, #e4405f, #b9324c);

    background-repeat: repeat-x;

    border-color: #ad0424;

    }

     

    I can't figure out how to add the image or why all of this is needed in the first place. It seems the .btn-instagram was not even present in the page even when the Instagram option is enabled. 

     

    Thanks.

     



  • 2.  RE: Guest Social Login - Instagram Button Missing CSS

    Posted Feb 16, 2018 01:32 PM
      |   view attached

    I have the issue within version 6.6.9.35339, looking at source code of page using "Galleria Skin" and I can not found Instagram button, so I used the code for Google button and change the colors, the only thing that not enabled is the icon, maybe if you try to put icon image at public content and call for the image at the button code. 

     

    Here is the used code in the Galleria Skin pluggin:

    .btn-instagram {
    color: white;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #c83e2d;
    background-image: -moz-linear-gradient(top, #C34BAF, #FF1818);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#C34BAF), to(#FF1818));
    background-image: -webkit-linear-gradient(top, #C34BAF, #FF1818);
    background-image: -o-linear-gradient(top, #C34BAF, #FF1818);
    background-image: linear-gradient(to bottom, #C34BAF, #FF1818);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFC34BAF', endColorstr='#FFFF1818', GradientType=0);
    border-color: #FF1818 #FF1818 #691c12;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    *background-color: #FF1818;
    /* Darken IE7 buttons by default so they stand out more given they won't have borders */
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    border-color: #a12b1c; }
    .btn-instagram:hover, .btn-instagram:focus, .btn-instagram:active, .btn-instagram.active, .btn-instagram.disabled, .btn-instagram[disabled] {
    color: white;
    background-color: #FF1818;
    *background-color: #94271a; }
    .btn-instagram:active, .btn-instagram.active {
    background-color: #7e2216 \9; }

     

    I hope in the next releases Aruba correct it.