Jump to content

Recommended Posts

  • 4 weeks later...
  • 1 month later...
  • 6 months later...

I have found that the jquery date picker is by default set to a dark background with black text.

By adding these lines in the blue.less files (etc.)


@pw-datepicker-background: @theme-primary-color;
@theme-button-secondary-background: @theme-muted-background;

I am able to at least get the background to match the rest of the theme color variables but I have tried many things and cannot find the override that is keeping the text black.

In the forms.less I have changed the color of the various ui-state element to the @theme-text-color-inverse variable which should make the text white but it is not working.

Has anyone else had this problem or found a workaround yet?

Link to comment
Share on other sites

  • 3 weeks later...

Another change I had to make - the Awesomplete flyout sets a z-index of 1 - but ui-button in this theme also sets this to 1 and the hover layer to 0.

I modified this in AdminThemeBoss/uikit/custom/theme/components/forms.less, line 122-135

    button.ui-button {
        position: relative;
        z-index: 0;

        &:hover {
            z-index: 0;
            box-shadow: 0 5px 15px @theme-primary-color-rgba;

            +.ui-button {
                z-index: 0;
            }
        }
    }

Changing the z-index values from 1, 1, 0 to 0, 0, -1 - so they'd hide behind the awesomeplete.

  • Like 1
Link to comment
Share on other sites

  • 4 months later...
  • 2 months later...

Is this theme still under development @Noel Boss? There are issues from 2019.

I really like the theme and think there could be some improvements made. But it only makes sense to contribute, if it is still maintained.
Or else we have to fork it and work on an optimized version.

  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...