Chrome w/ frames and smoothness/jquery-ui-1.8.2.custom.css

Chrome w/ frames and smoothness/jquery-ui-1.8.2.custom.css

Hi there,

(I'm not sure this is the right place. I tried my best... please forward to whereever is more appropiate. Thanks.)

we've come across a very weird issue with the latest jQuery UI and current Chrome browser.

In line 66 of themes/smoothness/jquery-ui-1.8.2.custom.css there is the following CSS:

  1. .ui-widget :active { outline: none; }

Which, suprisingly, breaks frame dragging, that is, we've got a page with a frameset (single top frame, two at the bottom) and now the lower frames cannot be resized any more.

There is an easy fix: just add an "a" before the ":active":

  1. .ui-widget a:active { outline: none; }
I suppose this is a bug (maybe in Chrome as well).

HTH,

Tino.