Tiled view of forum statistics

First, switch the position of the statistics widget to below / above the list of nodes, since the code is suitable only for such positions.

Add to extra.less

Less:
.block[data-widget-key="forum_overview_forum_statistics"] {
   
    .block-minorHeader {
        display: none;
    }
   
    .block-body.block-row {
        display: grid;
        grid-template-columns: 25% 25% 25% 25%;
       
        &:before {
            display: none;
        }
       
        .pairs.pairs--justified {
            padding: 15px 12px;
            border-right: 1px solid @xf-borderColor;
           
            &:before {
                .m-faBase();
                 font-size: 37px;
                color: @xf-textColorFeature;
                float: left;
            }
           
            &:nth-child(1) {
                .m-faBefore(@fa-var-comment-alt);
            }

            &:nth-child(2) {
                .m-faBefore(@fa-var-comments-alt);
            }

            &:nth-child(3) {
                .m-faBefore(@fa-var-users);
            }
   
            &:nth-child(4) {
                .m-faBefore(@fa-var-user);
                border-right: none;
            }
           
            & > dt {
                float: unset;
                margin-right: 0;
                text-align: right;
               
                &:after {
                    content: "";
                }
            }
           
            & > dd {
                font-weight: 500;
                font-size: 20px;
            }
        }
    }
}
@media (max-width: @xf-responsiveMedium) {
   
    .block[data-widget-key="forum_overview_forum_statistics"] {
   
        .block-body.block-row {
            grid-template-columns: 50% 50%;
       
            .pairs.pairs--justified {
                text-align: center;
           
                &:before {
                    float: unset;
                    display: block;
                }

                &:nth-child(1) {
                    border-bottom: 1px solid @xf-borderColor;
                }

                &:nth-child(2) {
                    border-bottom: 1px solid @xf-borderColor;
                    border-right: none;
                }
           
                &:nth-child(3) {
                }

                &:nth-child(4) {
                    border-right: none;
                }
           
                & > dt {
                    text-align: center;
                }
           
                & > dd {
                    text-align: center;
                    float: unset;
                }
            }
        }
    }  
}
 

Attachments

  • Tiled view of forum statistics.png
    Tiled view of forum statistics.png
    7.9 KB · Views: 419
Back
Top