Completely hide SSO iframe (#10027)
Without `style="border: none;"` the `iframe` borders are still visible and it creates a small visible square.
Jonathan Barda committed
Oct 22, 2020 at 18:43 UTC
fa63c049d7608fb31e3be9b039be32679403366f
1 file changed
+1
-1
web/gui/index.html
+1
-1
@@ -1315,7 +1315,7 @@
1315
</div>
1316
</div>
1317
</div>
1318
- <iframe id="ssoifrm" width="0" height="0"></iframe>
1318
+ <iframe id="ssoifrm" width="0" height="0" style="border: none;"></iframe>
1319
<div id="hiddenDownloadLinks" style="display: none;" hidden></div>
1320
<script type="text/javascript" src="dashboard.js?v20190902-0"></script>
1321
</body>