mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
19 lines
463 B
CSS
19 lines
463 B
CSS
{% set stepsColor = setting_value('visiosoft.module.advs::steps_color') %}
|
|
|
|
#stepProgressBar .step.current .bullet {
|
|
color: {{ stepsColor }};
|
|
border: 0.2rem solid {{ stepsColor }};
|
|
}
|
|
|
|
#stepProgressBar .step .bullet {
|
|
background-color: {{ stepsColor }};
|
|
}
|
|
|
|
#stepProgressBar .step.current::after {
|
|
background: linear-gradient(to right, {{ stepsColor }} 50%, #dfdfdf 50%);
|
|
}
|
|
|
|
#stepProgressBar .step::after {
|
|
background-color: {{ stepsColor }};
|
|
}
|