Change comment form styles (#2149)

Update form styles to remove white border and add colour distinction to the background
This commit is contained in:
Andrew Bone 2019-03-21 19:34:10 +00:00 committed by Ben Halpern
parent 937bc63bbb
commit 1694048a1e

View file

@ -219,17 +219,19 @@ a.header-link {
form {
width: 104%;
background: $light-gray;
background: var(--theme-container-background, $light-gray);
background: var(--theme-container-accent-background, $light-gray);
overflow: auto;
position: relative;
margin-bottom: 4px;
z-index: 4;
margin-left: -2%;
border-top: 1px solid $light-medium-gray;
border-top: var(--theme-container-border, 1px solid $light-medium-gray);
@media screen and (min-width: 820px) {
width: calc(100% - 2px);
margin-left: 0%;
border: 1px solid $light-medium-gray;
border: var(--theme-container-border, 1px solid $light-medium-gray);
}
.field {