From debf81fe190b83ec25fe39ef19f931eb908108e4 Mon Sep 17 00:00:00 2001 From: StartAutomating Date: Sat, 20 Apr 2024 23:59:45 +0000 Subject: [PATCH] feat: Export-4BitCss bold, italic, underline, strikethru ( Fixes #54, Fixes #55, Fixes #56, Fixes #57 ) --- css/zenburned.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/css/zenburned.css b/css/zenburned.css index 6374f8cdea..b3adef98dc 100644 --- a/css/zenburned.css +++ b/css/zenburned.css @@ -133,6 +133,14 @@ .brightwhite-stroke , .bright-white-stroke , .BrightWhiteFill , .ANSI15-Fill, .ansi15-fill { stroke: var(--brightWhite) } .dim, .Dim { opacity: .5; } .hidden, .Hidden { opacity: 0; } +b, bold, .bold, .Bold { font-weight: bold; } +.boldOff, .BoldOff { font-weight: normal; } +i, italic, .italic, .Italic { font-style: italic; } +.italicOff, .ItalicOff { font-style: normal; } +u, underline, .underline, .Underline { text-decoration: underline; } +.underlineOff, .UnderlineOff { text-decoration: none; } +s, strike, .strike, .Strike { text-decoration: line-through; } +.strikeOff, .StrikeOff { text-decoration: none; } body { color: var(--foreground);