From 3df1ce36442ee1a2f90cfcf1be81fd99fbef23dc Mon Sep 17 00:00:00 2001 From: hius07 <62179190+hius07@users.noreply.github.com> Date: Mon, 19 Apr 2021 03:21:44 +0300 Subject: [PATCH] Style tweaks: add links italic style (#7567) --- frontend/ui/data/css_tweaks.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/frontend/ui/data/css_tweaks.lua b/frontend/ui/data/css_tweaks.lua index f204351d7..fa8f10618 100644 --- a/frontend/ui/data/css_tweaks.lua +++ b/frontend/ui/data/css_tweaks.lua @@ -538,6 +538,17 @@ table, tcaption, tr, th, td { border: black solid 1px; border-collapse: collapse css = [[a, a * { font-weight: normal !important; }]], separator = true, }, + { + id = "a_italic"; + title = _("Links always italic"), + css = [[a, a * { font-style: italic !important; }]], + }, + { + id = "a_not_italic"; + title = _("Links never italic"), + css = [[a, a * { font-style: normal !important; }]], + separator = true, + }, { id = "a_underline"; title = _("Links always underlined"),