Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Floating logo #465

Open
wants to merge 7 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion web-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"ng-http-loader": "^5.0.0",
"ng-lottie": "^0.3.2",
"ng2-tooltip-directive": "^2.9.17",
"ngx-bootstrap": "^3.3.0",
"ngx-bootstrap": "^4.2.0",
"ngx-bootstrap-slider": "^1.9.0",
"ngx-infinite-scroll": "^7.0.1",
"ngx-moment": "^3.0.1",
Expand Down
22 changes: 22 additions & 0 deletions web-ui/src/app/components/shared/footer/footer.component.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
.wiringbitsLogoLink {
text-decoration: none;
font-size: 18px;
color: #fff;
}

.wiringbitsFloatLogo {
background-color: #fff;
border-radius: 30px;
border: 2px solid #ffffff;
background-image: linear-gradient(to bottom right, #101011, #2a51e7);
bottom: 0px;
right: 0px;
position: fixed;
z-index: 100;
}

.wiringbitsFloatLogo img {
width: 50px;
height: 50px;
object-fit: contain;
}
7 changes: 5 additions & 2 deletions web-ui/src/app/components/shared/footer/footer.component.html
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
<p>
</p>
<ng-template #popTemplate>Powered by wiringbits</ng-template>
<div class="wiringbitsLogoImg" class="wiringbitsFloatLogo wiringbitsHighlight" [popover]="popTemplate" placement="left"
containerClass="wiringbitsPopOver wiringbitsHighlight" triggers="mouseenter:mouseleave">
<a href="https://wiringbits.net/?utm_medium=referrer&utm_source=xsnexplorer.io" target="_Blank" class="wiringbitsLogoLink"> <img src="assets/wiringbits.png"> </a>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,18 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { FooterComponent } from './footer.component';

import { PopoverModule } from 'ngx-bootstrap/popover';

describe('FooterComponent', () => {
let component: FooterComponent;
let fixture: ComponentFixture<FooterComponent>;

beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ FooterComponent ]
declarations: [ FooterComponent ],
imports: [
PopoverModule.forRoot(),
],
})
.compileComponents();
}));
Expand Down
2 changes: 0 additions & 2 deletions web-ui/src/app/components/shared/footer/footer.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,8 @@ import { Component, OnInit } from '@angular/core';
styleUrls: ['./footer.component.css']
})
export class FooterComponent implements OnInit {

constructor() { }

ngOnInit() {
}

}
4 changes: 3 additions & 1 deletion web-ui/src/app/components/shared/shared.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import { TransactionTablev2Component } from './transaction-tablev2/transaction-t
import { PipesModule } from '../../pipes/pipes.module';
import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
import { TooltipModule } from 'ng2-tooltip-directive';
import { PopoverModule } from 'ngx-bootstrap/popover';

import { LottieAnimationViewModule } from 'ng-lottie';

Expand All @@ -30,7 +31,8 @@ import { LottieAnimationViewModule } from 'ng-lottie';
InfiniteScrollModule,
BsDropdownModule.forRoot(),
LottieAnimationViewModule.forRoot(),
TooltipModule
TooltipModule,
PopoverModule.forRoot()
],
declarations: [
NavbarComponent,
Expand Down
Binary file added web-ui/src/assets/wiringbits.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 15 additions & 1 deletion web-ui/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -459,4 +459,18 @@ table.isLoading tr:nth-child(odd) td div::after {

.small, small {
font-size: 75%;
}
}

.wiringbitsPopOver {
background-color: #00135b;
color: #ffffff;
border: 2px solid #fff;
}

.wiringbitsHighlight {
box-shadow: 0px 0px 13px 5px #0ab8ca;
}

.wiringbitsPopOver.popover>.arrow, .popover>.arrow:after {
border-color: transparent !important;
}