Support تغییر رنگ بکگراند دکمه

dacds

Registered
سلام دوستان خسته نباشید

چطور میشه رنگ بکگراندن این دکمه هارو تغییر داد !

fv.md.jpg
ممنون از لطفتون
 
Solution
سلام دوستان خسته نباشید
همچنین سلام خدمت شما
چطور میشه رنگ بکگراندن این دکمه هارو تغییر داد

dacds

Registered
برای اینکه شما هر دو اموزش رو گذاشتید ، یکی رو پاک کنید
من فقط کد زیر رو گذاشتم در extra.less

CSS:
@-webkit-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);}}
@-moz-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);}}
@-ms-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);}}
@keyframes pulse {to {box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);}}
.message-actionBar a.actionBar-action--report, .message-actionBar a.actionBar-action--edit, .message-actionBar a.actionBar-action--reply, .message-actionBar a.actionBar-action--spam,
.message-actionBar a.actionBar-action--delete, .message-actionBar a.actionBar-action--ip, .message-actionBar a.actionBar-action--reaction,.message-actionBar a.actionBar-action--warn,.message-actionBar a.actionBar-action--mq,
.offCanvasMenu--nav .offCanvasMenu-content {
  color: @xf-pageBg;
}
.message-actionBar a.actionBar-action {
  border-radius: 3px;
  background-color: #ddd;
  min-width: 50px;
  text-align: center;
}
.message-actionBar a.actionBar-action--report {
  background-color: #ff8700;
}

.message-actionBar a.actionBar-action--edit, .message-actionBar a.actionBar-action--reply {
  background-color: #2B6BA3;
}

.message-actionBar a.actionBar-action--delete {
  background-color: #f06c6c;
}

.message-actionBar a.actionBar-action--mq {
  background-color: #1ca844;
}

.message-actionBar a.actionBar-action--ip {
  background-color: #56bcbc;
}

.message-actionBar a.actionBar-action--reaction {
  background-color: #be37f0;
}
.message-actionBar a.actionBar-action--warn {
  background-color: #e33030;
}
.message-actionBar a.actionBar-action--spam {
  background-color: #3c31a7;
}
.actionBar-action{                             
    &:before{
        margin-right: @xf-paddingSmall;
        display: inline-block;
    }
    &--edit:before{ .m-faContent(@fa-var-pen); }
    &--report:before{ .m-faContent(@fa-var-exclamation-circle); }
    &--ip:before{ .m-faContent(@fa-var-user-secret); }
    &--delete:before{ .m-faContent(@fa-var-trash-alt); }
    &--spam:before{ .m-faContent(@fa-var-spider); }
    &--warn:before{ .m-faContent(@fa-var-exclamation-triangle); }
    &--history:before{ .m-faContent(@fa-var-history); }
    &--comment:before{ .m-faContent(@fa-var-comment); }
}
 

XenForo

Administrative
من فقط کد زیر رو گذاشتم در extra.less
میدونید باید ادرس سایت می بود تا بررسی بشه با چی تداخل داره
اینگونه نمیشه دقیق گفت مشکل از چی هست
کدهای قبلی رو حذف کرده و اینرو تست کنید
CSS:
/**********************XnForo.ir**********************/
/*********اضافه کردن آیکون و رنگ به اکشن بار نوار مدیریت پست ها****/
.message-actionBar a.actionBar-action--report, .message-actionBar a.actionBar-action--edit, .message-actionBar a.actionBar-action--reply, .message-actionBar a.actionBar-action--spam, .message-actionBar a.actionBar-action--delete, .message-actionBar a.actionBar-action--ip, .message-actionBar a.actionBar-action--reaction, .message-actionBar a.actionBar-action--warn, .message-actionBar a.actionBar-action--mq {
    color: #fff;
}
.actionBar-action--report {
    background-color: #ff8700;
}
.actionBar-action--reaction {
    background-color: #be37f0;
}
.actionBar-action--mq {
    background-color: #1ca844;
}
.actionBar-action--reply {
    background-color: #2B6BA3;
}

.actionBar-action--delete {
background-color: #9900CC;
}

.actionBar-action--edit {
    background-color: #808000;
}

.actionBar-action--ip {
        background-color: #0099FF;
}
/**********************XnForo.ir**********************/
/**********آیکن های نوار اکشن بار مدیریت***********/
.actionBar-action:before {
    margin-right: 3px;
}
.actionBar-action--edit:before {.m-faContent("\f040");}
.actionBar-action--report:before {.m-faContent("\f071");}
.actionBar-action--ip:before {.m-faContent("\f002");}
.actionBar-action--delete:before {.m-faContent("\f00d");}
.actionBar-action--spam:before {.m-faContent("\f024");}
.actionBar-action--warn:before {.m-faContent("\f12a");}
.actionBar-action--history:before {.m-faContent("\f1da");}
/**********************XnForo.ir**********************/
 
Back
Top Bottom