diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-07-25 18:16:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-25 18:16:07 -0400 |
commit | a9710b8acf6370f229098b172eb2a3aa65ae5dc7 (patch) | |
tree | 956fe3cc2c2d2ad50f98beb2d7e2e9e88a673fc1 /ext/css/display-pronunciation.css | |
parent | 3f738898743804fa07c449063bf3065af00e5aa2 (diff) |
Rename CSS class names "pitch-accent" to "pronunciation" (#1850)
* pitch-accents => pronunciations
* Update dataset property names
* pitch-accent-dictionary => pronunciation-dictionary
* Update styles
* Update template name
* Update attributes
Diffstat (limited to 'ext/css/display-pronunciation.css')
-rw-r--r-- | ext/css/display-pronunciation.css | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/ext/css/display-pronunciation.css b/ext/css/display-pronunciation.css index d416ff75..097b8cf2 100644 --- a/ext/css/display-pronunciation.css +++ b/ext/css/display-pronunciation.css @@ -16,10 +16,10 @@ */ :root { - --pitch-accent-annotation-color: #000000; + --pronunciation-annotation-color: #000000; } :root[data-theme=dark] { - --pitch-accent-annotation-color: #ffffff; + --pronunciation-annotation-color: #ffffff; } .pronunciation-downstep-notation { @@ -34,7 +34,7 @@ position: relative; } .pronunciation-mora-line { - border-color: var(--pitch-accent-annotation-color); + border-color: var(--pronunciation-annotation-color); } .pronunciation-mora[data-pitch=high]>.pronunciation-mora-line { display: block; @@ -105,27 +105,27 @@ .pronunciation-graph-line, .pronunciation-graph-line-tail { fill: none; - stroke: var(--pitch-accent-annotation-color); + stroke: var(--pronunciation-annotation-color); stroke-width: 5; } .pronunciation-graph-line-tail { stroke-dasharray: 5 5; } .pronunciation-graph-dot { - fill: var(--pitch-accent-annotation-color); - stroke: var(--pitch-accent-annotation-color); + fill: var(--pronunciation-annotation-color); + stroke: var(--pronunciation-annotation-color); stroke-width: 5; } .pronunciation-graph-dot-downstep1 { fill: none; - stroke: var(--pitch-accent-annotation-color); + stroke: var(--pronunciation-annotation-color); stroke-width: 5; } .pronunciation-graph-dot-downstep2 { - fill: var(--pitch-accent-annotation-color); + fill: var(--pronunciation-annotation-color); } .pronunciation-graph-triangle { fill: none; - stroke: var(--pitch-accent-annotation-color); + stroke: var(--pronunciation-annotation-color); stroke-width: 5; } |