diff options
author | bptato <nincsnevem662@gmail.com> | 2023-08-10 23:06:06 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2023-08-10 23:06:06 +0200 |
commit | f92e30232252deb194596e7c298cc7fcf56517cb (patch) | |
tree | 96e66b86c6a94ea954e4102664b42c3e539484ec | |
parent | 3c8d95fefb678155d0c923aac8240b575ce79d5f (diff) | |
download | chawan-f92e30232252deb194596e7c298cc7fcf56517cb.tar.gz |
ua.css: add parens to rt before and after
Forgot to add any replacement for rp after setting it to display: none, so parentheses around ruby text were not being displayed.
-rw-r--r-- | res/ua.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/res/ua.css b/res/ua.css index 5c020ba0..8404c8b6 100644 --- a/res/ua.css +++ b/res/ua.css @@ -297,3 +297,11 @@ center { blink { text-decoration: blink; } + +rt::before { + content: '('; +} + +rt::after { + content: ')'; +} |