Skip to content
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.

Commit

Permalink
shadows are awesome
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Winkler committed Nov 22, 2020
1 parent d9ae432 commit a4b268c
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions src-ui/src/app/components/dashboard/dashboard.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class="col-lg">
<ng-container *ngFor="let v of savedDashboardViews">

<div class="card mb-3">
<div class="card mb-3 shadow">
<div class="card-header">
<h5 class="card-title mb-0">{{v.viewConfig.title}}</h5>
</div>
Expand All @@ -30,7 +30,7 @@ <h5 class="card-title mb-0">{{v.viewConfig.title}}</h5>
</div>
</ng-container>
<ng-container *ngIf="savedDashboardViews.length == 0">
<div class="card mb-3">
<div class="card mb-3 shadow">
<div class="card-header">
<h5 class="card-title mb-0">Saved views</h5>
</div>
Expand All @@ -46,7 +46,7 @@ <h5 class="card-title mb-0">Saved views</h5>
</div>
<div class="col-lg">

<div class="card mb-3">
<div class="card mb-3 shadow">
<div class="card-header">
<h5 class="card-title mb-0">Statistics</h5>
</div>
Expand All @@ -56,7 +56,7 @@ <h5 class="card-title mb-0">Statistics</h5>
</div>
</div>

<div class="card mb-3">
<div class="card mb-3 shadow">
<div class="card-header">
<h5 class="card-title mb-0">Upload new documents</h5>
</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="card mb-3 bg-light">
<div class="card mb-3 bg-light shadow-sm">
<div class="row no-gutters">
<div class="col-md-2 d-none d-lg-block">
<img [src]="getThumbUrl()" class="card-img doc-img border-right">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="col p-2 h-100" style="width: 16rem;">
<div class="card h-100">
<div class="card h-100 shadow-sm">
<div class=" border-bottom doc-img pr-1" [ngStyle]="{'background-image': 'url(' + getThumbUrl() + ')'}">
<div class="row" *ngFor="let t of document.tags">
<app-tag [tag]="t" class="col text-right"></app-tag>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ <h5 class="card-title">Filter</h5>
</app-document-card-large>
</div>

<table class="table table-hover table-sm border" *ngIf="displayMode == 'details'">
<table class="table table-hover table-sm border shadow" *ngIf="displayMode == 'details'">
<thead>
<th class="d-none d-lg-table-cell">ASN</th>
<th class="d-none d-md-table-cell">Correspondent</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<ngb-pagination [pageSize]="25" [collectionSize]="collectionSize" [(page)]="page" (pageChange)="reloadData()" aria-label="Default pagination"></ngb-pagination>
</div>

<table class="table table-striped border">
<table class="table table-striped border shadow">
<thead>
<tr>
<th scope="col" sortable="name" (sort)="onSort($event)">Name</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
aria-label="Default pagination"></ngb-pagination>
</div>

<table class="table table-striped border">
<table class="table table-striped border shadow">
<thead>
<tr>
<th scope="col" sortable="name" (sort)="onSort($event)">Name</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ <h4>Document list</h4>
</li>
</ul>

<div [ngbNavOutlet]="nav" class="border-left border-right border-bottom p-3 mb-3"></div>
<div [ngbNavOutlet]="nav" class="border-left border-right border-bottom p-3 mb-3 shadow"></div>

<button type="submit" class="btn btn-primary">Save</button>
</form>
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
aria-label="Default pagination"></ngb-pagination>
</div>

<table class="table table-striped border">
<table class="table table-striped border shadow">
<thead>
<tr>
<th scope="col" sortable="name" (sort)="onSort($event)">Name</th>
Expand Down

0 comments on commit a4b268c

Please sign in to comment.