Skip to content

Commit

Permalink
Unwrap the text-decoration CSS shorthand (#433)
Browse files Browse the repository at this point in the history
Because Safari 15.8 doesn't support it and while newer ones do, this is easy to change.

Introduced in #265
  • Loading branch information
spaze authored Nov 17, 2024
2 parents 43a0393 + c15be29 commit 587b36d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/public/www.michalspacek.cz/i/css/screen.css
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ img { border: none; }
abbr.dtstart, abbr.dtend { text-decoration: none !important; }
abbr[data-title] {
position: relative;
text-decoration: underline dotted;
text-decoration-line: underline;
text-decoration-style: dotted;
}
abbr[data-title]:hover::after, abbr[data-title]:focus::after {
content: attr(data-title);
Expand Down

0 comments on commit 587b36d

Please sign in to comment.