Mx toolbar: only show logout button

0
I am not a CSS hero. I'd like to only show the logout button in the Mendix toolbar. Is there a way to do that? Do I need a special widget for that? Does anybody have one? I have been looking at questions about this but no answer was just what I needed.
asked
1 answers
2

You could do this by hiding the other toolbar icons like in the example below.

.tundra .mendixToolbar_button {
    width: 24x;
    height: 20px;
    margin: 0 7px 0 0;
    padding: 0;
    background: none;
}
.tundra .mendixToolbar_desktop,
.tundra .mendixToolbar_refresh,
.tundra .mendixToolbar_back,
.tundra .mendixToolbar_forward {    
    display: none;
}
.tundra .mendixToolbar_logout {
    background: url(images/layout/icons/toolbar.png) no-repeat;
}

You probably have to play around with the toolbar image, or make seperate icons.

answered