2015-09-21 19:25:52 +03:00
|
|
|
div#info-panel {
|
|
|
|
background-color: #AAAAAA;
|
|
|
|
font-size: 12px;
|
|
|
|
height: 35%;
|
|
|
|
max-height: 75%;
|
|
|
|
flex: none;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
}
|
|
|
|
|
2017-02-10 21:51:38 +03:00
|
|
|
.info-panel-slide {
|
|
|
|
animation: info-panel-slide 0.4s;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes info-panel-slide {
|
|
|
|
0% { transform: translateY(100%); }
|
|
|
|
100% { transform: translateY(0%); }
|
|
|
|
}
|
|
|
|
|
2015-09-21 19:25:52 +03:00
|
|
|
div#info-panel .navbar {
|
|
|
|
border-radius: 0px;
|
|
|
|
border-style: solid;
|
|
|
|
border-color: #42484F;
|
|
|
|
border-width: 1px 0;
|
|
|
|
height: 33px;
|
|
|
|
margin: 0;
|
|
|
|
font-size: 12px;
|
|
|
|
min-height: 33px;
|
|
|
|
min-width: initial;
|
|
|
|
z-index: 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#info-panel-resizer {
|
|
|
|
display: flex;
|
|
|
|
flex: none;
|
|
|
|
background-color: #919dad;
|
|
|
|
cursor: ns-resize;
|
|
|
|
height: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#info-panel .navbar-nav > ul {
|
|
|
|
height: 32px;
|
|
|
|
}
|
|
|
|
|
2016-11-22 21:53:10 +03:00
|
|
|
div#info-panel .navbar-nav > li > a,
|
|
|
|
div#info-panel .navbar-nav > li > button {
|
2015-09-21 19:25:52 +03:00
|
|
|
padding: 6px 15px;
|
|
|
|
line-height: 19px;
|
|
|
|
}
|
|
|
|
|
2016-11-22 21:53:10 +03:00
|
|
|
div#info-panel .navbar-nav > li > button {
|
|
|
|
border: none;
|
|
|
|
background: transparent;
|
|
|
|
}
|
2015-10-31 00:15:45 +03:00
|
|
|
/* Use a loaded image, rather than an icon, so it needs to be slightly shorter */
|
|
|
|
div#info-panel .navbar-nav > li > a#logviewer-btn {
|
|
|
|
line-height: 18px;
|
|
|
|
}
|
|
|
|
|
2016-05-12 15:55:32 +03:00
|
|
|
div#info-panel .navbar-nav > li > a.disabled,
|
2016-11-22 21:53:10 +03:00
|
|
|
div#info-panel .navbar-nav > li > button.disabled,
|
2016-05-12 15:55:32 +03:00
|
|
|
ul.actionbar-menu > li.disabled {
|
2015-09-21 19:25:52 +03:00
|
|
|
cursor: not-allowed;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#info-panel .navbar-nav > li.active a,
|
|
|
|
div#info-panel .navbar-nav > li.active a:hover,
|
|
|
|
div#info-panel .navbar-nav > li.active a:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
2015-10-31 00:15:45 +03:00
|
|
|
div#info-panel .info-panel-navbar > ul.tab-headers > li {
|
2015-09-21 19:25:52 +03:00
|
|
|
border-right: 1px solid #42484F;
|
|
|
|
}
|
|
|
|
|
2015-10-31 00:15:45 +03:00
|
|
|
.info-panel-navbar {
|
2015-09-21 19:25:52 +03:00
|
|
|
background-color: #252C33;
|
2015-10-31 00:15:45 +03:00
|
|
|
border: 1px solid transparent;
|
2015-09-21 19:25:52 +03:00
|
|
|
color: #CED3D9;
|
2015-10-31 00:15:45 +03:00
|
|
|
display: flex;
|
|
|
|
z-index: 100;
|
2015-09-21 19:25:52 +03:00
|
|
|
}
|
|
|
|
|
2015-10-31 00:15:45 +03:00
|
|
|
.info-panel-navbar-tabs {
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.info-panel-navbar-controls {
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.info-panel-navbar .navbar-nav {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.info-panel-navbar .navbar-nav > li {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2016-12-01 23:30:26 +03:00
|
|
|
.info-panel-navbar .navbar-nav > li > a,
|
|
|
|
.info-panel-navbar .navbar-nav > li > button {
|
2015-09-21 19:25:52 +03:00
|
|
|
color: #9FA3A5;
|
|
|
|
}
|
|
|
|
|
2015-10-31 00:15:45 +03:00
|
|
|
.info-panel-navbar .navbar-nav > li > a:hover,
|
2017-01-04 01:51:22 +03:00
|
|
|
.info-panel-navbar .navbar-nav > li > a:focus,
|
|
|
|
.info-panel-navbar .navbar-nav > li > button:hover,
|
|
|
|
.info-panel-navbar .navbar-nav > li > button:focus
|
|
|
|
{
|
2015-09-21 19:25:52 +03:00
|
|
|
background-color: #1E252B;
|
|
|
|
color: #D3D8DA;
|
|
|
|
}
|
|
|
|
|
2017-01-04 01:51:22 +03:00
|
|
|
.info-panel-navbar .actionbar-nav {
|
|
|
|
flex: auto;
|
|
|
|
}
|
|
|
|
|
2015-10-31 00:15:45 +03:00
|
|
|
div#info-panel .info-panel-navbar .navbar-nav > li.active a,
|
|
|
|
div#info-panel .info-panel-navbar .navbar-nav > li.active a:hover,
|
|
|
|
div#info-panel .info-panel-navbar .navbar-nav > li.active a:focus {
|
2015-09-21 19:25:52 +03:00
|
|
|
background-color: #1A4666;
|
|
|
|
color: #EEF0F2;
|
|
|
|
}
|
|
|
|
|
|
|
|
#info-panel-content {
|
|
|
|
position: relative; /* So we can absolutely position the loading overlay */
|
|
|
|
height: 60%;
|
|
|
|
flex: auto;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
#job-details-panel, #job-tabs-panel {
|
|
|
|
background-color: #fff;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
#job-details-actionbar, #job-tabs-navbar {
|
|
|
|
min-height: 33px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Job details action bar
|
|
|
|
*/
|
|
|
|
|
2016-11-22 21:53:10 +03:00
|
|
|
.actionbar-nav > li {
|
|
|
|
/* Override padding on all icons to keep compact */
|
2015-09-21 19:25:52 +03:00
|
|
|
padding: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.actionbar-menu {
|
|
|
|
/* We have to override non-responsive bootstrap for correct styling */
|
|
|
|
margin-top: 1px !important;
|
|
|
|
margin-left: 6px;
|
|
|
|
border-radius: 4px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Job details panel (left side)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#job-details-panel {
|
2017-01-04 01:51:22 +03:00
|
|
|
width: 260px;
|
|
|
|
min-width: 260px;
|
2015-09-21 19:25:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#job-details-panel .content-spacer {
|
|
|
|
padding-top: 2px;
|
|
|
|
padding-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#job-details-panel ul li {
|
|
|
|
padding: 0px 0px 0px 5px;
|
|
|
|
line-height: 15px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
#job-details-panel ul li label {
|
|
|
|
padding: 0;
|
|
|
|
margin: 2px 0px;
|
|
|
|
}
|
|
|
|
|
2016-07-14 21:16:02 +03:00
|
|
|
/*
|
|
|
|
* Classification stars
|
|
|
|
* These generally match the job button colors
|
|
|
|
*/
|
|
|
|
|
|
|
|
.star-success {
|
|
|
|
color: rgba(2, 130, 51, 0.75);
|
|
|
|
}
|
|
|
|
|
|
|
|
.star-testfailed {
|
|
|
|
color: #dd6602;
|
|
|
|
}
|
|
|
|
|
|
|
|
.star-busted {
|
|
|
|
color: #90010a;
|
|
|
|
}
|
|
|
|
|
|
|
|
.star-skipped {
|
|
|
|
color: rgb(101, 191, 221);
|
|
|
|
}
|
|
|
|
|
|
|
|
.star-exception {
|
|
|
|
color: #6f0296;
|
|
|
|
}
|
|
|
|
|
|
|
|
.star-retry {
|
|
|
|
color: #283aa2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.star-unknown {
|
|
|
|
color: #fbd890;
|
|
|
|
}
|
|
|
|
|
|
|
|
.star-usercancel {
|
|
|
|
color: #ff40d9;
|
|
|
|
}
|
|
|
|
.star-coalesced {
|
|
|
|
color: #488ae9;
|
|
|
|
}
|
|
|
|
|
|
|
|
.star-pending,
|
|
|
|
.star-running {
|
|
|
|
color: grey;
|
2015-09-21 19:25:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#job-details-panel em.testfail {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
|
|
|
|
#job-details-pane > ul {
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
line-height: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#job-details-pane {
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
2015-09-25 20:47:48 +03:00
|
|
|
#result-status-pane div {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#result-status-pane div:first-child {
|
|
|
|
width: 11.25em;
|
|
|
|
}
|
|
|
|
|
2015-09-21 19:25:52 +03:00
|
|
|
/*
|
|
|
|
* Job tabs panel (right side)
|
|
|
|
*/
|
|
|
|
|
|
|
|
.job-tabs-divider {
|
|
|
|
border-left: 1px solid lightgrey;
|
|
|
|
}
|
|
|
|
|
|
|
|
.job-tabs-content {
|
|
|
|
padding: 2px 4px 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#job-tabs-panel {
|
|
|
|
flex: 1 6;
|
|
|
|
padding: 0px;
|
2015-09-23 20:59:16 +03:00
|
|
|
min-width: 565px;
|
|
|
|
}
|
|
|
|
|
2015-09-21 19:25:52 +03:00
|
|
|
#job-tabs-pane {
|
|
|
|
max-height: calc(100% - 33px);
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#job-tabs-pane > * {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
#job-tabs-pane > * > * {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
#job-tabs-pane > * > * > * {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Failure summary
|
|
|
|
*/
|
|
|
|
|
|
|
|
#job-tabs-panel ul.failure-summary-list {
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.failure-summary-list li {
|
|
|
|
font-size: 11px;
|
|
|
|
background: #ccfaff;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.failure-summary-list li .btn-xs {
|
|
|
|
font-size: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.failure-summary-line-empty {
|
|
|
|
padding: 2px 4px 0px;
|
|
|
|
font-size: 12px;
|
|
|
|
background: #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.failure-summary-bugs {
|
|
|
|
padding: 0px 0px 0px 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We override global anchor color to replicate TBPL here */
|
|
|
|
.failure-summary-bugs a {
|
|
|
|
color: #0000ee;
|
|
|
|
}
|
|
|
|
|
|
|
|
.failure-summary-bugs a:visited {
|
|
|
|
color: purple;
|
|
|
|
}
|
|
|
|
|
|
|
|
.failure-summary-bugs button {
|
|
|
|
padding: 2px 3px 1px 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We override global anchor color to replicate TBPL here */
|
|
|
|
.show-hide-more {
|
|
|
|
padding: 0px 0px 0px 37px;
|
|
|
|
color: #0000ee;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Annotations
|
|
|
|
*/
|
|
|
|
|
|
|
|
.annotations-panel {
|
|
|
|
overflow: auto;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.classifications-pane {
|
|
|
|
border-right: solid 1px lightgray;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Annotation tab classification headers */
|
|
|
|
.classifications-pane table tr th {
|
|
|
|
padding-right: 16px;
|
|
|
|
padding-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Annotation tab classification fields */
|
|
|
|
.classifications-pane table tr td {
|
|
|
|
padding-right: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Annotations tab classification deletion container */
|
|
|
|
.classifications-pane table tr td:last-child {
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.classification-delete-icon {
|
|
|
|
font-size: 11px;
|
|
|
|
color: #bababa;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Override bootstrap row highlighting */
|
|
|
|
.classifications-pane table tr:hover td {
|
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.annotations-bug-list {
|
|
|
|
list-style: none inside none;
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.annotations-bug-header {
|
|
|
|
margin-top: 4px;
|
|
|
|
margin-bottom: 2px;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.annotations-bug {
|
|
|
|
padding-top: 2px;
|
|
|
|
padding-bottom: 0;
|
|
|
|
padding-left: 0;
|
|
|
|
border: none;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Similar jobs
|
|
|
|
*/
|
|
|
|
|
|
|
|
.btn-similar-jobs {
|
|
|
|
background: #fff;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
.similar_jobs {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.similar_jobs .right_panel {
|
|
|
|
border-left: 1px solid #101010;
|
|
|
|
margin-right: 1px;
|
|
|
|
overflow-y: auto;
|
|
|
|
flex: 1 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.similar_jobs .right_panel form {
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: #D3D3D3;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.similar_jobs .right_panel form .checkbox input[type="checkbox"] {
|
|
|
|
margin-left: 0px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.similar_jobs .right_panel .similar_job_detail {
|
|
|
|
border-top: 1px solid #101010;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.similar_jobs .right_panel .similar_job_detail table {
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.similar_jobs .left_panel {
|
|
|
|
overflow: auto;
|
|
|
|
flex: 1 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.similar_jobs .left_panel table {
|
|
|
|
margin-bottom: 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We override bootstrap table style for cleaner layout */
|
|
|
|
div.similar_jobs .left_panel table tr > td {
|
|
|
|
vertical-align: middle;
|
|
|
|
border-top: 1px solid lightgrey;
|
|
|
|
border-bottom: 0;
|
|
|
|
border-right: 0;
|
|
|
|
border-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Selected Similar Job row in blue */
|
|
|
|
div.similar_jobs .left_panel table tr.active > td {
|
|
|
|
background: #e2ebfa;
|
|
|
|
border-top: 1px solid darkgrey;
|
|
|
|
border-bottom: 1px solid darkgrey;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Avoid using the hand pointer unless we are on a link */
|
|
|
|
div.similar_jobs .left_panel table tr {
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2016-01-30 10:01:33 +03:00
|
|
|
* Performance
|
2015-09-21 19:25:52 +03:00
|
|
|
*/
|
|
|
|
|
2016-01-30 10:01:33 +03:00
|
|
|
div.performance-panel {
|
2015-09-21 19:25:52 +03:00
|
|
|
display: block !important;
|
|
|
|
}
|
2015-10-31 00:15:45 +03:00
|
|
|
|
|
|
|
/*
|
2017-03-05 13:36:10 +03:00
|
|
|
* Failure Viewer
|
2015-10-31 00:15:45 +03:00
|
|
|
*/
|
|
|
|
|
2016-01-07 19:31:42 +03:00
|
|
|
.failure-line-detail {
|
|
|
|
padding-left: 6px;
|
2015-10-31 00:15:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.failure-line-message {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2016-01-07 19:31:42 +03:00
|
|
|
.failure-line-status {
|
|
|
|
color: #c45a02;
|
|
|
|
}
|
|
|
|
|
2015-10-31 00:15:45 +03:00
|
|
|
.failure-line-message-toggle {
|
|
|
|
cursor: pointer;
|
|
|
|
width: 10px;
|
|
|
|
flex-basis: auto;
|
|
|
|
padding: 2px 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.failure-line-message-collapsed {
|
|
|
|
max-height: 14px;
|
|
|
|
height: 14px;
|
|
|
|
overflow: hidden;
|
|
|
|
padding-left: 5px;
|
2016-01-07 19:31:42 +03:00
|
|
|
font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
|
2015-10-31 00:15:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.failure-line-message-expanded {
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
overflow-x: auto;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
|
|
|
|
}
|
2016-01-07 19:31:42 +03:00
|
|
|
|
2017-03-05 13:36:10 +03:00
|
|
|
/*
|
|
|
|
* Autoclassify Panel
|
|
|
|
*/
|
|
|
|
|
|
|
|
th-autoclassify-panel {
|
|
|
|
font-size: 11px;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
th-autoclassify-panel .controls {
|
|
|
|
flex: 0;
|
|
|
|
margin-bottom: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
th-autoclassify-panel .controls button {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
th-autoclassify-errors {
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
th-autoclassify-errors {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
|
|
|
|
th-error-line {
|
2016-02-17 19:38:17 +03:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2017-03-05 13:36:10 +03:00
|
|
|
th-error-line.selected {
|
|
|
|
background-color: #e2ebfa;
|
|
|
|
outline: thin dotted black;
|
|
|
|
}
|
|
|
|
|
|
|
|
th-error-line .errorline-controls {
|
2016-02-17 19:38:17 +03:00
|
|
|
width: 70px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2017-03-05 13:36:10 +03:00
|
|
|
th-error-line .status {
|
|
|
|
width: 6px;
|
|
|
|
margin-right: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
th-error-line .status.classification-disabled {
|
|
|
|
background-color: #0000;
|
|
|
|
}
|
|
|
|
|
|
|
|
th-error-line .status.verified {
|
|
|
|
background-color: green;
|
|
|
|
}
|
|
|
|
|
|
|
|
th-error-line .status.unverified-ignore {
|
|
|
|
background-color: grey;
|
|
|
|
}
|
|
|
|
|
|
|
|
th-error-line .status.unverified-no-bug {
|
|
|
|
background-color: red;
|
|
|
|
}
|
|
|
|
|
|
|
|
th-error-line .status.unverified {
|
|
|
|
background-color: orange;
|
|
|
|
}
|
|
|
|
|
|
|
|
th-error-actions select {
|
2016-02-17 19:38:17 +03:00
|
|
|
width: 60px;
|
|
|
|
margin-bottom: 6px;
|
|
|
|
}
|
|
|
|
|
2017-03-05 13:36:10 +03:00
|
|
|
th-error-line .classification-line-detail {
|
2016-02-17 19:38:17 +03:00
|
|
|
width: 100%;
|
|
|
|
padding-top: 3px;
|
|
|
|
padding-bottom:3px;
|
|
|
|
border-bottom: thin solid #eee;
|
2016-01-07 19:31:42 +03:00
|
|
|
}
|
|
|
|
|
2017-03-05 13:36:10 +03:00
|
|
|
th-error-line .classification-set-bug {
|
2016-01-07 19:31:42 +03:00
|
|
|
cursor: pointer;
|
|
|
|
font-size: 8px;
|
|
|
|
}
|
|
|
|
|
2017-03-05 13:36:10 +03:00
|
|
|
th-error-line .ignored-line {
|
|
|
|
text-decoration: line-through;
|
|
|
|
}
|
|
|
|
|
|
|
|
th-error-line.ignored {
|
|
|
|
color: darkgrey;
|
|
|
|
}
|
|
|
|
|
|
|
|
th-error-line .label-ignored {
|
|
|
|
background-color: lightgrey;
|
|
|
|
}
|
|
|
|
|
|
|
|
th-static-classification-option .classification-icon, th-classification-option .classification-icon {
|
2016-01-07 19:31:42 +03:00
|
|
|
width: 24px;
|
|
|
|
margin-top: auto;
|
|
|
|
margin-bottom: auto;
|
|
|
|
text-align: center;
|
2016-02-17 19:38:17 +03:00
|
|
|
display: inline-block;
|
2016-01-07 19:31:42 +03:00
|
|
|
}
|
|
|
|
|
2017-03-05 13:36:10 +03:00
|
|
|
th-static-classification-option .classification-icon > *, th-classification-option .classification-icon > * {
|
2016-01-07 19:31:42 +03:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
2017-03-05 13:36:10 +03:00
|
|
|
th-classification-option .classification-bug-resolution {
|
2016-04-28 19:25:57 +03:00
|
|
|
color: darkgrey;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
2017-03-05 13:36:10 +03:00
|
|
|
th-classification-option label {
|
2016-08-08 20:16:52 +03:00
|
|
|
margin-bottom: 0;
|
|
|
|
font-weight: normal;
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2016-01-07 19:31:42 +03:00
|
|
|
/* TODO: Make this better */
|
2017-03-05 13:36:10 +03:00
|
|
|
th-classification-option .classification-matchers {
|
2016-01-07 19:31:42 +03:00
|
|
|
color: darkgrey;
|
|
|
|
padding-left: 43px;
|
|
|
|
}
|
|
|
|
|
2017-03-05 13:36:10 +03:00
|
|
|
th-classification-option .manual-bug-input {
|
2016-01-07 19:31:42 +03:00
|
|
|
line-height: 8px;
|
|
|
|
margin: 2px 0 0 4px;
|
|
|
|
}
|
2017-03-05 13:36:10 +03:00
|
|
|
|
|
|
|
th-classification-option .manual-bug-label {
|
2016-01-07 19:31:42 +03:00
|
|
|
line-height: 15pt;
|
|
|
|
}
|
|
|
|
|
2017-03-05 13:36:10 +03:00
|
|
|
th-classification-option .line-option-text {
|
2016-01-07 19:31:42 +03:00
|
|
|
padding: 4px 0 0 4px;
|
|
|
|
position: relative;
|
|
|
|
top: 0;
|
2017-03-05 13:36:10 +03:00
|
|
|
vertical-align: middle;
|
2016-01-07 19:31:42 +03:00
|
|
|
}
|
|
|
|
|
2017-03-05 13:36:10 +03:00
|
|
|
th-classification-option input {
|
|
|
|
margin: 0 0 0 0;
|
|
|
|
vertical-align: middle;
|
2016-01-07 19:31:42 +03:00
|
|
|
}
|
|
|
|
|
2017-03-23 16:27:30 +03:00
|
|
|
th-classification-option button.btn-xs, th-static-classification-option button.btn-xs {
|
|
|
|
font-size: 8px;
|
|
|
|
}
|
|
|
|
|
2017-03-05 13:36:10 +03:00
|
|
|
th-error-actions {
|
|
|
|
padding: 4px 4px 4px 4px;
|
|
|
|
text-align: center;
|
2016-01-07 19:31:42 +03:00
|
|
|
}
|
|
|
|
|