changed button colors

This commit is contained in:
Bartha Maxime 2024-04-10 01:14:14 +02:00
parent b7a729c899
commit 40186f9898
4 changed files with 30 additions and 6 deletions

View File

@ -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,
}

View File

@ -1,6 +0,0 @@
package ovh.herisson.Clyde.Tables.ScientificPublications;
public enum PublishType {
article,
slides,
}

View File

@ -72,5 +72,8 @@ onClickOutside(target, ()=>emit('modal-close'))
border:2px solid black;
border-radius: 5px;
}
#downloads button:hover{
background: rgba(191, 64, 191);
}
</style>

View File

@ -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);
}
</style>