[cv6] Core

[cv6] Core 1.2.0 RC 3

No permission to download

Hoffi

Well-known member
Hoffi submitted a new resource:

[cv6] Core - Core addon to combine some cross addon functionality

Core AddOn which from now on, (nearly) all my AddOns will require.

Besides Icon handling and Assset Upload some other minor thing that I share between my AddOns.

Mostly this is related to Font Awesome handling. See Edit Option Group as Demo.

Also see pictures whats inside.

Read more about this resource...
 
Hey. I added the core library and icons to my forum and it messed up my css for toggling the categories. Is there something I am missing? I am using the latest xenforo software. I also installed the icon add on that requires code. This is the css code for reference:


CSS:
.block--category
{
    .collapseTrigger
    {
        opacity: 0.5;
        transition: opacity 0.3s;
        margin-right: 10px;
        &.is-active:before
        {
            content: "\f205";
            transform: scale(-1, 1);
            margin-right: -8px;
        }
        &:before
        {
            content: "\f205";
            font-size: 80%;
        }
    }
    .block-container:hover .collapseTrigger
    {
        opacity: 1;
    }
}

.collapsible-nodes
{
        .block-header
        {
            display: flex;
        }
        .block-header--left
        {
            margin-right: auto;
            max-width: 100%;
        }
}

.block-body.block-body--collapsible
{
    transition: all 0.75s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    -webkit-transition-property: all, -xf-opacity;
    transition-property: all, -xf-opacity;
    overflow-y: hidden;
    height: 0;
    -webkit-transition-property: all, -xf-height;
    transition-property: all, -xf-height;
}
 
Thanks for the update.

Bugs in 1.2.0 RC1:

1) Did find what appears to be a missing phrase...

When selecting a "Layout" Style that does not exist for the selected Font Awesome icon it displays "cv6_unknown_fa_icon" under the option. (see image below)

1738183928050.webp

2) The phrase also does not hide after selecting a working style. Requires a page refresh or save to clear the phrase. Which is unlike the fa-bug icon which does clear and shows the appropriate icon immediately after selecting a working style.

Edit: As you can tell, this is being used with Node Icons & Tools (1.3.4 Patch Level 3), so the bugs could also originate from there. They just weren't visible before the upgrade of the Core add-on.
 
Last edited:
Back
Top Bottom