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 {
width: 250px;
white-space: normal;

View file

@ -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;
}
}

View file

@ -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__)