tito433 / Bootstrap-icon-picker

Icon picker for Bootstrap 3 like a datepicker
78 stars 30 forks source link

Page right icon drops to the next line #1

Closed sarxos closed 10 years ago

sarxos commented 10 years ago

Hi,

Thank you for this awesome icon picker for bootstrap. I noticed issue on the demo page. I'm using Firefox on Ubuntu 12.04.

demo

This is most likely because of the float: right attribute not working in the rule:

.icon-popup .ip-control ul li:last-child {
    float: right;
    margin-right: 7px;
}

I suggest to change it to:

.icon-popup .ip-control ul li:last-child {
    position: absolute;
    right: 0;
    top: 14px;
    margin-right: 2px;
}
tito433 commented 10 years ago

@sarxos Many thanks for you feed back. I really appreciate it.