Merge branch 'master' into ie/fix-toggler

This commit is contained in:
andrewdds
2018-09-17 15:19:48 -04:00
committed by GitHub
35 changed files with 465 additions and 264 deletions

View File

@@ -9,6 +9,10 @@
border-left-width: $gap / 2;
border-left-style: solid;
@include panel-margin;
@include media($medium-screen) {
padding: $gap * 4;
}
}
@mixin alert-level($level) {
@@ -53,6 +57,10 @@
.alert__title {
@include h3;
margin-top: 0;
&:last-child {
margin-bottom: 0;
}
}
.alert__content {

View File

@@ -5,6 +5,10 @@
margin-top: $gap * 4;
margin-bottom: $gap * 4;
&--tight {
margin-top: $gap * 2;
}
.usa-button,
a {
margin: 0 0 0 ($gap * 2);

View File

@@ -246,6 +246,19 @@
}
}
&.no-max-width {
padding-right: $gap * 3;
input, textarea, select, label {
max-width: none;
}
.icon-validation {
left: auto;
right: - $gap * 4;
}
}
&.usa-input--error {
@include input-state('error');
}

View File

@@ -15,6 +15,7 @@
margin: 0 $gap;
padding: 0 $gap;
border-radius: $gap / 2;
white-space: nowrap;
&.label--info {
background-color: $color-primary;

View File

@@ -63,6 +63,7 @@
.panel__heading {
padding: $gap * 2;
@include media($medium-screen) {
padding: $gap * 4;
}
@@ -71,6 +72,10 @@
padding: $gap*2;
}
&--divider {
border-bottom: 1px solid $color-gray-light;
}
h1, h2, h3, h4, h5, h6 {
margin: 0;
display: inline-block;
@@ -90,15 +95,16 @@
justify-content: space-between;
}
}
hr {
border: 0;
border-bottom: 1px dashed $color-gray-light;
margin: ($gap * 4) ($site-margins*-4);
}
}
.panel__actions {
@include panel-actions;
}
hr {
border: 0;
border-bottom: 1px dashed $color-gray-light;
margin: 0px $site-margins*-4;
}

View File

@@ -32,6 +32,12 @@
}
}
.request-approval__review {
.action-group {
margin-bottom: $gap * 6;
}
}
.approval-log {
ol {
list-style: none;
@@ -43,7 +49,7 @@
border-top: 1px dashed $color-gray-light;
&:first-child {
border-top-style: solid;
border-top: none;
}
@include media($medium-screen) {
@@ -94,4 +100,10 @@
}
}
}
.internal-notes {
textarea {
resize: vertical;
}
}
}