2021-01-04 20:33:25 +03:00
|
|
|
/* VK's Microblog CSS */
|
2021-10-13 19:19:37 +03:00
|
|
|
/* Design belongs to Pavel Durov & VK Group */
|
2021-01-04 20:33:25 +03:00
|
|
|
|
|
|
|
.post {
|
|
|
|
padding: 5px 0 5px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-divider {
|
|
|
|
border-bottom: 1px #ddd solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-author {
|
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
|
|
|
padding: 0 3px 3px 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-author .date {
|
|
|
|
font-size: 11px;
|
|
|
|
color: grey;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-content {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2021-01-08 04:16:03 +03:00
|
|
|
.post-content .text {
|
|
|
|
padding: 0 4px 0 4px;
|
|
|
|
}
|
|
|
|
|
2021-01-04 20:33:25 +03:00
|
|
|
.post-menu {
|
|
|
|
font-size: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-menu .date {
|
|
|
|
color: grey;
|
|
|
|
}
|
|
|
|
|
2021-11-28 14:39:42 +03:00
|
|
|
.comment {
|
|
|
|
padding: 5px 0 0 0;
|
|
|
|
border-top: 1px #ddd solid;
|
|
|
|
}
|
|
|
|
|
2021-11-27 16:31:00 +03:00
|
|
|
.like_wrap {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2021-01-04 20:33:25 +03:00
|
|
|
.repost-icon {
|
2021-01-12 16:58:05 +03:00
|
|
|
background: url('/assets/packages/static/openvk/img/published.gif') no-repeat 0px 0px;
|
2021-01-04 20:33:25 +03:00
|
|
|
height: 12px;
|
|
|
|
margin: 2px 3px 0px;
|
|
|
|
width: 11px;
|
|
|
|
}
|
|
|
|
|
2021-11-27 16:31:00 +03:00
|
|
|
.heart {
|
|
|
|
background: url('/assets/packages/static/openvk/img/like.gif') no-repeat 1px 0px;
|
|
|
|
height: 10px;
|
|
|
|
margin: 2px 3px 0px;
|
|
|
|
width: 11px;
|
|
|
|
float: none;
|
|
|
|
opacity: 0.4;
|
|
|
|
}
|
|
|
|
|
2021-11-28 14:39:42 +03:00
|
|
|
.likeCnt {
|
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
|
2021-11-27 16:31:00 +03:00
|
|
|
#liked {
|
2021-01-04 20:33:25 +03:00
|
|
|
opacity: 1 !important;
|
|
|
|
}
|
|
|
|
|
2021-11-27 16:31:00 +03:00
|
|
|
.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);
|
|
|
|
}
|
|
|
|
|
2021-01-04 20:33:25 +03:00
|
|
|
.post-author .delete {
|
|
|
|
float: right;
|
|
|
|
display: inline-block;
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
|
|
|
overflow: auto;
|
2021-01-12 16:58:05 +03:00
|
|
|
background: url("/assets/packages/static/openvk/img/input_clear.gif") no-repeat 0px 0px;
|
2021-01-04 20:33:25 +03:00
|
|
|
opacity: 0.1;
|
|
|
|
transition-duration: 0.3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-author .delete:hover {
|
|
|
|
opacity: 0.4;
|
|
|
|
}
|
2021-10-09 11:22:08 +03:00
|
|
|
|
|
|
|
.post-author .pin {
|
|
|
|
float: right;
|
|
|
|
display: inline-block;
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
|
|
|
overflow: auto;
|
|
|
|
background: url("/assets/packages/static/openvk/img/pin.png") no-repeat 0px 0px;
|
|
|
|
opacity: 0.1;
|
|
|
|
transition-duration: 0.3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-author .pin:hover {
|
|
|
|
opacity: 0.4;
|
|
|
|
}
|
2021-11-28 14:39:42 +03:00
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|