Fix Opera issues with duplicated scrollbar and invisible border

pull/17/head
Aleksander Machniak 12 years ago
parent aca50c1dc4
commit 64bdae829b

@ -68,7 +68,7 @@ function rcmail_plugins_list($attrib)
if ($uri && stripos($uri, 'http') !== 0) {
$uri = 'http://' . $uri;
}
$table->add_row();
$table->add('name', Q($data['name'] ? $data['name'] : $name));
$table->add('version', Q($data['version']));
@ -104,7 +104,7 @@ function rcube_plugin_data($name, &$plugins = array())
foreach ($metadata as $key => $path) {
$data[$key] = $xpath->evaluate($path);
}
console($name);
$plugins[$name] = $data;
// dependent required plugins (can be used, but not included in config)
@ -113,6 +113,7 @@ function rcube_plugin_data($name, &$plugins = array())
for ($i=0; $i<$cnt; $i++) {
$dn = $deps->item($i)->nodeValue;
console($dn);
if (!array_key_exists($dn, $plugins)) {
rcube_plugin_data($dn, $plugins);
}

@ -299,6 +299,7 @@
bottom: 0px;
border: 1px solid #999999;
background-color: #F9F9F9;
overflow: hidden;
}
#messagecontframe

@ -76,7 +76,7 @@
right: 0;
bottom: 0;
border: 1px solid #999999;
overflow: auto;
overflow: hidden;
background-color: #F2F2F2;
}

Loading…
Cancel
Save