diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-07-17 14:44:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-17 14:44:36 -0400 |
commit | 3e938f1a1fdb5064f8d11060685699d3217d16a2 (patch) | |
tree | d0589bf9ca95b32b0bc7720c1a3f6e05b767cce4 /ext/css/display.css | |
parent | a933cfdc0780f618bb1ae60930a82a2af954e3cd (diff) |
Display pronunciation refactor (#1835)
* Simplify svg and container styles
* Rename pitch-accent-details to pitch-accent-graph-container
* Rename pitch-accent-graph* to pronunciation-graph*
* Remove unused template
* Omit quotes
* Rename pitch-accent-character to pronunciation-mora
* Simplify names
* Replace pronunciation-mora-inner with pronunciation-character
* Improve grouping of nasal characters
* Simplify character replacement
* Replace pseudo-elements with real elements
* Use an element rather than a fragment
* Rename functions
* Add wrapper
* Rename pitch-accent-characters to pronunciation-text-container
* Update test data
* Update downstep notation generation
* Rename pitch-accent-position to pronunciation-downstep-notation-container
* Space
* Wrap pronunciations in a container node
* Update preview
* Embed pitch accent styles directly
Diffstat (limited to 'ext/css/display.css')
-rw-r--r-- | ext/css/display.css | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ext/css/display.css b/ext/css/display.css index f2e36b56..e2591138 100644 --- a/ext/css/display.css +++ b/ext/css/display.css @@ -1478,11 +1478,11 @@ button.definition-item-expansion-button:focus:focus-visible+.definition-item-con .pitch-accent-tag-list:not([data-count='0']) { margin-right: 0.375em; } -.pitch-accent-details { - display: inline-block; - height: 0; - padding: 0 0.25em; - vertical-align: middle; +.pronunciation-downstep-notation-container { + margin-left: 0.25em; +} +.pronunciation-graph-container { + margin-left: 0.25em; } @@ -1947,13 +1947,13 @@ button.footer-notification-close-button { :root[data-show-pitch-accent-downstep-notation=true] .pitch-accent-disambiguation[data-type=reading] { display: none; } -:root[data-show-pitch-accent-downstep-notation=false] .pitch-accent-characters { +:root[data-show-pitch-accent-downstep-notation=false] .pronunciation-text-container { display: none; } -:root[data-show-pitch-accent-position-notation=false] .pitch-accent-position { +:root[data-show-pitch-accent-position-notation=false] .pronunciation-downstep-notation-container { display: none; } -:root[data-show-pitch-accent-graph=false] .pitch-accent-details { +:root[data-show-pitch-accent-graph=false] .pronunciation-graph-container { display: none; } |