accourse resume page: actions and activities are clickable links

This commit is contained in:
2021-11-26 16:51:00 +01:00
parent 10070d1581
commit 74660448a1
4 changed files with 29 additions and 13 deletions

View File

@@ -49,8 +49,6 @@ h2.badge-title {
width: 100%;
color: $dark;
a & { text-decoration: none; } // ?!? keep it ?
span.title_label {
border-radius: 0.35rem 0 0 0.35rem;
color: $white;
@@ -75,7 +73,7 @@ h2.badge-title {
flex-grow: 1;
margin: 0 0 0 auto;
border-radius: 0 0.35rem 0.35rem 0;
background-color: $light;
background-color: $chill-llight-gray;
padding: 0.2em 1em;
ul.small_in_title {
@@ -83,6 +81,26 @@ h2.badge-title {
font-size: 70%;
padding-left: 1rem;
}
&:hover {
background-color: $chill-ll-gray;
}
}
}
/// theses links apply on badge (or other styled elements) as parent tag.
// They don't have button, picto or simple text appearance
a.badge-link {
color: unset;
text-decoration: unset;
& > h2.badge-title {
&:hover {
box-shadow: 0 0 7px 0 $chill-gray;
opacity: 0.8;
}
span.title_action:hover {
//background-color: ;
}
}
}