[SPARK-29168][WEBUI] Use a unique color on selected item on timeline view

### What changes were proposed in this pull request?

Changed color settings in .vis-timeline .vis-item.executor.vis-selected (timeline-view.css)

### Why are the changes needed?

In WebUI, executor bar's color changes blue to green when you click it. It might be confused user because of the color.

[ Before ]
![before](https://user-images.githubusercontent.com/55128575/65487629-40a45f00-dee2-11e9-8974-dc7027824b52.png)

[ After ]
![after](https://user-images.githubusercontent.com/55128575/65487674-5580f280-dee2-11e9-8e70-28f4ddcf56c3.png)

### Does this PR introduce any user-facing change?

Yes.

### How was this patch tested?

Manually test.

Closes #25846 from TomokoKomiyama/fix-js.

Authored-by: TomokoKomiyama <btkomiyamatm@oss.nttdata.com>
Signed-off-by: Dongjoon Hyun <dhyun@apple.com>
This commit is contained in:
TomokoKomiyama 2019-09-24 00:15:54 -07:00 committed by Dongjoon Hyun
parent 7c8596823a
commit cb72b10b91

View file

@ -223,8 +223,8 @@ rect.getting-result-time-proportion {
} }
.vis-timeline .vis-item.executor.vis-selected { .vis-timeline .vis-item.executor.vis-selected {
background-color: #A2FCC0; background-color: #00AAFF;
border-color: #36F572; border-color: #184C66;
z-index: 2; z-index: 2;
} }