diff --git a/backend/src/main/java/ovh/herisson/Clyde/Tables/ScientificPublications/PaperType.java b/backend/src/main/java/ovh/herisson/Clyde/Tables/ScientificPublications/PaperType.java new file mode 100644 index 0000000..ae69364 --- /dev/null +++ b/backend/src/main/java/ovh/herisson/Clyde/Tables/ScientificPublications/PaperType.java @@ -0,0 +1,14 @@ +package ovh.herisson.Clyde.Tables.ScientificPublications; + +/****************************************************** + * @file Access.java + * @author Maxime Bartha + * @scope Extension Publications scientifiques + * + * Type of the + * + ******************************************************/ +public enum PublishType { + article, + slides, +} diff --git a/backend/src/main/java/ovh/herisson/Clyde/Tables/ScientificPublications/PublishType.java b/backend/src/main/java/ovh/herisson/Clyde/Tables/ScientificPublications/PublishType.java deleted file mode 100644 index 9f84e79..0000000 --- a/backend/src/main/java/ovh/herisson/Clyde/Tables/ScientificPublications/PublishType.java +++ /dev/null @@ -1,6 +0,0 @@ -package ovh.herisson.Clyde.Tables.ScientificPublications; - -public enum PublishType { - article, - slides, -} diff --git a/frontend/src/Apps/ScientificPublications/ArticleComponent.vue b/frontend/src/Apps/ScientificPublications/ArticleComponent.vue index 84100b2..fa1fe01 100644 --- a/frontend/src/Apps/ScientificPublications/ArticleComponent.vue +++ b/frontend/src/Apps/ScientificPublications/ArticleComponent.vue @@ -72,5 +72,8 @@ onClickOutside(target, ()=>emit('modal-close')) border:2px solid black; border-radius: 5px; } +#downloads button:hover{ + background: rgba(191, 64, 191); +} diff --git a/frontend/src/Apps/ScientificPublications/FilterComponent.vue b/frontend/src/Apps/ScientificPublications/FilterComponent.vue index 056db3a..8b558d6 100644 --- a/frontend/src/Apps/ScientificPublications/FilterComponent.vue +++ b/frontend/src/Apps/ScientificPublications/FilterComponent.vue @@ -82,6 +82,7 @@ onClickOutside(target, ()=>emit('modal-close')) border-radius: 6px; } + .vl { border-left: 6px solid #8a2be2; } @@ -89,4 +90,16 @@ onClickOutside(target, ()=>emit('modal-close')) text-align: end; } +#submit button { + margin-left: 2px; + font-size: large; + color: white; + background: rgba(191, 64, 191,0.5); + border:2px solid black; + border-radius: 5px; +} +#submit button:hover{ + background: rgba(191, 64, 191); +} + \ No newline at end of file