I am currently working on implementing transitions to div elements within an isotope (v2) list. Specifically:
.isotope-item {
width: 340px;
height: 223px;
border: 10px solid black;
background-color: #000;
-webkit-transition: background-color 0.25s linear, border-color 0.25s linear;
transition: background-color 0.25s linear, border-color 0.25s linear;
}
The issue arises when the transitions I add start conflicting with the automatic transitions generated by isotope. This results in my transitions not functioning properly and the ease transition-timing of isotope being affected.
Is there a way for me to apply my transitions without them being overridden by or overriding the automatically applied isotope transitions?