From 19ce1b665311a3de0d90be1b0ee11fc6e6166bb9 Mon Sep 17 00:00:00 2001 From: apapachristou Date: Tue, 21 May 2019 17:47:52 +0300 Subject: [PATCH] Fixes: Cursor bug, Adds: translate --- .../app/ui/dashboard/dashboard.component.html | 4 +-- .../dmp/overview/dmp-overview.component.html | 2 +- .../dmp/overview/dmp-overview.component.scss | 33 ++++++++++--------- 3 files changed, 20 insertions(+), 19 deletions(-) diff --git a/dmp-frontend/src/app/ui/dashboard/dashboard.component.html b/dmp-frontend/src/app/ui/dashboard/dashboard.component.html index e10d7d9ff..a8f432e2a 100644 --- a/dmp-frontend/src/app/ui/dashboard/dashboard.component.html +++ b/dmp-frontend/src/app/ui/dashboard/dashboard.component.html @@ -88,7 +88,7 @@

DATA MANAGEMENT PLANS

{{ dashboardStatisticsData?.totalDataManagementPlanCount }} Public Dmps

-

View All

+

{{ 'GENERAL.ACTIONS.VIEW-ALL' | translate }}

@@ -102,7 +102,7 @@

DATASETS

{{ dashboardStatisticsData?.totalDataSetCount }} Public Datasets

-

View All

+

{{ 'GENERAL.ACTIONS.VIEW-ALL' | translate }}

diff --git a/dmp-frontend/src/app/ui/dmp/overview/dmp-overview.component.html b/dmp-frontend/src/app/ui/dmp/overview/dmp-overview.component.html index e719b4f28..60079d5de 100644 --- a/dmp-frontend/src/app/ui/dmp/overview/dmp-overview.component.html +++ b/dmp-frontend/src/app/ui/dmp/overview/dmp-overview.component.html @@ -81,7 +81,7 @@
- {{ dmp.project.abbreviation }}

{{ dmp.project.label }}

diff --git a/dmp-frontend/src/app/ui/dmp/overview/dmp-overview.component.scss b/dmp-frontend/src/app/ui/dmp/overview/dmp-overview.component.scss index a324f00ed..4737f1d7f 100644 --- a/dmp-frontend/src/app/ui/dmp/overview/dmp-overview.component.scss +++ b/dmp-frontend/src/app/ui/dmp/overview/dmp-overview.component.scss @@ -50,7 +50,6 @@ margin-right: 2em; margin-top: 2em; padding: 0.5em; - cursor: pointer; } .researchers-title { @@ -59,7 +58,7 @@ background-color: white; padding: 0px 10px; margin-top: -16px; - + cursor: default; text-transform: uppercase; } @@ -68,6 +67,7 @@ align-items: baseline; margin-top: 0px; text-transform: uppercase; + cursor: pointer; } .container-header p { @@ -176,21 +176,22 @@ h4 span { } .desc { - position: relative; - overflow: hidden; - height: 80px; - font-size: 14px; - padding-top: 15px; - margin-bottom: 30px; + position: relative; + overflow: hidden; + height: 80px; + font-size: 14px; + padding-top: 15px; + margin-bottom: 30px; + cursor: default; } .desc:after { - content: ""; - text-align: right; - position: absolute; - bottom: 0; - right: 0; - width: 70%; - height: 1.4em; - background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 50%); + content: ""; + text-align: right; + position: absolute; + bottom: 0; + right: 0; + width: 70%; + height: 1.4em; + background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 50%); }