Skip to content
This repository has been archived by the owner on Nov 22, 2022. It is now read-only.

Commit

Permalink
Add progress bar styles
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixHenninger committed May 4, 2017
1 parent cbc1bf4 commit f2c6272
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions library/src/starterkit/lib/lab.css
Original file line number Diff line number Diff line change
Expand Up @@ -321,3 +321,20 @@ table:not(.table-plain) > tbody > tr > th {
table.table-striped tr:nth-child(odd) td {
background-color: var(--color-border-internal)
}

/* Progress bar */
.progress {
width: 100%;
height: 8px;
overflow: hidden;
margin: 0.2rem 0 0.4rem;
border-radius: 2px;
border: 1px solid var(--color-border);
}
.progress .progress-bar {
width: 0%;
min-height: 8px;
background-color: var(--color-gray-background);
border-right: 1px solid var(--color-border-internal);
box-sizing: content-box;
}

0 comments on commit f2c6272

Please sign in to comment.