I have a webpage built with AngularJS and Bootstrap. It's currently in beta and available online in (German and): teacher.scool.cool
- simply click on "test anmelden"
- navigate to the next page using the menu
This webpage features a fixed transparent header div. No specific configuration for click-through has been set.
.header{
position: fixed;
top: 0;
width: 100%;
color: #FFF;
background: rgba(150, 150, 150, 0.5);
text-align: center;
}
I've come across the property pointer-events: none
.
The buttons themselves do not have any specific configuration for click-through. They are styled with classes such as btn btn-default btn-xs
, containing only a Glyphicon icon.
Is there a way to disable the click-through possibility on these buttons?