xfstestsdb/xfstestsdb/gtk/xfstestsdb.css
Anna Schumaker 5a25935fed gtk: Emit a signal when a specific test result is clicked
I only do this for failing tests that have text set in their stdout or
stderr properties. I also update the CSS for failed tests to give an
indication when users hover their mouse over them.

Signed-off-by: Anna Schumaker <anna@nowheycreamery.com>
2023-08-31 13:16:16 -04:00

34 lines
535 B
CSS

/* Copyright 2023 (c) Anna Schumaker. */
button.passed > image {
color: @success_color;
}
cell.passed {
color: @success_fg_color;
background-color: @success_bg_color;
}
button.skipped > image {
color: @warning_color;
}
cell.skipped {
color: @warning_fg_color;
background-color: @warning_bg_color;
}
button.failure > image {
color: @error_color;
}
cell.failure {
color: @error_fg_color;
background-color: @error_bg_color;
}
cell.failure:hover {
color: @error_fg_color;
background-color: shade(@error_bg_color, 1.1);
}