بدلاً من هذا +
أريد وضع عبارة، هل هذا ممكن؟
شكرًا
نعم، يجب أن يكون ذلك ممكنًا عبر CSS. ستحتاج إلى إضافة مكون سمة إلى سمة Material Design لذلك.
هل يمكنك إظهار المسار لي؟
يمكنك إجبار الزر على أن يكون له نفس المظهر الذي يظهر عليه عند تمرير الماوس فوقه باستخدام CSS التالي:
#create-topic.btn-default {
width: 190px;
}
#create-topic.btn-default:not(:hover):not(:active):not(:focus) .d-button-label {
display: inline-block;
transition: all 0.3s;
margin: 0 0.25em;
width: auto;
opacity: 1;
}
#create-topic.btn-default:not(:hover):not(:active):not(:focus) .d-icon {
margin: 0;
}
سيبدو الشكل كالتالي: