|
|
@@ -39,8 +39,6 @@ de l'écran (ou au bas de l'écran sur les petits écrans)
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
-import { defineProps, ComputedRef } from "vue";
|
|
|
-import { useRouter } from "vue-router";
|
|
|
import { useDisplay } from "vuetify";
|
|
|
import { useLayoutStore } from "~/stores/layoutStore";
|
|
|
import { ActionMenuItemType } from "~/types/enum/layout";
|
|
|
@@ -51,7 +49,6 @@ const router = useRouter();
|
|
|
const layoutStore = useLayoutStore()
|
|
|
const { isMobileDevice } = useClientDevice()
|
|
|
|
|
|
-// TODO: passer en conf?
|
|
|
const telephoneNumber = "09 72 12 60 17";
|
|
|
|
|
|
// Actions par défaut du menu, peut-être surchargé via la propriété `actions`
|
|
|
@@ -178,54 +175,20 @@ const onActionClick = (action: ActionMenuItem) => {
|
|
|
}
|
|
|
|
|
|
.primary {
|
|
|
- background: var(--primary-color);
|
|
|
- color: var(--on-primary-color);
|
|
|
+ background: var(--action-menu-primary-color);
|
|
|
+ color: var(--action-menu-on-primary-color);
|
|
|
|
|
|
a {
|
|
|
- color: var(--on-primary-color);
|
|
|
+ color: var(--action-menu-on-primary-color);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.secondary {
|
|
|
- background: var(--secondary-color);
|
|
|
- color: var(--on-secondary-color);
|
|
|
+ background: var(--action-menu-secondary-color);
|
|
|
+ color: var(--action-menu-on-secondary-color);
|
|
|
|
|
|
a {
|
|
|
- color: var(--on-secondary-color);
|
|
|
+ color: var(--action-menu-on-secondary-color);
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
-.on-primary-color-alt {
|
|
|
- background: var(--on-primary-color-alt);
|
|
|
- color: var(--on-alt-theme);
|
|
|
-
|
|
|
- a {
|
|
|
- color: var(--on-alt-theme);
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-//.yellow-square {
|
|
|
-// background: rgb(250, 194, 10);
|
|
|
-// color: #0e2d32;
|
|
|
-//}
|
|
|
-//
|
|
|
-//.green-square {
|
|
|
-// background: #9edbdd;
|
|
|
-//}
|
|
|
-//
|
|
|
-//.red-square {
|
|
|
-// background: #d8050b;
|
|
|
-//}
|
|
|
-//
|
|
|
-//.blue-square {
|
|
|
-// background: #2093be;
|
|
|
-//}
|
|
|
-//
|
|
|
-//.logo-square {
|
|
|
-// background: var(--Bleu-School-60, rgba(32, 147, 190));
|
|
|
-//}
|
|
|
-//
|
|
|
-//.darkblue-square {
|
|
|
-// background: #0e2d32;
|
|
|
-//}
|
|
|
</style>
|