Implement workflow error list popover in header

[MAILPOET-4659]
This commit is contained in:
Jan Jakes
2022-10-06 12:19:29 +02:00
committed by Jan Jakeš
parent 5be82a17ad
commit a085b33b62
4 changed files with 218 additions and 7 deletions

View File

@ -0,0 +1,32 @@
.mailpoet-automation-errors {
padding: 8px 0;
width: 280px;
}
.mailpoet-automation-errors-header {
font-weight: 600;
padding: 8px 12px;
}
.mailpoet-automation-step-error {
align-items: center;
appearance: none;
background: none;
border: none;
cursor: pointer;
display: grid;
gap: 12px;
grid-template-columns: auto 1fr;
padding: 9px 12px;
text-align: left;
width: 100%;
&:hover {
background: #f6f7f7;
}
&:focus-visible {
box-shadow: inset 0 0 0 1.5px #2271b1;
outline: none;
}
}