[Editor] Update the disclaimer string in the new alt-text dialog (bug 1911738)

And tweak the css in order to take into account that disclaimer can be on two (or more lines).
This commit is contained in:
Calixte Denizet 2024-08-06 10:17:15 +02:00
parent 9ac05e797c
commit fc602c65c0
3 changed files with 5 additions and 5 deletions

View file

@ -973,20 +973,20 @@
#newAltTextDisclaimer {
display: flex;
flex-direction: row;
align-items: center;
gap: 4px;
align-self: stretch;
flex-wrap: wrap;
font-size: 11px;
&::before {
content: "";
display: inline-block;
width: 16px;
width: 17px;
height: 16px;
mask-image: var(--new-alt-text-ai-disclaimer-icon);
mask-size: cover;
background-color: var(--text-secondary-color);
flex: 1 0 auto;
}
}
}