Problem with mouse cursor when using -oxy-display-tags: none;
Posted: Fri May 24, 2024 10:00 pm
Hello!
We use "-oxy-display-tags: none;" in the <para> element and use content: '\00B6'; in the "before" and "after" of the element itself.
We noticed that whenever we click before or after the <para> element, the mouse cursor always stays inside the element. This behavior makes it a little more difficult when the user wants to insert a new element before or after the <para>.
I looked in the documentation for something that could change this behavior, but I didn't find it.
Can you please tell us if it is possible to resolve this situation?
If it is not possible to resolve the mouse cursor, is there any way to change what is written in the tag of a specific element?
Thank you very much.
We use "-oxy-display-tags: none;" in the <para> element and use content: '\00B6'; in the "before" and "after" of the element itself.
We noticed that whenever we click before or after the <para> element, the mouse cursor always stays inside the element. This behavior makes it a little more difficult when the user wants to insert a new element before or after the <para>.
I looked in the documentation for something that could change this behavior, but I didn't find it.
Can you please tell us if it is possible to resolve this situation?
If it is not possible to resolve the mouse cursor, is there any way to change what is written in the tag of a specific element?
Code: Select all
para::before{
content: '\00B6';
font-family: "Arial";
font-size: 18px;
color: red;
display: inline;
margin-right: 5px !important;
}
para::after{
content: '\204B';
font-family: "Arial";
font-size: 20px;
color: red;
display: inline;
margin-left: 5px !important;
}
para{
-oxy-display-tags: none;
-oxy-foldable: false;
}
Thank you very much.