Skip to content

Commit

Permalink
Fix D1 newsletter signup input CSS bug
Browse files Browse the repository at this point in the history
Fixes #2157
  • Loading branch information
robyngit committed Aug 4, 2023
1 parent 50ce947 commit 83ab37e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/js/themes/dataone/css/metacatui.css
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ input[type=search], select, textarea {
padding-left: 10px;
box-shadow: 0 0.03rem 0.5rem -0.2rem var(--c-shadow-3-on-default,var(--c-shadow-2-on-default,rgba(1,1,1,0.08)));
}
*::placeholder {
color: var(--c-neutral-4) !important;
*::placeholder, input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
color: var(--c-neutral-4);
}
.input-append .add-on:last-child, .input-append .btn-group:last-child>.dropdown-toggle, .input-append .btn:last-child {
margin-left: -4px;
Expand Down Expand Up @@ -2477,4 +2477,8 @@ a.d1_footer__sitemap-link {
.citation.header .authors {
font-weight: 400;
line-height: 1.9;
}

input.form-control:focus:invalid:focus {
border-color: var(--section-c-accent,var(--c-major-accent-on-default,grey));
}

0 comments on commit 83ab37e

Please sign in to comment.