integrations: Fix cursor changing to a pointer at the wrong location.

Basically cursor used to change to a pointer hand (which indicates
something clickable) in area around the actual dropdown.
This commit is contained in:
Aditya Bansal 2018-07-11 22:43:10 +05:30 committed by Tim Abbott
parent 5875eea1b5
commit 7db1dc2434
1 changed files with 9 additions and 4 deletions

View File

@ -2584,7 +2584,6 @@ nav ul li.active::after {
}
.portico-landing.integrations .integration-categories-dropdown {
cursor: pointer;
margin: 30px auto;
display: none;
}
@ -3375,20 +3374,26 @@ nav ul li.active::after {
}
.portico-landing.integrations .integration-categories-dropdown .dropdown-toggle {
cursor: pointer;
position: relative;
padding: 0 25px;
padding: 0;
margin-left: 25px;
margin-right: 25px;
}
.portico-landing.integrations .integration-categories-dropdown i {
position: absolute;
top: 10px;
right: 36px;
right: 11px;
font-size: 24px;
}
.portico-landing.integrations .integration-categories-dropdown .dropdown-list {
display: none;
padding: 0 25px;
cursor: pointer;
padding: 0;
margin-left: 25px;
margin-right: 25px;
}
.portico-landing.integrations .integration-categories-dropdown h3 {