diff --git a/www/src/app/pages/jobs/components/jobs.list.html b/www/src/app/pages/jobs/components/jobs.list.html index 153807c2d..19d296d7a 100644 --- a/www/src/app/pages/jobs/components/jobs.list.html +++ b/www/src/app/pages/jobs/components/jobs.list.html @@ -14,14 +14,15 @@
-
Status
+
Status
Job details
TLP
PAP
-
+

- [{{job.dataType}}] - {{(isFile ? job.attachment.name : job.data) | fang | limitTo:200}} + [{{job.dataType}}] + {{(isFile ? job.attachment.name : job.data) | fang | limitTo:200}} {{job.label || 'No Label'}}

- Analyzer: + {{ job.type }}: {{job.analyzerName}}
@@ -46,11 +48,12 @@

User: {{job.organization}}/{{job.createdBy}} -
+

@@ -72,4 +75,4 @@

- + \ No newline at end of file diff --git a/www/src/assets/styles/sass/index.scss b/www/src/assets/styles/sass/index.scss index 0e49c64a5..c6b969871 100755 --- a/www/src/assets/styles/sass/index.scss +++ b/www/src/assets/styles/sass/index.scss @@ -1,4 +1,3 @@ - $icon-font-path: '~bootstrap-sass/assets/fonts/bootstrap/'; @import '~bootstrap-sass/assets/stylesheets/_bootstrap.scss'; @@ -9,7 +8,10 @@ $icon-font-path: '~bootstrap-sass/assets/fonts/bootstrap/'; @import './paginable-table.scss'; -html { height: 100%; } +html { + height: 100%; +} + body { min-height: 100%; position: relative; @@ -18,20 +20,22 @@ body { .btn.btn-clear { &:active { - box-shadow: none !important; + box-shadow: none !important; } &:focus { outline: none !important; - } + } &.text-danger { &:focus { color: #a94442; } } + background-color: #fff; } + .btn.btn-clear:active:focus { outline: none !important; } @@ -141,6 +145,7 @@ a.text-white:hover { .container { max-width: 1200px; } + /* Remove the padding we set earlier */ .header, .footer { @@ -199,4 +204,8 @@ a.text-white:hover { textarea.vertical { resize: vertical; +} + +.text-capitalized { + text-transform: capitalize; } \ No newline at end of file