diff options
| -rw-r--r-- | views/partials/hootstream.ejs | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/views/partials/hootstream.ejs b/views/partials/hootstream.ejs index 5d0b8e5..114cae3 100644 --- a/views/partials/hootstream.ejs +++ b/views/partials/hootstream.ejs @@ -205,18 +205,12 @@ #hootevents .fileRow div { color: rgba(192,192,192,1.0); background: transparent; - border-top: 1px solid rgba(96,96,96,0.5); padding: 0.5rem; white-space: nowrap; } - #hootevents .fileRow:last-of-type { - border-bottom: 1px solid rgba(96,96,96,0.5); - } #hootevents .fileRow { - border-left: 1px solid rgba(96,96,96,0.5); } #hootevents .fileRow { - border-right: 1px solid rgba(96,96,96,0.5); } #hootevents .fileRow div { position: relative; @@ -225,13 +219,18 @@ content: ''; width: 100%; height: 100%; - background-color: #def; opacity: 0.05; position: absolute; top: 0; left: 0; z-index: -1; } + #hootevents .fileRow:nth-child(odd) div::after { + background-color: #d8e8f8; + } + #hootevents .fileRow:nth-child(even) div::after { + background-color: #d0e0f0; + } /** Misc */ #hootevents code, #hootevents pre { |
