From 552aaa1002d5029b3331e1e7b5102a01ff765d93 Mon Sep 17 00:00:00 2001 From: "michael.breu" <michael.breu@uibk.ac.at> Date: Fri, 26 Feb 2021 13:14:52 +0100 Subject: [PATCH] Verlinkung von Homepage auf Suche --- src/main/webapp/app/home/home.component.html | 2 +- .../webapp/app/teaserContent/teaserContent.component.html | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/webapp/app/home/home.component.html b/src/main/webapp/app/home/home.component.html index f5f3955bd..d80065d04 100644 --- a/src/main/webapp/app/home/home.component.html +++ b/src/main/webapp/app/home/home.component.html @@ -3,7 +3,7 @@ <div class="col-md-12"> <h1 style="padding: 50px 0px 15px 0px;" align="center" jhiTranslate="home.title">Browse our popular content</h1> <!-- <h4 style="margin-bottom: 50px" align="center" jhiTranslate="home.subtitle">An optional subheadline for additional information</h4> --> - <div jhiTranslate="home.teaser">teaser text </div> + <div jhiTranslate="home.teaser" style="width: 80%; margin-left: auto; margin-right: auto;">teaser text </div> <div [ngSwitch]="isAuthenticated()"> <div class="alert alert-success" *ngSwitchCase="true"> <span id="home-logged-message" *ngIf="account" jhiTranslate="home.logged.message" diff --git a/src/main/webapp/app/teaserContent/teaserContent.component.html b/src/main/webapp/app/teaserContent/teaserContent.component.html index 8c014ad99..a62deef5c 100644 --- a/src/main/webapp/app/teaserContent/teaserContent.component.html +++ b/src/main/webapp/app/teaserContent/teaserContent.component.html @@ -3,19 +3,19 @@ <div class="col-sm-3"> <p style="padding-left: 30px;"><strong>Keywords</strong></p> <ul style="list-style-type: circle;"> - <li *ngFor="let keyWord of keywords"><a (click)="clickKeyword(keyWord)">{{keyWord}}</a></li> + <li *ngFor="let keyWord of keywords"><a (click)="clickKeyword(keyWord)" style="cursor:pointer;">{{keyWord}}</a></li> </ul> </div> <div class="col-sm-3"> <p style="padding-left: 30px;"><strong>Programming Languages</strong></p> <ul style="list-style-type: circle;"> - <li *ngFor="let programmingLanguage of programmingLanguages"><a (click)="clickLanguage(programmingLanguage)">{{programmingLanguage}}</a></li> + <li *ngFor="let programmingLanguage of programmingLanguages"><a (click)="clickLanguage(programmingLanguage)" style="cursor:pointer;">{{programmingLanguage}}</a></li> </ul> </div> <div class="col-sm-3"> <p style="padding-left: 30px;"><strong>Contributors</strong></p> <ul style="list-style-type: circle;"> - <li *ngFor="let contributor of contributors"><a (click)="clickContributor(contributor)">{{contributor}}</a></li> + <li *ngFor="let contributor of contributors"><a (click)="clickContributor(contributor)" style="cursor:pointer;">{{contributor}}</a></li> </ul> </div> </div> \ No newline at end of file -- GitLab