Open Closed

Global-styles.css not applying on Auth Server project #6590


User avatar
0
pvala created

yCheck the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, and please first use the search on the homepage. Provide us with the following info:

  • ABP Framework version: v7.3.2
  • UI Type: Angular
  • Database System: EF Core (MySQL)
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes
  • Exception message and full stack trace:
  • Steps to reproduce the issue:

We have a global-styles.css file to apply customized css in our applicaton. But it's not showing any impact on the Auth Server project that we have. It's not applying there. Can you tell us how can we achieve that?


14 Answer(s)
  • User Avatar
    0
    Anjali_Musmade created
    Support Team Support Team Member

    Hello , you can add your customize code in styles.scss page on Angular side. in this above example we can change button color and background color. ex. .btn-primary { --bs-btn-bg: #b43434; } div.card-body{ background-color: yellow; }

    output :

    Thank you.

  • User Avatar
    0
    pvala created

    But will it work on the Auth Server as well? Because our Auth Server is an MVC project, separate from angular.

  • User Avatar
    0
    Anjali_Musmade created
    Support Team Support Team Member

    Hi,

    Yes you are right that solution is for angular application.

    To customize style of AuthServer you can apply custom css in global-style.css under Authserver project.

    for example: I have changed the primary color of button like

    which results like -

    Thanks,

  • User Avatar
    0
    pvala created

    I already have done changes to the global-styles.css file under the Auth project but it's not reflecting. Do I have to provide any reference of the global stylesheet in my cshtml file?

  • User Avatar
    0
    Anjali_Musmade created
    Support Team Support Team Member

    Can you once check global-style.css file are avilable in AuthServerModule.cs file.

    Once try with my example.

  • User Avatar
    0
    pvala created

    Yes, it's there

  • User Avatar
    0
    Anjali_Musmade created
    Support Team Support Team Member

    Can you please try this code in your global-style.css file and check if it works or not.

  • User Avatar
    0
    pvala created

    Yes, it's working now. But there is one more issue, i.e., I am not able to use the bootstrap icons on my Login page. We have eye slash icon to show the password. But that is not showing up on the UI.

  • User Avatar
    0
    Anjali_Musmade created
    Support Team Support Team Member

    Can you please once try this icon <i class="fa fa-eye-slash" aria-hidden="true"></i>

  • User Avatar
    0
    pvala created

    No, it's not working. If I inspect the page, the icon element is there, but it's not actually showing up on the UI.

    <i id="PasswordVisibilityButton" class="bi bi-eye-slash show-pass-icon" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-html="true" aria-label="@L["ShowPassword"]" data-bs-original-title="@L["ShowPassword"]"></i> <i id="capslockicon" class="bi bi-capslock caps-lock-icon" style="display: none;" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-html="true" aria-label="<i class='bi bi-exclamation-circle'></i> @L["CapsLockOn"]!" data-bs-original-title="<i class='bi bi-exclamation-circle'></i> @L["CapsLockOn"]!"></i>

    These are the icons I am using right now. But they are not showing up on the UI, however they are there when I inspect on the browser.

  • User Avatar
    0
    Anjali_Musmade created
    Support Team Support Team Member

    Hello Have you added the cooresponding boostrap libararies for that icon in your project ?

  • User Avatar
    0
    pvala created

    Yes the libraries are already there. Do I have to give any reference to the bootstrap library anywhere on my razor page?

  • User Avatar
    0
    pvala created

    Hi, I was able to figure out the issue and could as well fix it. I had to add the _ViewImports.cshtml file in my LeptonX/Layouts folder and it got fixed. But now, I getting the following error in the Login.js file, could you elaborate and guide?

  • User Avatar
    0
    Anjali_Musmade created
    Support Team Support Team Member

    Hello,

    could you please create new question/ticket for this issue?

Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11