Commit before setting up a new deployment environment
This commit is contained in:
25
static/scss/material-kit-pro/_list-check.scss
Normal file
25
static/scss/material-kit-pro/_list-check.scss
Normal file
@@ -0,0 +1,25 @@
|
||||
// Checklist item
|
||||
// contains the checklist entry info and checkbox
|
||||
|
||||
.checklist-item {
|
||||
&:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 3px;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-color: $primary;
|
||||
border-radius: $border-radius-sm;
|
||||
}
|
||||
}
|
||||
|
||||
// Color variations
|
||||
|
||||
@each $color, $value in $theme-colors {
|
||||
.checklist-item-#{$color} {
|
||||
&:before {
|
||||
background-color: $value;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user