Skip to content

Instantly share code, notes, and snippets.

@JTBrinkmann
Created August 12, 2016 21:59
Show Gist options
  • Save JTBrinkmann/b232366bf077284b149b18b51123b1b3 to your computer and use it in GitHub Desktop.
Save JTBrinkmann/b232366bf077284b149b18b51123b1b3 to your computer and use it in GitHub Desktop.
.post > tbody {
display: flex;
flex-direction: column-reverse;
}
.post_controls .postbit_buttons > a {
display: inline;
border: none;
background: none;
color: #999;
}
.postbit_buttons a:not(.postbit_multiquote) span {
display: inline;
background: none;
padding: 0;
}
.postbit_buttons a.postbit_multiquote span {
display: inline-block;
margin-right: 1em;
}
.postbit_buttons {
display: inline-block;
float: none;
}
#content .postbit_totop {
display: none;
}
.post_controls {
float: right;
opacity: 0;
transition: opacity 200ms ease-out;
}
.post:hover .post_controls {
opacity: 1;
}
.post > tbody > tr:last-child > td {
display: block;
}
.post {
position: relative;
}
.post .tcat {
position: absolute;
top: 0;
right: 0;
height: 22px;
padding: 0 10px;
background: none;
color: inherit;
transition: opacity 200ms ease-out;
}
.post:hover .tcat {
opacity: 0;
}
.post .tcat .float_right {
display: none;
}
.post .tcat .smalltext {
display: block;
padding-top: 5px;
}
/* user info */
.post > tbody > tr:nth-child(2) > td {
font-size: 0;
}
.post > tbody > tr:nth-child(2) > td > a,
.post > tbody > tr:nth-child(2) > td > p,
.post > tbody > tr:nth-child(2) > td > img {
display: none;
}
.post > tbody > tr:nth-child(2) > td > strong {
position: absolute;
top: 7px;
left: 155px;
}
/* message body */
.post td > .smalltext,
.post_content + hr,
.signature {
display: none;
}
.post_body {
font-size: 15px;
}
/* post */
.trow1, .trow2 {
background: none;
}
.post {
border-radius: 10px;
overflow: hidden;
margin-bottom: 01em;
background: rgba(255,255,255, 0.8);
}
.author_avatar {
margin-top: -22px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment