Merge pull request #15552 from Godmartinz/ragged-form-inputs

Fixed input field misalignments
This commit is contained in:
snipe 2024-09-25 11:31:23 +01:00 committed by GitHub
commit 21f8ac8e52
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 4 deletions

View file

@ -384,7 +384,7 @@ a.logo.no-hover a:hover {
background-color: transparent; background-color: transparent;
} }
.required { input:required, select:required {
border-right: 6px solid orange; border-right: 6px solid orange;
} }

View file

@ -156,10 +156,10 @@ a.accordion-header {
height: 150px; height: 150px;
} }
.select2-container { .select2-container {
width: 100%; width: 100%;
} }
.error input { .error input {
color: #a94442; color: #a94442;
border: 2px solid #a94442 !important; border: 2px solid #a94442 !important;
@ -341,8 +341,11 @@ a.logo.no-hover a:hover {
} }
.required { input:required, select:required {
border-right: 6px solid orange; border-right: 4px solid orange;
}
select:required + .select2-container .select2-selection {
border-right: 4px solid orange;
} }
body { body {