diff --git a/dmp-frontend/src/app/ui/dmp/editor/dmp-editor.component.html b/dmp-frontend/src/app/ui/dmp/editor/dmp-editor.component.html index 28eceacdc..108c4c8ab 100644 --- a/dmp-frontend/src/app/ui/dmp/editor/dmp-editor.component.html +++ b/dmp-frontend/src/app/ui/dmp/editor/dmp-editor.component.html @@ -86,7 +86,7 @@
  • {{'DMP-EDITOR.STEPPER.DATASET' | translate}}
    - remove_circle_outline + remove_circle_outline
    check{{'TYPES.DATASET-STATUS.FINALISED' | translate}} diff --git a/dmp-frontend/src/app/ui/dmp/editor/dmp-editor.component.scss b/dmp-frontend/src/app/ui/dmp/editor/dmp-editor.component.scss index eb8ae2c58..5f8b0017a 100644 --- a/dmp-frontend/src/app/ui/dmp/editor/dmp-editor.component.scss +++ b/dmp-frontend/src/app/ui/dmp/editor/dmp-editor.component.scss @@ -355,6 +355,11 @@ a:hover { cursor: auto !important; } +.add-dataset-btn:hover { + color: #129d99 !important; + border: 1px solid #129d99; +} + .dataset-list { list-style-type: none; padding-left: 0px; diff --git a/dmp-frontend/src/assets/splash/index.html b/dmp-frontend/src/assets/splash/index.html index b5df09f6f..9f1b8dd75 100644 --- a/dmp-frontend/src/assets/splash/index.html +++ b/dmp-frontend/src/assets/splash/index.html @@ -103,13 +103,13 @@

    Argos

     

    experience

    -
    +

    1

     

    Select Templates

    -
    +

    2

     

    Fill the information

    -
    +

    3

     

    Share DMP

    @@ -393,4 +393,4 @@ - \ No newline at end of file + diff --git a/dmp-frontend/src/assets/splash/js/scripts.js b/dmp-frontend/src/assets/splash/js/scripts.js index 6abf11b0b..724c64c44 100644 --- a/dmp-frontend/src/assets/splash/js/scripts.js +++ b/dmp-frontend/src/assets/splash/js/scripts.js @@ -45,3 +45,19 @@ window.onclick = function (event) { this.closeOpenDropdowns(); } } + +// Slideshow per 3 sec, stops on option click +window.onload = function slideImages() { + var x = -1; + slides = setInterval(function displayNextImage() { + x = (x === images.length - 1) ? 0 : x + 1; + document.getElementById('template-preview').src = images[x]; + toggleClass(['id1','id2','id3'], 'id'.concat((x + 1).toString())); + }, 3000); +} + +var slides; +var images = []; +images[0] = 'assets/img/template-preview-1.svg'; +images[1] = 'assets/img/template-preview-2.svg'; +images[2] = 'assets/img/template-preview-3.svg';