Skip to content
Snippets Groups Projects
Commit 09dfc50a authored by Sébastien DA ROCHA's avatar Sébastien DA ROCHA :bicyclist:
Browse files

Merge branch 'redmine-issue/14461' into 'develop'

REDMINE_ISSUE-14461 | Responsive - Filtre écrasés sur page des projets

See merge request !451
parents f5c37715 915521e6
No related branches found
No related tags found
No related merge requests found
...@@ -171,12 +171,28 @@ export default { ...@@ -171,12 +171,28 @@ export default {
content[0].style.maxHeight = content[0].scrollHeight + 5 + 'px'; content[0].style.maxHeight = content[0].scrollHeight + 5 + 'px';
} }
}); });
window.addEventListener('resize', this.handleResize);
}, },
methods: { methods: {
...mapActions('projects', [ ...mapActions('projects', [
'SEARCH_PROJECTS' 'SEARCH_PROJECTS'
]) ]),
handleResize() {
if (window.innerWidth <= 700) {
const icon = document.getElementsByClassName('caret');
icon[0].classList.toggle('right');
const content = document.getElementsByClassName('filters');
content[0].classList.toggle('hidden');
if (content[0].style.maxHeight){
content[0].style.maxHeight = null;
} else {
content[0].style.maxHeight = content[0].scrollHeight + 5 + 'px';
}
}
}
} }
}; };
</script> </script>
...@@ -194,9 +210,10 @@ export default { ...@@ -194,9 +210,10 @@ export default {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: flex-end; justify-content: flex-end;
align-items: flex-end; align-items: center;
margin-bottom: 1rem;
.accordion { .accordion {
width: fit-content; width: fit-content !important;
.collapsible-filters { .collapsible-filters {
font-size: 1.25em; font-size: 1.25em;
padding-right: 0; padding-right: 0;
...@@ -246,4 +263,19 @@ export default { ...@@ -246,4 +263,19 @@ export default {
border: none; border: none;
} }
} }
@media screen and (max-width: 700px) {
.filters-container {
.filters {
display: flex;
flex-direction: column;
.transition-properties(max-height 0.2s ease-out;);
.item {
width: 100%;
}
}
}
}
</style> </style>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment