also renamed all occurrences of "instance" to "machine" because there were many inconsistencies
42 lines
490 B
SCSS
42 lines
490 B
SCSS
@import "../../../styles/_variables.scss";
|
|
|
|
.list-group-item
|
|
{
|
|
background: none;
|
|
|
|
span
|
|
{
|
|
display: inline-block;
|
|
position: relative;
|
|
|
|
&:after
|
|
{
|
|
content: '.';
|
|
color: $table-header-color;
|
|
}
|
|
}
|
|
|
|
b, .strong
|
|
{
|
|
color: #ff9c07;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.highlight
|
|
{
|
|
color: rgba(#ff9c07, .75);
|
|
}
|
|
|
|
+ .dropdown-header
|
|
{
|
|
margin-top: .5rem;
|
|
}
|
|
}
|
|
|
|
.dropdown-header
|
|
{
|
|
opacity: 1;
|
|
color: $table-header-color;
|
|
padding: .5rem 0 0;
|
|
}
|