openvk/Web/static/css/microblog.css
2022-04-17 13:16:34 +03:00

136 lines
2.3 KiB
CSS

/* VK's Microblog CSS */
/* Design belongs to Pavel Durov & VK Group */
.post {
padding: 5px 0;
}
.post-divider {
border-bottom: 1px #ddd solid;
}
.post-author {
background-color: transparent;
border: none;
padding: 0 3px 3px;
}
.post-author .date {
font-size: 11px;
color: grey;
}
.post-content {
border: none;
}
.post-content .text {
padding: 0 4px;
}
.post-menu {
font-size: 10px;
}
.post-menu .date {
color: grey;
}
.comment {
padding: 5px 0 0;
border-top: 1px #ddd solid;
}
.like_wrap {
display: flex;
}
.repost-icon {
background: url('/assets/packages/static/openvk/img/published.gif') no-repeat 0 0;
height: 12px;
margin: 2px 3px 0;
width: 11px;
}
.heart {
background: url('/assets/packages/static/openvk/img/like.gif') no-repeat 1px 0;
height: 10px;
margin: 2px 3px 0;
width: 11px;
float: none;
opacity: 0.4;
}
.likeCnt {
float: none;
}
#liked {
opacity: 1 !important;
}
.heart:hover {
opacity: 0.4 !important;
}
.post-share-button,
.post-like-button {
display: flex;
padding: 2px;
border-radius: 2px;
transition-duration: 0.2s;
}
.post-share-button:hover,
.post-like-button:hover {
background-color: rgb(240, 240, 240);
}
.post-author .delete {
float: right;
height: 16px;
width: 16px;
overflow: auto;
background: url("/assets/packages/static/openvk/img/input_clear.gif") no-repeat 0 0;
opacity: 0.1;
transition-duration: 0.3s;
}
.post-author .delete:hover {
opacity: 0.4;
}
.post-author .pin {
float: right;
height: 16px;
width: 16px;
overflow: auto;
background: url("/assets/packages/static/openvk/img/pin.png") no-repeat 0 0;
opacity: 0.1;
transition-duration: 0.3s;
}
.post-author .pin:hover {
opacity: 0.4;
}
.expand_button {
background-color: #eee;
width: 100%;
display: inline-block;
height: 30px;
line-height: 28px;
text-align: center;
}
.expand_button:hover {
background-color: #e5e5e5;
}
.commentsTextFieldWrap {
padding: 0 7px;
background-color: #eee;
border: 1px solid #ccc;
border-left: 0;
border-right: 0;
}