Fix email tag always shows "not-allowed" cursor for read-only

This commit is contained in:
nathan 2023-10-31 09:01:27 -06:00
parent af633af45d
commit d1e7040011

View File

@ -57,6 +57,15 @@ export class Et2EmailTag extends Et2Tag
.tag__remove {
order: 3;
}
/* Shoelace disabled gives a not-allowed cursor, but we also set disabled for read-only.
* We don't want the not-allowed cursor, since you can always click the email address
*/
:host([readonly]) {
cursor: pointer !important;
}
`];
}