visionappscz / bootstrap-ui

⚠️ IN MAINTENANCE MODE. Bootstrap UI is a Bootstrap extension for building beautiful web apps user interfaces.
http://www.bootstrap-ui.com
MIT License
64 stars 15 forks source link

Prevent swapping order of multiple buttons in CTA #108

Closed adamkudrna closed 7 years ago

adamkudrna commented 7 years ago

When there are multiple buttons or item actions in div.cta, they should always appear in the same order.

Currently it can be fixed like this:

.cta > .btn:not(only-child),
.cta > .item-action:not(only-child) {
    @media screen and (min-width: @grid-float-breakpoint) {
        float: none;
    }
}