about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2023-08-10 23:06:06 +0200
committerbptato <nincsnevem662@gmail.com>2023-08-10 23:06:06 +0200
commitf92e30232252deb194596e7c298cc7fcf56517cb (patch)
tree96e66b86c6a94ea954e4102664b42c3e539484ec
parent3c8d95fefb678155d0c923aac8240b575ce79d5f (diff)
downloadchawan-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.css8
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: ')';
+}