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

29 lines
443 B
CSS
Raw Normal View History

#comments P {
text-align: left;
width: 150px;
max-width: 150px;
overflow: hidden;
}
.comment {
text-align: left;
position: relative;
2012-03-05 10:24:01 +00:00
word-wrap: break-word;
}
.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;
}