How can I change the shortcut to create a topic?

Instead of this +
image

I want to put a phrase, that’s possible?

Thx

1 Like

Yes, it should be possible via CSS. You’ll want to add a theme component to the Material Design Theme for that.

Can you show me the path?

You can force the same aspect the button it has when hovering it with the mouse with this 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;
}

It will look like this:
image

4 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.