This commit is contained in:
zandercymatics 2024-02-06 09:57:46 -07:00
parent 70bdfd4589
commit 76809a75a8
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
3 changed files with 8 additions and 15 deletions

View file

@ -139,7 +139,7 @@ abbr[title] {
} }
} }
@include at-media(tablet) { @media (min-width: 768px) {
.usa-tooltip__body { .usa-tooltip__body {
width: 250px; width: 250px;
white-space: normal; white-space: normal;

View file

@ -26,15 +26,13 @@
padding-bottom: units(2px); padding-bottom: units(2px);
} }
td { td .no-click-outline-and-cursor-help {
.no-click-outline-and-cursor-help{ outline: none;
outline: none; cursor: help;
cursor: help; use {
use { // USWDS has weird interactions with SVGs regarding tooltips,
// USWDS has weird interactions with SVGs regarding tooltips, // and other components. In this event, we need to disable pointer interactions.
// and other components. In this event, we need to disable pointer interactions. pointer-events: none;
pointer-events: none;
}
} }
} }

View file

@ -1,5 +1,4 @@
from django.test import Client, TestCase from django.test import Client, TestCase
from django.urls import reverse
from django.contrib.auth import get_user_model from django.contrib.auth import get_user_model
from .common import MockEppLib # type: ignore from .common import MockEppLib # type: ignore
@ -8,11 +7,7 @@ from .common import MockEppLib # type: ignore
from registrar.models import ( from registrar.models import (
DomainApplication, DomainApplication,
DomainInformation, DomainInformation,
DraftDomain,
Contact,
User,
) )
from .common import less_console_noise
import logging import logging
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)