Esri / embed-template

Source code for the embed application used by ArcGIS Online to embed maps.
Apache License 2.0
11 stars 6 forks source link

adjust content panel width? #7

Closed upcamogie closed 6 years ago

upcamogie commented 6 years ago

I have PDFs I want to show as my popup, but the default content panel width is not wide enough to show my documents. I saw in the CSS width values for the panel, but the panel has not changed width when I modified the 'width values in the following CSS elements (below). I am sure I am missing something. This is likely the only thing I need to modify to get my app where I can use it-- only reason I downloaded as I could not find the ability to change panel size on AGOL.

.content-pane-left { width: 0; max-width: 600px; height: 100%; margin: 0; border: none; overflow: hidden !important; -webkit-transition: width 250ms ease; -moz-transition: width 250ms ease; -o-transition: width 250ms ease; -ms-transition: width 250ms ease; transition: width 250ms ease; }

.app-loading .content-pane-left { width: 600px; }

.drawer-open .content-pane-left { width: 600px; overflow: auto; overflow-x: hidden; border-right: none; }