aboutsummaryrefslogtreecommitdiff
path: root/dev/data
diff options
context:
space:
mode:
authorStephen Kraus <8003332+stephenmk@users.noreply.github.com>2022-05-14 08:59:38 -0500
committerGitHub <noreply@github.com>2022-05-14 09:59:38 -0400
commit6a74746113c724e750620d10b58ad6bac94060c9 (patch)
tree9e3cfbc7e7a5bc3b3c243ab1f2608aa46c99a193 /dev/data
parente9843f67cb6b3ca903015d85e4c1e2ed18557cb0 (diff)
Add new structured content features: lists and the HTML `lang` attribute (#2129)
* Add support for structured content lists and `list-style-type` style A full list of supported style types is documented here: https://developer.mozilla.org/en-US/docs/Web/CSS/list-style-type There's nothing in this code preventing a term bank from assigning, for example, a `list-style-type` style to a `div` element, but it doesn't seem like browsers will complain about things like that. * Add support for `lang` attribute in structured content Support added for the following node types: "ruby", "rt", "rp", "table", "thead", "tbody", "tfoot", "tr", "td", "th", "span", "div", "ol", "ul", "li", "a" I couldn't get it to work for the alt-hover text on "img" tags. Tests are included in the file "test/data/dictionaries/valid-dictionary/term_bank_1.json" * Add styles for structured content lists * Add override rules for new structured-content list styles see: https://github.com/FooSoft/yomichan/pull/2129 Co-authored-by: stephenmk <stephenmk@users.noreply.github.com>
Diffstat (limited to 'dev/data')
-rw-r--r--dev/data/structured-content-overrides.css13
1 files changed, 13 insertions, 0 deletions
diff --git a/dev/data/structured-content-overrides.css b/dev/data/structured-content-overrides.css
index 9fd08f8f..811ed9cf 100644
--- a/dev/data/structured-content-overrides.css
+++ b/dev/data/structured-content-overrides.css
@@ -61,3 +61,16 @@
display: none;
/* remove-property background-color vertical-align width height margin-left background-color position */
}
+.gloss-sc-ol,
+.gloss-sc-ul {
+ /* remove-property padding-left */
+}
+:root[data-glossary-layout-mode=compact] .gloss-sc-ul[data-sc-content=glossary] {
+ /* remove-rule */
+}
+:root[data-glossary-layout-mode=compact] .gloss-sc-ul[data-sc-content=glossary] .gloss-sc-li {
+ /* remove-rule */
+}
+:root[data-glossary-layout-mode=compact] .gloss-sc-ul[data-sc-content=glossary] .gloss-sc-li:not(:first-child)::before {
+ /* remove-rule */
+}