1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/component/history/history.scss
2016-12-03 15:18:01 +01:00

57 lines
793 B
SCSS

.history {
width:100%;
border-collapse: collapse;
code {
word-wrap: break-word;
white-space: pre;
font-family: monospace;
line-height: 100%;
color: #0B8C8F
}
code > .diff-N {
color: green;
}
code > .diff-D {
color: red;
}
code > .diff-A, .diff-E {
color: black;
}
.negative {
color: red;
}
.positive {
color: green;
}
.blue {
color: blue;
}
dl {
padding: 0.5em;
}
dt {
float: left;
clear: left;
width: 100px;
font-weight: bold;
}
dd {
margin: 0 0 0 110px;
padding: 0 0 0.5em 0;
}
}
.history-item:nth-child(odd) {
background-color: #efefef;
}