From 7973eb7c3f6531a41adb9de63d1b3c4d5d4b7d03 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Tue, 28 Nov 2023 01:06:47 +0900 Subject: [PATCH] [ruby/rdoc] [DOC] Slightly decorate `em` and `strong` https://github.com/ruby/rdoc/commit/2161157205 --- lib/rdoc/generator/template/darkfish/css/rdoc.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/lib/rdoc/generator/template/darkfish/css/rdoc.css b/lib/rdoc/generator/template/darkfish/css/rdoc.css index f845d6cecb..2cc55e03b1 100644 --- a/lib/rdoc/generator/template/darkfish/css/rdoc.css +++ b/lib/rdoc/generator/template/darkfish/css/rdoc.css @@ -87,6 +87,17 @@ pre { border-radius: 0.2em; } +em { + text-decoration-color: rgba(52, 48, 64, 0.25); + text-decoration-line: underline; + text-decoration-style: dotted; +} + +strong, +em { + background-color: rgba(158, 178, 255, 0.1); +} + table { margin: 0; border-spacing: 0;