2014-09-26 20:41:28 +02:00
|
|
|
table.history {
|
2015-06-28 12:25:35 +02:00
|
|
|
font-size: 80%;
|
|
|
|
border-spacing: 0;
|
2014-09-26 20:41:28 +02:00
|
|
|
}
|
|
|
|
table.history .addition {
|
2015-06-28 12:25:35 +02:00
|
|
|
color: #228022;
|
2014-09-26 20:41:28 +02:00
|
|
|
}
|
|
|
|
table.history .addition:before {
|
2015-06-28 12:25:35 +02:00
|
|
|
content: '+';
|
2014-09-26 20:41:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
table.history .removal {
|
2015-06-28 12:25:35 +02:00
|
|
|
color: #e02222;
|
2014-09-26 20:41:28 +02:00
|
|
|
}
|
|
|
|
table.history .removal:before {
|
2015-06-28 12:25:35 +02:00
|
|
|
content: '-';
|
2014-09-26 20:41:28 +02:00
|
|
|
}
|
|
|
|
|
2014-11-11 16:19:30 +01:00
|
|
|
table.history .user img {
|
2015-06-28 12:25:35 +02:00
|
|
|
vertical-align: middle;
|
2014-11-11 16:19:30 +01:00
|
|
|
}
|
|
|
|
|
2014-09-26 20:41:28 +02:00
|
|
|
table.history .time,
|
|
|
|
table.history .user,
|
|
|
|
table.history .subject {
|
2015-06-28 12:25:35 +02:00
|
|
|
white-space: nowrap;
|
2014-09-26 20:41:28 +02:00
|
|
|
}
|
2014-11-11 16:19:30 +01:00
|
|
|
table.history .difference {
|
2015-06-28 12:25:35 +02:00
|
|
|
word-break: break-all;
|
2014-09-26 20:41:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
table.history td {
|
2015-06-28 12:25:35 +02:00
|
|
|
padding: 0.3em 0.5em 0.3em 0.25em;
|
|
|
|
word-break: break-word;
|
|
|
|
word-wrap: break-word;
|
|
|
|
vertical-align: top;
|
2014-11-11 16:19:30 +01:00
|
|
|
}
|
|
|
|
table.history tr:nth-child(2n+1) td {
|
2015-06-28 12:25:35 +02:00
|
|
|
background: #fafafa;
|
2014-09-26 20:41:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
table.history ul {
|
2015-06-28 12:25:35 +02:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
display: inline;
|
2014-09-26 20:41:28 +02:00
|
|
|
}
|
|
|
|
table.history ul:before {
|
2015-06-28 12:25:35 +02:00
|
|
|
content: ' (';
|
2014-09-26 20:41:28 +02:00
|
|
|
}
|
|
|
|
table.history ul:after {
|
2015-06-28 12:25:35 +02:00
|
|
|
content: ')';
|
2014-09-26 20:41:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
table.history li {
|
2015-06-28 12:25:35 +02:00
|
|
|
display: inline;
|
2014-09-26 20:41:28 +02:00
|
|
|
}
|
|
|
|
table.history li:not(:last-of-type):after {
|
2015-06-28 12:25:35 +02:00
|
|
|
content: ', ';
|
2014-09-26 20:41:28 +02:00
|
|
|
}
|
2014-11-07 14:40:45 +01:00
|
|
|
|
|
|
|
#history-wrapper {
|
2015-06-28 12:25:35 +02:00
|
|
|
text-align: center;
|
2014-11-07 14:40:45 +01:00
|
|
|
}
|
|
|
|
#history-wrapper table {
|
2015-06-28 12:25:35 +02:00
|
|
|
margin: 0 auto;
|
|
|
|
text-align: left;
|
2014-11-07 14:40:45 +01:00
|
|
|
}
|
|
|
|
@media all and (min-width: 77em) {
|
2015-06-28 12:25:35 +02:00
|
|
|
#history-wrapper table {
|
|
|
|
width: 70em;
|
|
|
|
}
|
2014-11-07 14:40:45 +01:00
|
|
|
}
|
|
|
|
@media all and (max-width: 77em) {
|
2015-06-28 12:25:35 +02:00
|
|
|
#history-wrapper table {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2014-11-07 14:40:45 +01:00
|
|
|
}
|