Make job details panel close button visible again (#4499)

It looks like bootstrap's default button class (now?) sets the
default button color to dark grey, which is really hard to see against
the background of the job details panel. Fix this by resetting
the color to the default of the containing class.
This commit is contained in:
William Lachance 2019-01-25 14:07:14 -05:00 коммит произвёл Cameron Dawson
Родитель 2e03186cb6
Коммит 7ea3c53020
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -121,6 +121,11 @@ div#details-panel-content .details-panel-navbar > ul.tab-headers > li {
.details-panel-close-btn {
padding-top: 3px;
font-size: 12px;
color: unset; /* reset from bootstrap button class */
}
.details-panel-close-btn:hover {
color: unset; /* reset from bootstrap button class */
}
.perf-job-selected {