Click here to Skip to main content
15,880,405 members
Articles / Web Development / HTML
Tip/Trick

Pure CSS Salesforce-like progressbar Control

Rate me:
Please Sign up or sign in to vote.
5.00/5 (4 votes)
9 Jul 2017CPOL2 min read 7.8K   1  
This simple salesforce-like progressbar control will guide you through some useful CSS techniques

Introduction

This tip covers several CSS techniques: using LESS, using display: flex and some CSS hacks.

You can download the complete source code on github.

Using LESS

LESS is CSS preprocessor which allows extending CSS with some useful features. You can learn more about it here. In this project, I use LESS variables and functions which as you can see later, allow me to work with colors in a cleaner way.

The stylesheet is attached to index.html file as usual CSS.

HTML
<link rel="stylesheet" href="stage-control.min.css"></link> 

LESS file is compiled into stylesheet via:

$ lessc --clean-css stage-contro.less stage-contro.min.css

Making Same Width Stage Items

Consider a container having a random number of items that should have the same width and occupy all available container space.

The solution would be:

CSS
.stage-wrapper {
    display: flex;
} 
.stage-item { 
    flex-basis: 100%; 
}

display: flex allows the container to alter items size and is commonly used for dynamic layouts. flex-basis defines the default size of an element before the remaining space is distributed. 100% makes the same width items suitable for our case.

Drawing and Arrow

Every item box is decorated with an arrow.

Image 1

The idea behind drawing an arrow is zero width and zero height box, which border serves as an arrow itself. The size of the arrow is determined by the size of the border. So for example, if you want to create an arrow pointing right, you fill the left border with some color and other borders you leave transparent.

CSS
.arrow-right { 
    width: 0; 
    height: 0; 
    border-top: 60px solid transparent; 
    border-bottom: 60px solid transparent; 
    border-left: 60px solid green; 
}

To receive arrow after the item box and some white space between two boxes, we combine two arrows: one smaller with the color of the item box and the other one quite bigger white using :before and :after pseudo elements.

CSS
&:before,
&:after {
    border: solid transparent;
    content: " ";
    left: 100%;                
    position: absolute;
    top: 50%;
    z-index: 2
}

&:after {
    border-left-color: inherit;
    border-width: 12px;
    margin-top: -12px;
}

&:before {
    border-color: rgba(255, 255, 255, 0);
    border-left-color: #fff;
    border-width: 14px;
    margin-top: -14px;
}

Hovering Items

Consider our progressbar has already some items passed. Let us introduce the class to mark those items.

CSS
&.stage-active {
    background-color: @active-color;
    
    &:after {
        border-left-color: @active-color;
    }
}

Then how do we display intent to move to some next item and therefore mark this item and items before as passed? The idea is to mark all non-passed items that are before or hover with some lighter shade of @active-color.

Image 2

As soon as in CSS, we can't just select all items before hover, we achieve our goal in two steps:

  1. Mark with lighter shade of @active-color all non-passed children of our control wrapper:
    CSS
    .stage-wrapper:hover div:not(.stage-active) {
        background-color: lighten(@active-color, 20%);
        
        &:after {
            border-left-color: lighten(@active-color, 20%);
        }
    }

    Please note how usage of LESS function lighten allows us not to hardcode lighter shade of active color.

  2. Mark all items after hovered with the default color.
    CSS
    &:hover ~ div:not(.stage-active) {
        background-color: @default-color;
        
        &:after {
            border-left-color: @default-color;
        }
    }    

Hovering Items Backward

Consider a similar logic for pointing item that was already passed to return backward.

Image 3

To achieve our goal, we just mark with accent of active color all items after hovered:

CSS
&:hover ~ div {
    background-color: lighten(@active-color, 20%);
    
    &:after {
        border-left-color: lighten(@active-color, 20%);
    }
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader
Ukraine Ukraine
Team leader with 8 years of experience in the industry. Applying interest to a various range of topics such as .NET, Go, Typescript and software architecture.

Comments and Discussions

 
-- There are no messages in this forum --