forked from Inve1951/BetterDiscordStuff
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathshowURLs.theme.css
38 lines (33 loc) · 834 Bytes
/
showURLs.theme.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* //META{ "name": "Show-URLs", "description": "Shows a link's URL in bottom left corner much like a browser does.", "author": "square", "version": "1.0.3"} *//**/
.chat-3bRxxu .messagesWrapper-3lZDfY {
z-index: unset;
}
.messages-3amgkR a:after,
.topic-2QX7LI a:after
{
content: attr(href);
position: fixed;
bottom: 0;
left: 0;
background: white;
color: black;
font-size: 13.5px;
line-height: 16.5px;
font-weight: 500;
padding: 1px 3px 2px 3px;
max-width: calc(100% - 240px);
transition: opacity .44s linear;
pointer-events: none;
opacity: 0;
z-index: 42;
}
.messages-3amgkR a:hover:after,
.topic-2QX7LI a:hover:after
{
opacity: 1;
animation: fade .44s 10s forwards;
}
@keyframes fade {
to{ opacity: 0; }
}
/* not being restrictive on which <a/> tags are to be handled breaks scrollbars */