Skip to content
Snippets Groups Projects
Commit bd029cad authored by frank.paczynski's avatar frank.paczynski :bulb:
Browse files

fix default style of li elements

parent 72480bf4
No related branches found
No related tags found
No related merge requests found
......@@ -41,9 +41,9 @@ html.embedded {
&.feat-io-ox-core-undoSend .feat-io-ox-core-undoSend,
&.feat-jitsi .feat-jitsi,
&.feat-zoom .feat-zoom {
// fallback is block
display: inherit;
// using `:not` to get the node type into the full selector here
&:not(li) { display: inherit; }
// list-item is browser specific and not covered by inherit
& li { display: list-item; }
display: list-item;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment