luci-theme-openwrt-2020: add styling of abbreviations and acronyms

Style abbreviations and acronyms with dotted underline text-decoration
as without the style it's quite hard to find out which text is
abbreviation or acronym.

References: https://developer.mozilla.org/en-US/docs/Archive/Web_Standards/Styling_Abbreviations_and_Acronyms
Signed-off-by: Petr Štetiar <ynezz@true.cz>
(cherry picked from commit b5faba1244)
This commit is contained in:
Petr Štetiar 2020-12-14 12:53:01 +01:00 committed by Jo-Philipp Wich
parent 8acd0d76c4
commit 0ef4b2f1b3

View file

@ -54,6 +54,10 @@ body {
min-width: 100%; min-width: 100%;
} }
abbr[title], acronym[title] {
text-decoration: dotted underline;
}
/* /*
* scaffholding * scaffholding
*/ */