2020-02-27 21:01:46 +03:00
|
|
|
/*
|
|
|
|
* Treeherder Base settings
|
|
|
|
*
|
|
|
|
* This file contains settings which are either not specific to our
|
|
|
|
* UI component css files, or are shared across Treeherder, Logviewer,
|
|
|
|
* UserGuide, and/or Perfherder.
|
|
|
|
*
|
|
|
|
* Including this class will make modifications to elements.
|
|
|
|
*
|
|
|
|
* Please add CSS class styles to the `treeherder-custom-styles.css` file
|
|
|
|
* rather than here.
|
|
|
|
*/
|
|
|
|
|
|
|
|
body {
|
|
|
|
line-height: inherit;
|
|
|
|
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:visited,
|
|
|
|
.link-style:visited {
|
|
|
|
color: purple;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: #337ab7;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
kbd {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 3px 5px;
|
|
|
|
font: 11px/10px Consolas, 'Liberation Mono', Menlo, Courier, monospace;
|
|
|
|
color: #555;
|
|
|
|
vertical-align: middle;
|
|
|
|
background-color: #fcfcfc;
|
|
|
|
border-width: 1px;
|
|
|
|
border-style: solid;
|
|
|
|
border-color: #ccc #ccc #bbb;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type='checkbox'] {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
2023-05-23 02:57:14 +03:00
|
|
|
|
|
|
|
:root {
|
|
|
|
--failure-bg-color: #f7c194;
|
|
|
|
--failure-color: #743603;
|
|
|
|
}
|