mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-25 07:50:23 +01:00
128 lines
2.4 KiB
CSS
128 lines
2.4 KiB
CSS
.mod-reports {
|
|
display: block;
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.mod-report {
|
|
border: none;
|
|
border-bottom: 1px solid #B7C5D9;
|
|
clear: left;
|
|
|
|
padding: 0.5em;
|
|
}
|
|
.mod-report:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.report-header {
|
|
margin: 0 0 0.25em 0;
|
|
}
|
|
|
|
.report-list {
|
|
display: block;
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.report-item {
|
|
display: inline-block;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.report-item .report {
|
|
background: #D6DAF0;
|
|
margin: 0.2em 4px 0.2em 0;
|
|
padding: 0.3em 0.3em 0.5em 0.6em;
|
|
border-width: 1px;
|
|
border-style: none solid solid none;
|
|
border-color: #B7C5D9;
|
|
display: inline-block;
|
|
max-width: 94% !important;
|
|
}
|
|
.report-reason {
|
|
display: block;
|
|
font-size: 115%;
|
|
line-height: 115%;
|
|
}
|
|
|
|
.report-details {
|
|
display: block;
|
|
margin: 0.3em 0 0 0;
|
|
padding: 0.3em 0 0 0;
|
|
clear: left;
|
|
list-style: none;
|
|
}
|
|
.report-detail {
|
|
display: block;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.detail-name {
|
|
display: inline-block;
|
|
min-width: 6.25em;
|
|
}
|
|
|
|
.report-actions {
|
|
display: block;
|
|
border: none;
|
|
border-top: 1px solid #B7C5D9;
|
|
margin: 0.3em 0 0 0;
|
|
padding: 0.3em 0 0 0;
|
|
clear: left;
|
|
list-style: none;
|
|
}
|
|
.report-action {
|
|
display: inline-block;
|
|
margin: 0 0.5em 0 0;
|
|
padding: 0;
|
|
}
|
|
.report-action::after {
|
|
display: inline-block;
|
|
margin: 0 0 0 0.5em;
|
|
padding: 0;
|
|
content: ' | ';
|
|
}
|
|
.report-action:last-child::after {
|
|
display: none;
|
|
content: '';
|
|
}
|
|
|
|
|
|
.report-content div.post.reply,
|
|
.report-content div.thread {
|
|
background: #D6DAF0;
|
|
margin: 0.2em 4px 0.2em 0;
|
|
padding: 0.3em 0.3em 0.5em 0.6em;
|
|
border-width: 1px;
|
|
border-style: none solid solid none;
|
|
border-color: #B7C5D9;
|
|
display: inline-block;
|
|
max-width: 94% !important;
|
|
}
|
|
.mod-report:hover .report-content div.post.reply,
|
|
.mod-report:hover .report-content div.thread {
|
|
background: #FFC4C4;
|
|
border-color: #F88;
|
|
}
|
|
.report-content-actions {
|
|
display: block;
|
|
padding: 0.3em 0;
|
|
clear: left;
|
|
list-style: none;
|
|
}
|
|
.report-content-action {
|
|
display: inline-block;
|
|
margin: 0 0.5em 0 0;
|
|
padding: 0;
|
|
}
|
|
.report-content-action::after {
|
|
display: inline-block;
|
|
margin: 0 0 0 0.5em;
|
|
padding: 0;
|
|
content: ' | ';
|
|
}
|
|
.report-content-action:last-child::after {
|
|
display: none;
|
|
content: '';
|
|
} |