Skip to content

Instantly share code, notes, and snippets.

@RobertKielty
Created November 25, 2020 10:50
Show Gist options
  • Save RobertKielty/3f3913d0ea79d6b41540ac55f3d28dbe to your computer and use it in GitHub Desktop.
Save RobertKielty/3f3913d0ea79d6b41540ac55f3d28dbe to your computer and use it in GitHub Desktop.
User CSS to improve testgrid tab navigation
/* Make the dashboard names easier to read */
#environments-bar-container,
#tab-bar {
text-transform: capitalize;
}
/* hightlight currently selected tab */
.goog-tab-selected {
font-size: 10pt;
color:#000 !important;
}
/* lowlight tabs that are not selected */
.goog-tab {
color: #8e8e8e;
}
/* Annotate failing jobs with warning symbol */
.FAILING::after {
content: '\026A0';
background-color: initial;
color: #f00;
border: 1px;
border-color: black
}
@RobertKielty
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment