Skip to content

Commit

Permalink
Merge pull request #717 from BryceStevenWilley/error_star_color
Browse files Browse the repository at this point in the history
Errors use "bs-form-invalid-color" instead of red
  • Loading branch information
jhpyle authored Dec 1, 2023
2 parents cf15491 + 9da5747 commit 21a9ad0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions docassemble_webapp/docassemble/webapp/static/app/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -191,15 +191,15 @@ i.da-chat-inactive:hover {
.da-form-group.darequired .dawidecol:before {
position: absolute;
content: '*';
color: red;
color: var(--bs-form-invalid-color);
top: 0rem;
left: -0.2rem;
}

.da-form-group.darequired .dagridwide:before {
position: absolute;
content: '*';
color: red;
color: var(--bs-form-invalid-color);
top: 0rem;
left: -0.2rem;
}
Expand All @@ -220,7 +220,7 @@ i.da-chat-inactive:hover {
.da-form-group.darequired .danolabel:before {
position: absolute;
content: '*';
color: red;
color: var(--bs-form-invalid-color);
top: 0rem;
left: -0.2rem;
}
Expand All @@ -231,7 +231,7 @@ i.da-chat-inactive:hover {

.da-form-group.darequired .da-top-label:after {
content: '*';
color: red;
color: var(--bs-form-invalid-color);
margin-left: 0.2em;
}

Expand All @@ -242,7 +242,7 @@ i.da-chat-inactive:hover {
.da-form-group.darequired .da-form-label:after {
position: absolute;
content: '*';
color: red;
color: var(--bs-form-invalid-color);
}

@media (max-width: 767px) {
Expand Down
Loading

0 comments on commit 21a9ad0

Please sign in to comment.