Merge pull request #201 from Safelite/feature/digital/SSR-310

Firefox styling fixes for welcome-page
This commit is contained in:
katiekroell 2023-03-17 15:50:09 -04:00 committed by GitHub
commit 43675a475e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,6 +50,7 @@
disableAutoFill disableAutoFill
validationRules="damage-option-required" validationRules="damage-option-required"
placeHolderText="Select an option" placeHolderText="Select an option"
id="welcomeDropdown"
/> />
</div> </div>
</div> </div>
@ -77,6 +78,7 @@
isRequired isRequired
disableAutoFill disableAutoFill
placeHolderText="Select an option" placeHolderText="Select an option"
id="welcomeDropdown"
/> />
</div> </div>
</div> </div>
@ -342,11 +344,16 @@
{ {
margin-bottom: 0rem !important; margin-bottom: 0rem !important;
} }
// Temporary solution that prevents the Continue button from being hidden in Firefox
@-moz-document url-prefix() { @-moz-document url-prefix() {
// Temporary solution that prevents the Continue button from being hidden in Firefox
#welcomeFooter { #welcomeFooter {
position: static !important; position: static !important;
} }
// Fixes Firefox styling defect for placeholder text in dropdown fields
#welcomeDropdown {
.form-select {
padding: 0.75rem 1rem;
}
}
} }
</style> </style>