Core - PixelExit.com

Core - PixelExit.com [Paid] 2.3.2

No permission to buy ($40.00)
I found a bug in the CSS for 2.3 RC4:

xbContentContainer
Code:
box-shadow: 0 1px 4px #c2c2c2;
margin-bottom: @xf-elementSpacer;
[data-color-scheme="dark"] &
{
box-shadow: 0 1px 4px #434242;
}
The data-color-scheme property only gets set when the user specifically picks a color scheme. If they are following "system default", it's gone.

I believe you use this CSS in several other places as well.
  • menuRowHighlighted
  • publicNav
  • xbContentContainer
I think you would be better off using a color property like paletteNeutral2.
 
Last edited:
You did. I found out a couple days ago and felt a bit silly. This is being addressed in the final 2.3 release.

Some will be converting to the color palette but the new CSS will be this:

Code:
.m-colorScheme(dark,
    {
        box-shadow: 0 1px 4px #434242;
    }
);
That will make it so the CSS loads on "dark" + "system set to dark".

Replacing dark with light will obviously work for light + system set to light. Updates will be out next week.
 
Found another issue... in PAGE_CONTAINER, the following code is nowhere to be found:
Code:
            <xf:if contentcheck="true">
                <div class="p-footer-debug">
                    <xf:contentcheck>
                        <xf:macro id="debug_macros::debug"
                            arg-controller="{$controller}"
                            arg-action="{$actionMethod}"
                            arg-template="{$template}" />
                    </xf:contentcheck>
                </div>
            </xf:if>

As such, there are no debug stats at the footer. Should be directly below the following code:
Code:
                            <xf:if contentcheck="true">
                                <div class="copyright-right">   
                                    <xf:contentcheck>
                                    <xf:if is="property('xbFooterLocation') == 'copyright'">
                                            <xf:macro id="default_footer" />
                                    </xf:if>
                                    </xf:contentcheck>
                                </div>
                            </xf:if>
 
Last edited:
Well, that's embarrassing. It will be patched in the release this week.
 
Last edited:
Running XF 2.3.6 and this themes dark mode is broken.

Forum and thread titles are black text on a black background.
The 'light bulb' to switch between light and dark has disappeared
The site logo has disappeared.

Will there be an update please? Light mode works fine

Thanks
 
Running XF 2.3.6 and this themes dark mode is broken.

Forum and thread titles are black text on a black background.
The 'light bulb' to switch between light and dark has disappeared
The site logo has disappeared.

Will there be an update please? Light mode works fine

Thanks
Sounds like an outdated template or something else going on. They have been updated for the 2.3 series.

If you want to submit a ticket on my site, I can take a closer look.
 
Running XF 2.3.6 and this themes dark mode is broken.

Forum and thread titles are black text on a black background.
The 'light bulb' to switch between light and dark has disappeared
The site logo has disappeared.

Will there be an update please? Light mode works fine

Thanks
core on both variations works fine for me on 2.3.6
 
Back
Top Bottom