diff --git a/src/registrar/assets/sass/_theme/_base.scss b/src/registrar/assets/sass/_theme/_base.scss index 0a62009e7..983af3a01 100644 --- a/src/registrar/assets/sass/_theme/_base.scss +++ b/src/registrar/assets/sass/_theme/_base.scss @@ -139,7 +139,7 @@ abbr[title] { } } -@include at-media(tablet) { +@media (min-width: 768px) { .usa-tooltip__body { width: 250px; white-space: normal; diff --git a/src/registrar/assets/sass/_theme/_tables.scss b/src/registrar/assets/sass/_theme/_tables.scss index 7b13656e7..0d58b5878 100644 --- a/src/registrar/assets/sass/_theme/_tables.scss +++ b/src/registrar/assets/sass/_theme/_tables.scss @@ -26,15 +26,13 @@ padding-bottom: units(2px); } - td { - .no-click-outline-and-cursor-help{ - outline: none; - cursor: help; - use { - // USWDS has weird interactions with SVGs regarding tooltips, - // and other components. In this event, we need to disable pointer interactions. - pointer-events: none; - } + td .no-click-outline-and-cursor-help { + outline: none; + cursor: help; + use { + // USWDS has weird interactions with SVGs regarding tooltips, + // and other components. In this event, we need to disable pointer interactions. + pointer-events: none; } } diff --git a/src/registrar/tests/test_views.py b/src/registrar/tests/test_views.py index 3cfeeeedb..8469071f8 100644 --- a/src/registrar/tests/test_views.py +++ b/src/registrar/tests/test_views.py @@ -1,5 +1,4 @@ from django.test import Client, TestCase -from django.urls import reverse from django.contrib.auth import get_user_model from .common import MockEppLib # type: ignore @@ -8,11 +7,7 @@ from .common import MockEppLib # type: ignore from registrar.models import ( DomainApplication, DomainInformation, - DraftDomain, - Contact, - User, ) -from .common import less_console_noise import logging logger = logging.getLogger(__name__)