Commit a22e02ce authored by Romain Courteaud's avatar Romain Courteaud

erp5_core: html viewer css

parent cf75fc0e
...@@ -126,3 +126,14 @@ div[data-gadget-url$="gadget_html_viewer.html"] ol { ...@@ -126,3 +126,14 @@ div[data-gadget-url$="gadget_html_viewer.html"] ol {
div[data-gadget-url$="gadget_html_viewer.html"] ol li { div[data-gadget-url$="gadget_html_viewer.html"] ol li {
margin-left: 2em; margin-left: 2em;
} }
div[data-gadget-url$="gadget_html_viewer.html"] dl {
display: grid;
grid-template-columns: max-content auto;
}
div[data-gadget-url$="gadget_html_viewer.html"] dl dt {
grid-column-start: 1;
}
div[data-gadget-url$="gadget_html_viewer.html"] dl dd,
div[data-gadget-url$="gadget_html_viewer.html"] dl dl {
grid-column-start: 2;
}
...@@ -138,4 +138,17 @@ div[data-gadget-url$="gadget_html_viewer.html"] { ...@@ -138,4 +138,17 @@ div[data-gadget-url$="gadget_html_viewer.html"] {
} }
} }
dl {
display: grid;
grid-template-columns: max-content auto;
dt {
grid-column-start: 1;
}
dd, dl {
grid-column-start: 2;
}
}
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment