Tagged: x
-
AuthorPosts
-
April 18, 2016 at 6:15 am #888025
Hello,
when clicking on links or accordion, the buttons are flickering black/white. Do you have an idea why this occurs?
Thanks for any help in advance,
best regards, Moritz
April 18, 2016 at 6:15 am #888027This reply has been marked as private.April 18, 2016 at 8:38 am #888254Hi Moritz,
Thanks for writing in!
I’ve checked your “Destination” page and tried changing the accordions but couldn’t replicate any issue. Would you mind confirming the issue again? Perhaps, you can provide us with some screenshots so we can take a closer look to the issue.
Thank you!
April 18, 2016 at 11:37 am #888556This reply has been marked as private.April 18, 2016 at 11:52 am #888578This reply has been marked as private.April 19, 2016 at 12:36 am #889310Hi there,
Thanks for writing back. I have tested with mobile device but couldn’t see any flickering issue. The accordion is working as expected smoothly.
Kindly check from a different device.
Cheers!
April 19, 2016 at 10:45 am #890296Hey Rupok,
I think I found out what that flickering is. Its the default background flicker when clicking any link on touch devices.
I read it’s possible to handle that issue with -webkit-tap-highlight-color: rgba(0,0,0,0);.
It worked when addind the css to a specific item (for example: a.x-btn-navbar) No more flicker on the navbar mobil button.
Do you know if this is globally possible on all links, menus and tappable icons and features or do I need to add this to every thingle item css selector?
Thanks in advance,
best regards,
Moritz
April 19, 2016 at 11:09 pm #891173Hi Moritz,
Thanks for updating. Great find. You can add this CSS to apply this globally for all links out there :
input, textarea, button, select, a { -webkit-tap-highlight-color: rgba(0,0,0,0)!important; }
Hope this helps.
Cheers!
April 20, 2016 at 4:07 am #891461Thanks so much. This worked for most parts 😉
It didn’t work for the tabbed content boxes which I have on my site: http://www.medibroad.com/kenya/
And it didnt work for the link menu of the essential grids on: http://www.medibroad.com/destinations/
Do you have any other idea?
Thanks again for your great help,
Best regards,
Moritz
April 20, 2016 at 10:35 am #892010Hi Moritz,
Thanks for writing back. The above code should override all of these and I can see the code is working on all the links. If you face this on specific links then kindly add some screenshots to pint those elements as I can’t determine which link/tabbed content you are referring.
Cheers!
April 21, 2016 at 3:22 am #893243Hey Rubok,
1. all the navmenus of the essential grids: “Destinations” (See screenshot example)
2. all the tabbed content boxes: “Destinations > Kenya” (See screenshot example)Thanks in advance,
Moritz
April 21, 2016 at 3:28 am #893253Hey Rubok,
I think I got it.
I added the bottom two selectors. Is that the right way?
.input,
.textarea,
.button,
.select,
.x-nav-tabs,
.esg-filterbutton,
a {
-webkit-tap-highlight-color: rgba(0,0,0,0)!important;
}Cheers,
Moritz
April 21, 2016 at 10:35 am #893857Hi there Moritz,
That is indeed correct, glad to see you got this resolved! Let us know if we can be of any further assistance. 🙂
Thank you!
April 21, 2016 at 12:25 pm #894055Cool 😉
Thanks a lot for your great help again.
Best regards,
Moritz
April 22, 2016 at 2:07 am #894884You’re welcome Moritz!
-
AuthorPosts