Clickable links in pad

This commit is contained in:
yflory
2018-12-13 13:22:19 +01:00
parent f883fb7e04
commit 2498f45eb3
2 changed files with 86 additions and 9 deletions

View File

@@ -188,3 +188,18 @@ a > img {
max-width: 100%;
}
.cp-link-clicked {
position: absolute;
background: white;
border: 1px solid #333;
border-radius: 5px;
padding: 3px 8px;
display: inline-block;
max-width: 200px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.cp-link-clicked a {
cursor: pointer;
}