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
2020-03-13 09:23:54 +00:00

44 lines
688 B
CSS

.comment {
text-align: left;
position: relative;
word-wrap: break-word;
}
.comment IMG {
max-width: 100%;
}
.comment .info {
visibility: hidden;
text-align: center;
padding: 8px;
background: #DDD;
border: 1px solid #CCC;
position: absolute;
top: 0;
left: -195px;
width: 180px;
z-index: 1;
box-shadow: 0 0 4px #000;
border-radius: 4px;
}
.comment:hover .info {
visibility: visible;
}
.comment_add TEXTAREA {
width: 100%;
}
.comment_add INPUT {
width: 100%;
}
#comment-list-list .blockbody,
#comment-list-recent .blockbody,
#comment-list-image .blockbody,
#comment-list-user .blockbody {
background: none;
border: none;
box-shadow: none;
margin: 0;
padding: 0;
}