fix missing line styling

This commit is contained in:
Jake McDermott 2018-08-27 01:55:36 -04:00
parent aa0d2cff5c
commit 4e45b6ba6d
No known key found for this signature in database
GPG Key ID: 9A6F084352C3A0B7
2 changed files with 4 additions and 4 deletions

View File

@ -102,10 +102,10 @@
padding-right: 5px;
border-right: 1px solid @at-gray-b7;
user-select: none;
}
&-clickable {
cursor: pointer;
}
&-line--clickable {
cursor: pointer;
}
&-event {

View File

@ -338,7 +338,7 @@ function JobRenderService ($q, $sce, $window) {
if (record.isMissing) {
return `<div id="${record.uuid}" class="at-Stdout-row">
<div class="at-Stdout-toggle"></div>
<div class="at-Stdout-line-clickable" ng-click="vm.showMissingEvents('${record.uuid}')">...</div></div>`;
<div class="at-Stdout-line at-Stdout-line--clickable" ng-click="vm.showMissingEvents('${record.uuid}')">...</div></div>`;
}
content = content || '';