I have an issue with auth server on 7.4.5.
I create a new solution 7.4.5 if you try to login on auth server the page not slide if area is small.
I see that in 7.4.5
<div class="container-fluid p-0 overflow-hidden">
...
</dv>
If I set overflow-x: hidden; it slide but I see a black band at the end off page.
How can we fix it?
10 Answer(s)
-
0
Hi,
You can try upgrading to 8.1.x or:
<div class="container-fluid p-0" style="overflow-x: hidden"> .... </div>Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post) -
0
Hi I can't upgrade right now beacuse we need to test all services in 8.x before upgrade.
How can I patch it has you suggest?
I can't semply add class beacuse the login page is embedded on account module (MVC)
Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post) -
0
Hi,
You can use js to remove classes and add styles
$(".abp-account-layout .container-fluid").removeClass("overflow-hidden") $(".abp-account-layout .container-fluid").css("overflow-x", "hidden")Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post) -
0
Hi,
you can try creating a js file and add it to the bundle system https://docs.abp.io/en/abp/latest/UI/AspNetCore/Bundling-Minification#configuring-an-existing-bundle
Configure<AbpBundlingOptions>(options => { options.ScriptBundles.Configure( LeptonXThemeBundles.Scripts.Global, bundle => { bundle.AddFiles("/accountpatch.js"); } ); });Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post) -
0
Hi,
You can try :
// remove these two lines //$(".abp-account-layout .container-fluid").removeClass("overflow-hidden") //$(".abp-account-layout .container-fluid").css("overflow-x", "hidden") $(".lpx-login-bg").css("overflow-x", "hidden")Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post) -
0
Because this is a bug in ABP, your ticket was refunded.
Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)

