This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/comment/style.css

27 lines
419 B
CSS

#comments P {
text-align: left;
width: 150px;
max-width: 150px;
overflow: hidden;
}
.comment {
text-align: left;
position: relative;
}
.comment .info {
visibility: hidden;
text-align: center;
padding: 8px;
background: #DDD;
border: 1px solid #CCC;
position: absolute;
top: 0px;
right: 0px;
z-index: 1;
box-shadow: 0px 0px 4px #000;
border-radius: 4px;
}
.comment:hover .info {
visibility: visible;
}