I don't see anything wrong or conflicting in the CSS. I would say this is probably a browser bug with parsing the complicated sibling selector. Reversing the two rules like so seems to avoid the issue.
/*
Workaround to fix issue where the tabset would not properly resize when you
slowly resized the desktop browser window in 1.3.1.GA
http://jira.icesoft.org/browse/MOBI-1082 fixed the main issue with IE8
*/
.mobi-tabset.mobi-tabset-tabs-bottom > .mobi-tabset-tabs
{
position: fixed;
bottom: 0;
}
/*
Workaround to fix alignment issue with fieldsetRow in 1.3.1.GA
JIRA http://jira.icesoft.org/i#browse/MOBI-1083
*/
.mobi-fieldset-row > * ~ *:last-child {
{
float: none !important;
}
previous recomendation of :-
{ position: fixed; bottom: 0; }.mobi-tabset.mobi-tabset-tabs-bottom > .mobi-tabset-tabs
no longer works when using :-
{ float: none !important; }/*
Workaround to fix alignment issue with fieldsetRow in 1.3.1.GA
JIRA http://jira.icesoft.org/i#browse/MOBI-1083
*/
.mobi-fieldset-row>* ~ *:last-child {