Not a bug CSS Error: node_list

RedSpades

Member
Hi everyone,

I'm getting the following errors. First, it shows up on the forum page right above. Check csserror1.jpg attachment.

Here is my node_list.css code:

Code:
.nodeList { zoom: 1; }
.nodeList .node {
    zoom: 1;
    vertical-align: bottom;
}

.nodeList .node.level_1
{
    margin-bottom: 20px;
}

.nodeList .node.level_1:last-child
{
    margin-bottom: 0;
}

.nodeList .node.groupNoChildren + .node.groupNoChildren
{
    margin-top: -20px;
}

.node .nodeInfo
{
    overflow: hidden; zoom: 1;
    position: relative;
}

    .node .nodeInfo.primaryContent,
    .node .nodeInfo.secondaryContent
    {
        padding: 0;
    }

.node .nodeIcon
{
    @property "nodeIcon";
    background: transparent none no-repeat center center;
    margin: 10px 0 10px 4px;
    float: left;
    width: 44px;
    height: 34px;
    @property "/nodeIcon";
}

    .node .forumNodeInfo .nodeIcon,
    .node .categoryForumNodeInfo .nodeIcon
    {
        background-image: url(@forumIconReadPath);
        background-color: @primaryLightish;
    }

    .node .forumNodeInfo.unread .nodeIcon,
    .node .categoryForumNodeInfo.unread .nodeIcon
    {
        background-image: url(@forumIconUnreadPath);
        background-color: @primaryMedium;
    }

    .node .pageNodeInfo .nodeIcon
    {
        background-image: url(@pageIconPath);
    }

    .node .linkNodeInfo .nodeIcon
    {
        background-image: url(@linkIconPath);
    }

.node .nodeText
{
    @property "nodeText";
    margin: 10px 270px 10px 56px;
    @property "/nodeText";
}

    .node .nodeTitle
    {
        @property "nodeTitle";
        font-size: 12pt;
        @property "/nodeTitle";
    }

        .node .unread .nodeTitle
        {
            @property "nodeTitleUnread";
            font-weight: bold;
            @property "/nodeTitleUnread";
        }

    .node .nodeDescription
    {
        @property "nodeDescription";
        font-size: 11px;
        @property "/nodeDescription";
    }

    .node .nodeStats
    {
        @property "nodeStats";
        font-size: 11px;
        margin-top: 2px;
        @property "/nodeStats";
    }

.node .nodeLastPost
{
    @property "secondaryContent";
    background: @primaryLightest url('@imagePath/xenforo/gradients/category-23px-light.png') repeat-x top;
    padding: 10px;
    border-bottom: 1px solid @primaryLighterStill;
    @property "/secondaryContent";;

    @property "nodeLastPost";
    font-size: 11px;
    padding: 3px 10px;
    margin: 10px;
    border: 1px solid @primaryLighterStill;
    border-radius: 3px;
    position: absolute;
    top: 0;
    right: 0;
    line-height: 14px;
    white-space: nowrap;
    word-wrap: normal;
    overflow: hidden;
    width: 210px;
    height: 28px;
    @property "/nodeLastPost";
}

    .node .nodeLastPost .lastThreadMeta
    {
        display: block;
    }

    .node .nodeLastPost .noMessages
    {
        line-height: 28px;
    }

.node .nodeControls
{
    position: absolute;
    top: 0;
    right: {xen:calc '@nodeLastPost.border-left-width + @nodeLastPost.padding-left + @nodeLastPost.width + @nodeLastPost.padding-right + @nodeLastPost.border-right-width + @nodeLastPost.margin-right'}px;
    margin: 20px 0;
}

    .node .tinyIcon
    {
        @property "nodeTinyIcon";
        background: transparent url('@imagePath/xenforo/xenforo-ui-sprite.png') no-repeat -112px -16px;
        margin: 1px 4px;
        display: block;
        white-space: nowrap;
        text-indent: 9999px;
        overflow: hidden;
        opacity: 0.25;
        width: 14px;
        height: 14px;
        @property "/nodeTinyIcon";
    }

    .node .nodeInfo:hover .tinyIcon[href],
    .Touch .node .tinyIcon
    {
        @property "nodeTinyIconHover";
        opacity: 1;
        @property "/nodeTinyIconHover";
    }

        .node .feedIcon
        {
            background-image: url(@feedIconPath);
        }

/* description tooltip */

.nodeDescriptionTip
{
    @property "nodeDescriptionTip";
    padding: 4px 10px;
    margin-top: -22px;
    margin-left: 10px;
    line-height: 1.5;
    width: 350px;
    height: auto;
    @property "/nodeDescriptionTip";
}

    .nodeDescriptionTip .arrow
    {
        @property "nodeDescriptionTipArrow";
        border: 6px solid transparent;
        border-right-color: @tooltip.background-color;
        border-left: 1px none black;
        top: 8px;
        left: -6px;
        bottom: auto;
        @property "/nodeDescriptionTipArrow";
    }

/* main area - used for L2 categories and most other nodes */

.nodeList .categoryForumNodeInfo,
.nodeList .forumNodeInfo,
.nodeList .pageNodeInfo,
.nodeList .linkNodeInfo
{
    @property "primaryContent";
    background-color: @contentBackground;
    padding: 10px;
    border-bottom: 1px solid @primaryLighterStill;
    @property "/primaryContent";

    padding: 0;
}

/* category strip - used for L1 categories and group headers */

.nodeList .categoryStrip
{
    @property "subHeading";
    font-size: 11px;
    color: @secondaryDarker;
    background: @secondaryLighter url('@imagePath/xenforo/gradients/category-bar-gradient.png') repeat-x top;
    padding: 5px 10px;
    margin: 3px auto 0;
    border: 1px solid @secondaryLight;
    @property "/subHeading";

    @property "categoryStrip";
    padding: 6px 10px;
    margin: 0 0 5px;
    border-bottom-color: @subHeading.border-bottom-color;
    border-radius: 5px;
    min-height: 6px;
    @property "/categoryStrip";
}

    .nodeList .categoryStrip .nodeTitle
    {
        @property "categoryStripTitle";
        font-weight: bold;
        font-size: 13px;
        color: @secondaryDarker;
        text-shadow: 0 1px 0 @primaryLightest;
        @property "/categoryStripTitle";
    }

        .nodeList .categoryStrip .nodeTitle a
        {
            color: @categoryStripTitle.color;
        }

    .nodeList .categoryStrip .nodeDescription
    {
        @property "categoryStripDescription";
        font-size: 10px;
        color: @secondaryDarker;
        @property "/categoryStripDescription";
    }

        .nodeList .categoryStrip .nodeDescription a
        {
            color: @categoryStripDescription.color;
        }

.nodeList .node.groupNoChildren + .node.groupNoChildren .categoryStrip
{
    display: none;
}

/* node stats area */

.nodeStats
{
    overflow: hidden; zoom: 1;
}

.nodeStats dl,
.subForumsPopup
{
    float: left;
    display: block;
    margin-right: 3px;
}

/*.nodeStats dl,
.subForumsPopup .PopupControl
{
    padding-top: 2px;
}*/

.subForumsPopup a.PopupControl
{
    padding-left: 5px;
    padding-right: 5px;
}

.subForumsPopup .dt
{
    color: @mutedTextColor;
}

.subForumsPopup .PopupOpen .dt
{
    color: @body.color;
}

.subForumsMenu .node .node /* for depths 2+ */
{
    padding-left: 10px;
}

    .subForumsMenu .node .nodeTitle
    {
        font-size: 11px;
    }

/** new discussion button below nodelist **/

.nodeListNewDiscussionButton
{
    margin-top: 10px;
    text-align: right;
}

And csserror2.jpg shows my red footer background disappearing and displaying a golden color now. :(

Any help will be very much appreciated.
 

Attachments

  • csserror1.webp
    csserror1.webp
    4.9 KB · Views: 10
  • csserror2.webp
    csserror2.webp
    5.3 KB · Views: 10
Top Bottom