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.
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; }