Additional hover styling

This commit is contained in:
zandercymatics 2023-11-03 14:24:31 -06:00
parent 3224d41c33
commit 3b186509c1
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
3 changed files with 8 additions and 2 deletions

View file

@ -27,11 +27,16 @@ a.usa-button {
}
a.usa-button.disabled-link {
pointer-events: none !important;
cursor: default !important;
background-color: #ccc !important;
}
a.usa-button.disabled-domain-request-link:hover {
color: #ccc !important;
cursor: not-allowed !important;
text-decoration: none !important;
}
a.usa-button:not(.usa-button--unstyled, .usa-button--outline) {
color: color('white');
}

View file

@ -46,7 +46,7 @@ path = Path(__file__)
env_db_url = env.dj_db_url("DATABASE_URL")
env_debug = env.bool("DJANGO_DEBUG", default=False)
env_is_production = env.bool("IS_PRODUCTION", default=False)
env_is_production = env.bool("IS_PRODUCTION", default=False)
env_log_level = env.str("DJANGO_LOG_LEVEL", "DEBUG")
env_base_url = env.str("DJANGO_BASE_URL")
env_getgov_public_site_url = env.str("GETGOV_PUBLIC_SITE_URL", "")

View file

@ -4,6 +4,7 @@ from django.shortcuts import render
from registrar.models import DomainApplication
from django.conf import settings
def index(request):
"""This page is available to anyone without logging in."""
context = {}