Custom vim cursor breaks down after Live Preview update

Hello, I am wondering if anyone else is experiencing breakdown of custom vim cursor color after the live preview update. I have this snippet of CSS working before:

.cm-fat-cursor .CodeMirror-cursor {
    border-left-width: 0.5em;      
    opacity: 1;                    
    color: #00ff00;                
}        

But after the update, the color seems to be fixed to the same color for the menu toggles in my solarized theme (orange as opposed to the green #00ff00 cursor in my CSS).

Things I have tried

It has been suggested that I should change CodeMirror-cursor to cm-cursor, but making that change dose not fix this problem.

This works for me again:

.cm-fat-cursor .CodeMirror-cursor {      
    border-left-width: 0.5em;            
    opacity: 0.4;                        
    background-color: #00ff00 !important;
}                                        

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.