-
Notifications
You must be signed in to change notification settings - Fork 106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question : Styling the linking line between two visited steps #242
Comments
You can change the properties of the lines connecting two circles by using: aw-wizard-navigation-bar.horizontal.small ul.steps-indicator li:not(:last-child):before {
...
} Here it is important to understand that aw-wizard-navigation-bar.horizontal.small ul.steps-indicator li.done:not(:last-child):before {
background-color: green !important;
} Please be aware that this can look somehow stupid in some instances, for example if you back to a previous step. In this case you would have a break inside your green line because of the @earshinov while writing this I stumbled over our misusing of |
Okey, I get it now, I had missed the "li.done:not(:last-child):before" part in my used CSS selector. |
Yes, I agree that |
Hello Mr. @madoar ,
I'm interested in how @Gevko did succeed in #183 to change the color of the horizontal line linking/between two visited steps like int the picture below based on what you were asking for. Because whenever I try to play with the CSS I finish by styling the whole line, not only the part of the visited steps :/
Thank you guys in advance for your help =)
The text was updated successfully, but these errors were encountered: