diff --git a/src/ui_ng/lib/src/tag/tag-detail.component.css.ts b/src/ui_ng/lib/src/tag/tag-detail.component.css.ts index 2db7fb4c4..7c3f062df 100644 --- a/src/ui_ng/lib/src/tag/tag-detail.component.css.ts +++ b/src/ui_ng/lib/src/tag/tag-detail.component.css.ts @@ -109,4 +109,7 @@ export const TAG_DETAIL_STYLES: string = ` .tip-icon-medium { color: orange; } +.tip-icon-low{ + color:yellow; +} `; \ No newline at end of file diff --git a/src/ui_ng/lib/src/tag/tag-detail.component.html.ts b/src/ui_ng/lib/src/tag/tag-detail.component.html.ts index 3833c8ef8..1c41f60ac 100644 --- a/src/ui_ng/lib/src/tag/tag-detail.component.html.ts +++ b/src/ui_ng/lib/src/tag/tag-detail.component.html.ts @@ -53,7 +53,7 @@ export const TAG_DETAIL_HTML: string = `
- +
diff --git a/src/ui_ng/lib/src/vulnerability-scanning/scanning.css.ts b/src/ui_ng/lib/src/vulnerability-scanning/scanning.css.ts index f81ba13a3..67669c7ef 100644 --- a/src/ui_ng/lib/src/vulnerability-scanning/scanning.css.ts +++ b/src/ui_ng/lib/src/vulnerability-scanning/scanning.css.ts @@ -49,7 +49,7 @@ export const SCANNING_STYLES: string = ` background-color: orange; } .bar-block-low { - background-color: #fac400; + background-color: yellow; } .bar-block-none { background-color: green; @@ -93,4 +93,15 @@ export const SCANNING_STYLES: string = ` .tip-icon-medium { color: orange; } +.label.label-low{ + background: rgba(251, 255, 0, 0.38); + color: #c5c50b; + border: 1px solid #e6e63f; +} +.tip-icon-low { + color: yellow; +} +.font-color-green{ + color:green; +} `; \ No newline at end of file diff --git a/src/ui_ng/lib/src/vulnerability-scanning/scanning.html.ts b/src/ui_ng/lib/src/vulnerability-scanning/scanning.html.ts index 373b87283..70772aa52 100644 --- a/src/ui_ng/lib/src/vulnerability-scanning/scanning.html.ts +++ b/src/ui_ng/lib/src/vulnerability-scanning/scanning.html.ts @@ -20,7 +20,7 @@ export const TIP_COMPONENT_HTML: string = ` {{mediumCount}} {{'VULNERABILITY.SEVERITY.MEDIUM' | translate }}
- + {{lowCount}} {{'VULNERABILITY.SEVERITY.LOW' | translate }}
@@ -65,13 +65,18 @@ export const GRID_COMPONENT_HTML: string = ` {{severityText(res.severity) | translate}} {{severityText(res.severity) | translate}} - {{severityText(res.severity) | translate}} - {{severityText(res.severity) | translate}} + {{severityText(res.severity) | translate}} + {{severityText(res.severity) | translate}} {{severityText(res.severity) | translate}} {{res.package}} {{res.version}} - {{res.fixedVersion}} + +
+  {{res.fixedVersion}} +
+ {{res.fixedVersion}} +
{{'VULNERABILITY.GRID.COLUMN_DESCRIPTION' | translate}}: {{res.description}} diff --git a/src/ui_ng/src/styles.css b/src/ui_ng/src/styles.css index c02851a6c..605a50575 100644 --- a/src/ui_ng/src/styles.css +++ b/src/ui_ng/src/styles.css @@ -39,4 +39,11 @@ } .modal-header{ padding: 0; - } \ No newline at end of file + } +.rotate-90 { + -webkit-transform: rotate(-90deg); + -moz-transform: rotate(-90deg); + -ms-transform: rotate(-90deg); + -o-transform: rotate(-90deg); + transform: rotate(-90deg); +}