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,8 +26,7 @@
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 {
@ -36,7 +35,6 @@
pointer-events: none; pointer-events: none;
} }
} }
}
// Ticket #1510 // Ticket #1510
// @include at-media('desktop') { // @include at-media('desktop') {

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