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

45 lines
688 B
CSS
Raw Normal View History

.comment {
text-align: left;
position: relative;
2012-03-05 10:24:01 +00:00
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;
2020-03-13 09:23:54 +00:00
top: 0;
left: -195px;
width: 180px;
z-index: 1;
2020-03-13 09:23:54 +00:00
box-shadow: 0 0 4px #000;
border-radius: 4px;
}
.comment:hover .info {
visibility: visible;
}
2012-03-12 04:56:30 +00:00
2015-09-20 15:45:02 +00:00
.comment_add TEXTAREA {
width: 100%;
}
.comment_add INPUT {
width: 100%;
}
2012-06-09 14:52:28 +00:00
#comment-list-list .blockbody,
#comment-list-recent .blockbody,
#comment-list-image .blockbody,
#comment-list-user .blockbody {
2012-03-12 04:56:30 +00:00
background: none;
border: none;
box-shadow: none;
2020-03-13 09:23:54 +00:00
margin: 0;
padding: 0;
2012-03-12 04:56:30 +00:00
}