Neler yeni

XenForo 2.1.x Kullanıcı Menüsüne İkon Ekle (1 Kişi)

[WebAbisi] Konu Bilgileri

Konu Hakkında Merhaba, tarihinde XenForo kategorisinde brokerbey tarafından oluşturulan XenForo 2.1.x Kullanıcı Menüsüne İkon Ekle başlıklı konuyu okuyorsunuz. Bu konu şimdiye dek 329 kez görüntülenmiş, 0 yorum ve 0 tepki puanı almıştır...
Kategori Adı XenForo
Konu Başlığı XenForo 2.1.x Kullanıcı Menüsüne İkon Ekle
Konuyu başlatan brokerbey
Başlangıç tarihi
Cevaplar
Görüntüleme
İlk mesaj tepki puanı
Son Mesaj Yazan brokerbey

brokerbey

Girişimci (Startup)
Founder
markayoneticisi
Katılım
25 Eki 2020
Mesajlar
386
Tepkime puanı
138
Aşağıdaki kodları extra.less ' e ekleyiniz.

CSS:
.menu--account
{
    .listColumns a
    {
        &::before
        {
            .m-faBase();
            padding-right: 5px;
        }

        &[href*="{{ link('whats-new/news-feed') }}"]::before
        {
            .m-faContent(@fa-var-newspaper)
        }

        &[href*="{{ link('search/member') }}"]::before
        {
            .m-faContent(@fa-var-comments)
        }

        &[href*="{{ link('account/reactions') }}"]::before
        {
            .m-faContent(@fa-var-thumbs-up
        }

        &[href*="{{ link('account/account-details') }}"]::before
        {
            .m-faContent(@fa-var-cogs)
        }

        &[href*="{{ link('account/security') }}"]::before
        {
            .m-faContent(@fa-var-lock)
        }

        &[href*="{{ link('account/privacy') }}"]::before
        {
            .m-faContent(@fa-var-eye)
        }

        &[href*="{{ link('account/preferences') }}"]::before
        {
            .m-faContent(@fa-var-cog)
        }

        &[href*="{{ link('account/signature') }}"]::before
        {
            .m-faContent(@fa-var-pencil)
        }

        &[href*="{{ link('account/connected-accounts') }}"]::before
        {
            .m-faContent(@fa-var-cloud)
        }

        &[href*="{{ link('account/following') }}"]::before
        {
            .m-faContent(@fa-var-user-plus)
        }

        &[href*="{{ link('account/ignored') }}"]::before
        {
            .m-faContent(@fa-var-user-minus)
        }
    }

    a[href*="{{ link('logout') }}"]::before
    {
        .m-faBase();
        .m-faContent(@fa-var-power-off);
        padding-right: 5px;
    }
}

1609596333504.png