Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(bouquet): crée bouquet avec donnée non-disponible/manquante #161

Merged
merged 10 commits into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion configs/ecospheres/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ website:
oauth_option: true
# display settings
organizations_list_page_size: 9
contact_email: [email protected]

# For step 2 of bouquet creation
themes:
Expand Down Expand Up @@ -91,7 +92,7 @@ themes:
subthemes:
- name: Voitures et infrastructures routières
- name: Mobilité courte distance (hors voiture)
- name: Mobilité longue distance (avion, train)
- name: Mobilité longue distance (avion, train)
- name: Chantiers transverses
color: EAEEFE
subthemes:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ecospheres-front",
"version": "0.2.0",
"version": "0.3.0",
"private": true,
"scripts": {
"dev": "vite",
Expand Down
23 changes: 19 additions & 4 deletions src/assets/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,25 @@
width: 45%;
}

.fit {
width: fit-content;
}

/* ELEMENT DISPLAY */
.block {
display: block;
}

/* FONT CUSTOM */
.uppercase {
text-transform: uppercase;
}

.bold {
font-weight: 700;
}

/* ALIGNMENT */
.justify-between {
justify-content: space-between;
}
Expand All @@ -20,10 +39,6 @@
align-items: center;
}

.block {
display: block;
}

.theme_without_breadcrumb {
margin: 128px 0 0;
}
Expand Down
1 change: 0 additions & 1 deletion src/components/Tooltip.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ const props = defineProps(['title', 'name', 'show', 'text'])
display: none;
width: 300px;
box-shadow: 0px -1px 6px 0px #00000040;
top: -12.5rem;

&__arrow {
width: 50px;
Expand Down
6 changes: 3 additions & 3 deletions src/views/bouquets/BouquetDetailView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,12 @@ onMounted(() => {
]"
>
<DsfrAccordion
:title="datasetProperties.libelle"
:title="datasetProperties.title"
:expanded-id="datasetProperties.id"
@expand="datasetProperties.id = $event"
>
<div class="fr-mb-3w">
{{ datasetProperties.raison }}
{{ datasetProperties.description }}
</div>
<a
v-if="datasetProperties.uri"
Expand Down Expand Up @@ -121,7 +121,7 @@ onMounted(() => {
&__container {
border: 1px solid var(--border-default-grey);

:deep a {
:deep(a) {
color: var(--text-action-high-blue-france);
}
}
Expand Down
Loading