Merge pull request #227 from dod-ccpo/member-roles

Member roles
This commit is contained in:
andrewdds
2018-08-29 10:49:12 -04:00
committed by GitHub
6 changed files with 193 additions and 26 deletions

View File

@@ -1,7 +1,7 @@
@mixin block-list {
@include panel-margin;
> ul {
ul, dl {
list-style: none;
margin: 0;
padding: 0;
@@ -95,6 +95,30 @@
.block-list__item {
@include block-list-item;
&.block-list__item--selectable {
> label {
margin: 0;
max-width: none;
display: flex;
flex-direction: row-reverse;
align-items: center;
justify-content: space-between;
&::before {
flex-shrink: 0;
}
&:hover {
color: $color-primary;
}
}
input:checked {
+ label {
color: $color-primary;
}
}
}
}
.block-list__footer {

View File

@@ -18,11 +18,15 @@ h1, h2, h3, h4, h5, h6 {
font-family: $font-sans;
margin: ($gap * 2) 0;
+ .subtitle * {
margin-top: 0;
.subtitle,
+ .subtitle {
color: $color-gray;
}
+ .subtitle, * {
margin-top: 0;
}
}
.h1 { @include h1; }