Base solution for your next web application

Activities of "XugoWebTeam"

Answer

Using the setting system for this might be a good choice.

@ismcagdas Can you clarify what you mean by the Setting System please?

Answer

Hi @ismcagdas,

Yes thats right, the icon names are different. And in some csses, one tenant is using an icon font, like what you've posted above, and the other tenant is using a custom SVG I've created.

Question
  • What is your product version? 9
  • What is your product type (Angular or MVC)? Angular
  • What is product framework type (.net framework or .net core)? .net core
  • Which theme are you using? Default

Hi,

We have a multi-tenant implementation of ASPNETZERO, and our needs require us to serve different icons to different Tenants.

Currently they way we are doing this is by forking the code in the HTML using appSession.tenancyName :

<img *ngIf="appSession.tenancyName.toLowerCase() == 'tenantName'

or:

<i *ngIf="appSession.tenancyName.toLowerCase() == 'tenantName' else defaultEventIcon;" class="la la-warning"><i>

<br> But this is not an ideal solution as the code can get messy as more and more icons/tenant are added

Can you recommend an alternative approach?

fyi - currently were using image icons, font icons and some SVG icons.

thank you

you can increase the specificity with something like:

.name-of-container .form-control { border-radius: 0px; }

But that is not guaranteed to work - it depends on the specificity of the rule that you are trying to override. You may need to add more elements to your rule for it to work

e.g.

.name-of-containers-container .name-of-container .form-control { border-radius: 0px; }

Answer

thanks! (i was looking for it in the same place as Metronic - the header menu)

Did this get added with v.11?

Question
  • What is your product type: Angular
  • What is product framework type: .net core

Hi,

Are there plans for ASPNETZERO to introduce dark-mode in the future? I see that this has already been introduced to Metronic v.8

  • What is your product version? 9.1
  • What is your product type (Angular
  • What is product framework type .net core)

If issue is about UI

  • Which theme are you using? Default

In the Default Theme, the left side menu panel, collapses to Closed Mode when the App switches to 'Mobile View'

What is the best way we could make this happen earlier? say for example at 1100px.

I know that we need to apply a class of aside-minimize to the body, but not sure the best way of applying it

  • What is your product version? V.8
  • What is your product type (Angular or MVC)? Angular
  • What is product framework type (.net framework or .net core)? .netcore

Hello,

In the activation email for a new user signup, there is a link to Twitter in the header.

Can you please advise how we can remove this.

thank you

Version: .net + Angular

Hi,

We are in the process of updating to a newer version of ASP.netzero. We aren't mirgating to the very latest version however. My question is, are there online demos available for older versions, or only the latest?

Or would I need to download and run locally and older version if I wanted to see it?

If you do have the older version online, please advise url

Answer

@henryand

This is due to the specificty of the rule. In the first, you have 2 classes, and in the second only one. If you match (or better) the specificty, it will work as you expect.

So in your case it should be:

.header .header-top {
    background-color: [#654321](https://support.aspnetzero.com/QA/Questions/654321);
}
Showing 21 to 30 of 100 entries