-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMapleStory_Forum_Adjustments.userstyle.css
More file actions
59 lines (58 loc) · 1.85 KB
/
Copy pathMapleStory_Forum_Adjustments.userstyle.css
File metadata and controls
59 lines (58 loc) · 1.85 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("forums.maplestory.nexon.net") {
/* Tooltip from: https://chrisbracco.com/a-simple-css-tooltip/ */
.Meta .DateCreated time[title], .Meta span.DateUpdated[title] {
position: relative;
}
.Meta .DateCreated time[title]::after,
.Meta .DateCreated time[title]::before,
.Meta span.DateUpdated[title]::after,
.Meta span.DateUpdated[title]::before {
position: absolute;
bottom: 150%;
left: 50%;
visibility: hidden;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
opacity: 0;
pointer-events: none;
white-space: pre-wrap;
font-weight: normal;
}
.Meta .DateCreated time[title]::before, .Meta span.DateUpdated[title]::before {
margin-bottom: 5px;
margin-left: -80px;
padding: 7px;
width: 160px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
background-color: #000;
background-color: hsla(0, 0%, 20%, 0.9);
color: #fff;
content: attr(title);
text-align: center;
font-size: 11px;
line-height: 1.2;
}
.Meta .DateCreated time[title]::after, .Meta span.DateUpdated[title]::after {
margin-left: -5px;
width: 0;
border-top: 5px solid #000;
border-top: 5px solid hsla(0, 0%, 20%, 0.9);
border-right: 5px solid transparent;
border-left: 5px solid transparent;
content: " ";
font-size: 0;
line-height: 0;
}
.Meta .DateCreated time[title]:hover::after,
.Meta .DateCreated time[title]:hover::before,
.Meta span.DateUpdated[title]:hover::after,
.Meta span.DateUpdated[title]:hover::before {
visibility: visible;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
opacity: 1;
}
}