Skip to content

Commit

Permalink
Merge pull request #263 from IGNF/fix/gfi-scrollbar
Browse files Browse the repository at this point in the history
fix(gfi): retrait d'une scrollbar horizontale inutile (#253)
  • Loading branch information
elias75015 authored Nov 18, 2024
2 parents 0951951 + 7abc526 commit cf9aa41
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "geopf-extensions-openlayers",
"description": "French Geoportal Extensions for OpenLayers libraries",
"version": "1.0.0-beta.0-260",
"version": "1.0.0-beta.0-263",
"date": "15/11/2024",
"module": "src/index.js",
"directories": {},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ dialog[id^="GPgetFeatureInfoPanel-"] {
left: 47px;
top: 2px;
max-height: 52vh;
overflow-x: hidden;
}

.GPgetFeatureInfoAccordionGroup {
Expand Down
2 changes: 1 addition & 1 deletion src/packages/Controls/GetFeatureInfo/GetFeatureInfoDOM.js
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ var GetFeatureInfoDOM = {
<span id="gfiLayerName">${layername}</span>
</button>
</h3>
<div class="fr-collapse GPgetFeatureInfoAccordionContent GPelementHidden" id="accordion-${layername}">
<div class="fr-collapse GPgetFeatureInfoAccordionContent GPelementHidden" id="accordion-${layername}" style="margin:unset;">
${this._createGetFeatureInfoWaitingDiv()}
</div>
</section>
Expand Down

0 comments on commit cf9aa41

Please sign in to comment.