Skip to content

Commit

Permalink
fix(Logos): Adjusted to SVG and took current SVM logo
Browse files Browse the repository at this point in the history
  • Loading branch information
vktrrdk committed Mar 22, 2024
1 parent 7b7ecf9 commit 8f6307f
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 51 deletions.
Original file line number Diff line number Diff line change
@@ -1,25 +1,27 @@
<span
*ngIf="application?.project_application_openstack_project"
style="font-size: 20px"
class="project-openstack_plain_white_redbg"
data-toggle="tooltip"
title="This is an Openstack project"
>
<span class="path1"></span>
<span class="path2"></span>
<img
data-toggle="tooltip"
title="This is an OpenStack project"
src="{{ openstack_logo }}"
style="width: 20px; margin-bottom: 10px"
/>
</span>
<span
*ngIf="!application?.project_application_openstack_project"
style="font-size: 20px"
class="project-simpleVM_Logo_bluebg"
data-toggle="tooltip"
title="This is a Simple VM project"
>
<span class="path1"></span>
<span class="path2"></span>
<span class="path3"></span>
<span class="path4"></span>
<span class="path5"></span>
<img
data-toggle="tooltip"
title="This is a Simple VM project"
src="{{ simple_vm_logo }}"
style="width: 20px; margin-bottom: 10px"
/>
</span>

<span
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ import { Application } from '../../../../../applications/application.model/appli
export class ApplicationBadgesComponent {
@Input() application: Application;
is_vo_admin: boolean = false;
simple_vm_logo: string = 'static/webapp/assets/img/simpleVM_Logo.svg';
openstack_logo: string = 'static/webapp/assets/img/openstack_plain_red.svg';

constructor() {
this.is_vo_admin = is_vo;
Expand Down
66 changes: 25 additions & 41 deletions src/static/webapp/assets/img/simpleVM_Logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8f6307f

Please sign in to comment.