mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-14 21:44:08 +02:00
Additional hover styling
This commit is contained in:
parent
3224d41c33
commit
3b186509c1
3 changed files with 8 additions and 2 deletions
|
@ -27,11 +27,16 @@ a.usa-button {
|
||||||
}
|
}
|
||||||
|
|
||||||
a.usa-button.disabled-link {
|
a.usa-button.disabled-link {
|
||||||
pointer-events: none !important;
|
|
||||||
cursor: default !important;
|
cursor: default !important;
|
||||||
background-color: #ccc !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) {
|
a.usa-button:not(.usa-button--unstyled, .usa-button--outline) {
|
||||||
color: color('white');
|
color: color('white');
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,7 +46,7 @@ path = Path(__file__)
|
||||||
|
|
||||||
env_db_url = env.dj_db_url("DATABASE_URL")
|
env_db_url = env.dj_db_url("DATABASE_URL")
|
||||||
env_debug = env.bool("DJANGO_DEBUG", default=False)
|
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_log_level = env.str("DJANGO_LOG_LEVEL", "DEBUG")
|
||||||
env_base_url = env.str("DJANGO_BASE_URL")
|
env_base_url = env.str("DJANGO_BASE_URL")
|
||||||
env_getgov_public_site_url = env.str("GETGOV_PUBLIC_SITE_URL", "")
|
env_getgov_public_site_url = env.str("GETGOV_PUBLIC_SITE_URL", "")
|
||||||
|
|
|
@ -4,6 +4,7 @@ from django.shortcuts import render
|
||||||
from registrar.models import DomainApplication
|
from registrar.models import DomainApplication
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
|
|
||||||
|
|
||||||
def index(request):
|
def index(request):
|
||||||
"""This page is available to anyone without logging in."""
|
"""This page is available to anyone without logging in."""
|
||||||
context = {}
|
context = {}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue