mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-25 20:18:38 +02:00
Linting
This commit is contained in:
parent
70bdfd4589
commit
76809a75a8
3 changed files with 8 additions and 15 deletions
|
@ -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;
|
||||||
|
|
|
@ -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;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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__)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue