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>
This commit is contained in:
parent
12b13fe89a
commit
b5faba1244
1 changed files with 4 additions and 0 deletions
|
@ -54,6 +54,10 @@ body {
|
||||||
min-width: 100%;
|
min-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
abbr[title], acronym[title] {
|
||||||
|
text-decoration: dotted underline;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* scaffholding
|
* scaffholding
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue