diff --git a/front/src/components/ui/Card.vue b/front/src/components/ui/Card.vue
index fd39935db..a681e4507 100644
--- a/front/src/components/ui/Card.vue
+++ b/front/src/components/ui/Card.vue
@@ -138,10 +138,10 @@ const attributes = computed(() =>
position: absolute;
inset: 0;
- &~:is(.title, .content) {
+ &~:is(.title, .content:not(:has(:is(button, input, a, select)))) {
pointer-events:none;
}
- &:hover~:is(.content) {
+ &:hover~:is(.content:not(:has(:is(button, input, a, select)))) {
text-decoration: underline
}
}
@@ -174,6 +174,11 @@ const attributes = computed(() =>
font-size: 1rem;
pointer-events: none;
+
+ &:global(.large) {
+ font-size: 32px;
+ margin: -8px;
+ }
}
&:has(>.image)>.icon {
top: var(--fw-card-padding);
diff --git a/front/src/components/ui/Link.vue b/front/src/components/ui/Link.vue
index 14fbfa6d5..0dac794fb 100644
--- a/front/src/components/ui/Link.vue
+++ b/front/src/components/ui/Link.vue
@@ -23,7 +23,7 @@ const props = defineProps<{
& AlignmentProps>()
const isExternalLink = computed(() =>
- typeof props.to === 'string' && props.to.startsWith('http')
+ typeof props.to === 'string' && (props.to.startsWith('http') || props.to.startsWith('./'))
)
const [fontWeight, activeFontWeight] = props.thickWhenActive ? [600, 900] : [400, 400]
diff --git a/front/src/style/colors.scss b/front/src/style/colors.scss
index 07b805557..443c9eb1a 100644
--- a/front/src/style/colors.scss
+++ b/front/src/style/colors.scss
@@ -535,7 +535,7 @@
background-color:var(--background-color);
border: 1px solid var(--background-color);
- &.interactive {
+ &.interactive:not(:has(.interactive:hover)) {
&:hover {
color:var(--hover-color);
background-color:var(--hover-background-color);
diff --git a/front/ui-docs/components/ui/button.md b/front/ui-docs/components/ui/button.md
index 784c0a6c8..675522bac 100644
--- a/front/ui-docs/components/ui/button.md
+++ b/front/ui-docs/components/ui/button.md
@@ -402,13 +402,14 @@ You can use [Bootstrap Icons](https://icons.getbootstrap.com/) in your button co
- Icon buttons shrink down to the icon size if you don't pass any content. If you want to keep the button at full width with just an icon, add `button-width` as a prop.
- When combining icons with other content, prefix the icon prop with `right ` to place it after the content.
+- To make icons large, add ` large` to the icon prop.
:::
```vue-html
-
+
@@ -420,7 +421,7 @@ You can use [Bootstrap Icons](https://icons.getbootstrap.com/) in your button co
-
+
diff --git a/front/ui-docs/components/ui/card.md b/front/ui-docs/components/ui/card.md
index 752bc6211..8b32c45d4 100644
--- a/front/ui-docs/components/ui/card.md
+++ b/front/ui-docs/components/ui/card.md
@@ -1,5 +1,6 @@