Ready for demo
This commit is contained in:
parent
75173d5573
commit
b408cfd2cc
7 changed files with 94 additions and 80 deletions
|
@ -94,8 +94,9 @@
|
|||
}
|
||||
|
||||
.repo-panel-tags-element .vuln-description {
|
||||
color: #ccc;
|
||||
color: #aaa;
|
||||
font-size: 10px;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.repo-panel-tags-element .fa-flag.None {
|
||||
|
@ -110,6 +111,10 @@
|
|||
color: red;
|
||||
}
|
||||
|
||||
.repo-panel-tags-element .vuln-dropdown ul {
|
||||
min-width: 400px;
|
||||
}
|
||||
|
||||
@keyframes flickerAnimation { /* flame pulses */
|
||||
0% { opacity:1; }
|
||||
50% { opacity:0; }
|
||||
|
|
|
@ -126,7 +126,7 @@
|
|||
data-title="Image has no vulnerabilities"
|
||||
bs-tooltip>
|
||||
</i>
|
||||
<div class="dropdown" style="text-align: left;"
|
||||
<div class="dropdown vuln-dropdown" style="text-align: left;"
|
||||
ng-if="getTagVulnerabilities(tag).indexed && getTagVulnerabilities(tag).hasVulnerabilities">
|
||||
<i class="fa fa-flag"
|
||||
data-title="Image has vulnerabilities"
|
||||
|
|
|
@ -68,21 +68,21 @@
|
|||
Please try again in a few minutes.
|
||||
</div>
|
||||
</div>
|
||||
<div class="empty" ng-if="packages.security_indexed && !packages.data.InstalledPackages.length">
|
||||
<div class="empty" ng-if="packages.security_indexed && !packages.data.Packages.length">
|
||||
<div class="empty-primary-msg">This image contains no recognized packages</div>
|
||||
<div class="empty-secondary-msg">
|
||||
Quay currently indexes Debian, Red Hat and Ubuntu packages.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<table class="table" ng-if="packages.security_indexed && packages.data.InstalledPackages.length">
|
||||
<table class="table" ng-if="packages.security_indexed && packages.data.Packages.length">
|
||||
<thead>
|
||||
<th>Package Name</th>
|
||||
<th>Package Version</th>
|
||||
<th>OS</th>
|
||||
</thead>
|
||||
|
||||
<tr ng-repeat="package in packages.data.InstalledPackages | orderBy:'Name'">
|
||||
<tr ng-repeat="package in packages.data.Packages | orderBy:'Name'">
|
||||
<td>{{ package.Name }}</td>
|
||||
<td>{{ package.Version }}</td>
|
||||
<td>{{ package.OS }}</td>
|
||||
|
|
Reference in a new issue