2014-09-26 20:41:28 +02:00
|
|
|
table.history {
|
|
|
|
font-size: 80%;
|
|
|
|
}
|
|
|
|
table.history .addition {
|
|
|
|
color: forestgreen;
|
|
|
|
}
|
|
|
|
table.history .addition:before {
|
|
|
|
content: '+';
|
|
|
|
}
|
|
|
|
|
|
|
|
table.history .removal {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
table.history .removal:before {
|
|
|
|
content: '-';
|
|
|
|
}
|
|
|
|
|
|
|
|
table.history .time,
|
|
|
|
table.history .user,
|
|
|
|
table.history .subject {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.history .user img {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.history td {
|
|
|
|
padding: 0.1em 0.25em;
|
2014-11-07 14:40:45 +01:00
|
|
|
word-break: break-all;
|
2014-09-26 20:41:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
table.history ul {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
table.history ul:before {
|
|
|
|
content: ' (';
|
|
|
|
}
|
|
|
|
table.history ul:after {
|
|
|
|
content: ')';
|
|
|
|
}
|
|
|
|
|
|
|
|
table.history li {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
table.history li:not(:last-of-type):after {
|
|
|
|
content: ', ';
|
|
|
|
}
|
2014-11-07 14:40:45 +01:00
|
|
|
|
|
|
|
#history-wrapper {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
#history-wrapper table {
|
|
|
|
margin: 0 auto;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
@media all and (min-width: 77em) {
|
|
|
|
#history-wrapper table {
|
|
|
|
width: 70em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media all and (max-width: 77em) {
|
|
|
|
#history-wrapper table {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|