Activities of "alper"

Hi,

The demo version is an instance of ABP Commercial Angular template. We have added some custom components for demo. You can create your own demo.

There's an enum for Lepton styles. You can use it in backend

Volo.Abp.LeptonTheme.Management.LeptonStyle

To change the lepton theme style you can use appsettings.json

{
  "ConnectionStrings": {
    "Default": "Server=localhost;Database=TestDatabase;Trusted_Connection=True;MultipleActiveResultSets=true"
  }, 
  "Settings": {
    "Volo.Abp.LeptonTheme.Layout.MenuPlacement": "Top",
    "Volo.Abp.LeptonTheme.Style": "Style5",
    "Volo.Abp.LeptonTheme.Layout.Boxed": "True",
    "Volo.Abp.LeptonTheme.Layout.MenuStatus": "AlwaysOpened"
  }
}

Alternatively you can set it in the database.

Table name: AbpSettings

| Name | Value | ProviderName | | --- | --- | --- | | Volo.Abp.LeptonTheme.Layout.Boxed | True, False | T | | Volo.Abp.LeptonTheme.Layout.MenuPlacement | Top, Left | T | Volo.Abp.LeptonTheme.Style | Style1, Style2, Style3, Style4, Style5 | T | Volo.Abp.LeptonTheme.Layout.MenuStatus | AlwaysOpened or OpenOnHover | T

Answer

hi,

I've created a gist tutorial to show how to customize the current login view https://gist.github.com/ebicoglu/eebfbc7368b3ab1b739afdf56a293d8f

there's no exact date but it's on the roadmap (short term)

This has been already addressed in https://github.com/volosoft/volo/issues/835. We're waiting a PR to resolve the issue. On the other, this library works cross-platform even with this version. All the methods we use works on Linux,Mac and Windows. It doesn't break cross-platform functionality. But anyway we'll fix that issue as soon as possible.

Showing 1971 to 1975 of 1975 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 11, 2024, 11:11