Core Dark Modded Version 1.0.0

  • Hallöle,

    Die Registerbox sollte auch in Blau sein da die html-Deklaration einer Infobox von Haus aus vorgegeben ist, daher auch kein Fehler. Du kannst aber nur diese Box farblich anpassen mit folgenden CSS-Codes:

    Code
    .boxesSidebarLeft .box.boxInfo[data-box-identifier*="com.woltlab.wcf.RegisterButton"], .boxesSidebarRight .box.boxInfo[data-box-identifier*="com.woltlab.wcf.RegisterButton"] {
        background-color: $wcfSidebarBackground;
    }
    .boxesSidebarLeft .box.boxInfo[data-box-identifier*="com.woltlab.wcf.RegisterButton"] .boxTitle, .boxesSidebarRight .box.boxInfo[data-box-identifier*="com.woltlab.wcf.RegisterButton"] .boxTitle {
        background-color: transparent;
        margin: 0px;
        padding: 0px;
        border-radius: 0px;
    }

    und der Button:

    Code
    .boxesSidebarLeft .box.boxInfo[data-box-identifier*="com.woltlab.wcf.RegisterButton"] .boxTitle .button.buttonPrimary, .boxesSidebarRight .box.boxInfo[data-box-identifier*="com.woltlab.wcf.RegisterButton"] .boxTitle .button.buttonPrimary {
        background-color: $wcfButtonPrimaryBackground;
    }
    .boxesSidebarLeft .box.boxInfo[data-box-identifier*="com.woltlab.wcf.RegisterButton"] .boxTitle .button.buttonPrimary:hover, .boxesSidebarRight .box.boxInfo[data-box-identifier*="com.woltlab.wcf.RegisterButton"] .boxTitle .button.buttonPrimary:hover {
        background-color: $wcfButtonPrimaryBackgroundActive;
    }

    Gino ;)

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!