Problem/Motivation

Contextual gear, that appears when you hover over a view (a page view with no side blocks in touch theme), is misplaced to top left side and outside the view. When you hover over the view, it appears, but when you try to click it, it disappears because it's outside the view.
This happens because parent div .contextual-links-region has 0px height and width, which in turn happens because all child divs inside parent div have been floated.
To reproduce the problem go to http://simplytest.me/project/views/7.x-3.8?add[]=touch, create some content, select touch theme, create view page of that content, select format table of fields, save and see the view you just created.

Proposed resolution

To resolve this I added css:

.contextual-links-region {
  overflow: auto;
  display: block !important;
}

Don't know how to resolve this properly, just sharing if anyone else encountered this little annoyance :)