So i have the following css transitions attached to the a element:
a { -webkit-transition:color 0.1s ease-in, background-color 0.1s ease-in ; -m
If you want to disable a single transition property, you can do:
transition: color 0s;
(since a zero second transition is the same as no transition.)