diff options
Diffstat (limited to 'web/src/css')
-rw-r--r-- | web/src/css/flowtable.less | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/web/src/css/flowtable.less b/web/src/css/flowtable.less index 64fd86b9..2b0e8df3 100644 --- a/web/src/css/flowtable.less +++ b/web/src/css/flowtable.less @@ -19,9 +19,19 @@ tr { cursor: pointer; + + &:nth-child(even) { + background-color : rgba(0,0,0,0.05); + } &.selected { background-color: hsla(209, 52%, 84%, 0.5) !important; } + &.highlighted { + background-color: hsla(48, 100%, 50%, 0.4) !important; + } + &.highlighted:nth-child(even) { + background-color: hsla(48, 100%, 50%, 0.5) !important; + } } td { @@ -30,7 +40,7 @@ text-overflow: ellipsis; } - tr:nth-child(even) { background-color : rgba(0,0,0,0.05); } + tr .col-tls { width: 10px; |