- client: fix popover in the dashboard tables
This commit is contained in:
parent
d23fdaf18f
commit
271ff4fe83
|
@ -1,10 +1,11 @@
|
|||
.stats__table .popover__body {
|
||||
left: 0;
|
||||
left: -10px;
|
||||
min-width: 270px;
|
||||
transform: none;
|
||||
}
|
||||
|
||||
.stats__table .popover__body:after {
|
||||
left: 13px;
|
||||
left: 23px;
|
||||
}
|
||||
|
||||
.stats__table .rt-tr-group:first-child .popover__body,
|
||||
|
|
|
@ -9,7 +9,7 @@ const DomainCell = ({ value }) => {
|
|||
|
||||
return (
|
||||
<div className="logs__row">
|
||||
<div className="logs__text" title={value}>
|
||||
<div className="logs__text logs__text--domain" title={value}>
|
||||
{value}
|
||||
</div>
|
||||
{trackerData && <Popover data={trackerData} />}
|
||||
|
|
|
@ -41,6 +41,10 @@
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
.logs__text--domain {
|
||||
max-width: 285px;
|
||||
}
|
||||
|
||||
.logs__text--wrap,
|
||||
.logs__text--whois {
|
||||
line-height: 1.4;
|
||||
|
|
Loading…
Reference in New Issue