Skip to content
This repository was archived by the owner on Feb 16, 2024. It is now read-only.

Commit 05e6620

Browse files
committed
feat: add basic :hover support to abbr tags on mobile
Ref: https://discourse.doomemacs.org/t/2530/5
1 parent d7501a9 commit 05e6620

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

mobile/mobile.scss

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
11
.iconic-user-fields {
22
padding-bottom: 2em;
33
}
4+
5+
abbr[title]:hover:after {
6+
outline: 1px solid var(--primary-low);
7+
background-color: var(--header_background);
8+
font-size: 90%;
9+
border-radius: 1px;
10+
padding: 2px 4px;
11+
margin-left: 3px;
12+
margin-right: 3px;
13+
content: ' (' attr(title) ') ';
14+
}

0 commit comments

Comments
 (0)