Compare commits

..

1 Commits

Author SHA1 Message Date
e94743b0a9 qm post tabs and fixed error with posting 2018-06-27 08:44:55 -04:00

View File

@ -38,10 +38,48 @@ img {
.questPostMeta { .questPostMeta {
white-space: nowrap; white-space: nowrap;
padding-right: 15px;
} }
.questPostData { #QMPostPane {
padding-left: 20px; display: flex;
}
#QMPostTabs {
display: inline-block;
list-style-type: none;
padding: 0;
margin: 0;
background-color: #f1f1f1;
height: 200px;
}
.QMPostTab {
display: block;
padding: 8px 16px;
text-decoration: none;
}
.QMPostTab:hover {
background-color: #555;
color: white;
}
.QMPostTab.active {
background-color: #555;
color: white;
}
.QMPostTabContent {
flex: auto;
padding: 0px 12px;
border: 1px solid #ccc;
border-left: none;
width: 100px;
}
#postTextArea {
max-width: 100%;
} }
#chatPane { #chatPane {