Adaptable Theme Clicking on Social Icons

Adaptable Theme Clicking on Social Icons

by Nico B -
Number of replies: 2

Moodle version  3.10.4+ (Build: 20210617), Adaptable version 3.10.1.2

When I click on a social icon, a rectangular transparent block appears. Is there a way to avoid this with some custom CSS? Any help will be appreciated.


Average of ratings: -
In reply to Nico B

Re: Adaptable Theme Clicking on Social Icons

by Nico B -

.socialicons a {
  background-color: transparent !important;
}
I got close to a solution but no cigar. I hope someone out there can help.
Sill a small stripe

In reply to Nico B

Re: Adaptable Theme Clicking on Social Icons

by Nico B -
I worked it out 🙂. 
This is what I used as custom css:

.socialicons a {
  background-color: transparent !important;
}
#page-footer a:not([class]):focus, a:not([class]):focus {
    box-shadow: none;
}