- Revert r6060, fix #1487822 using css-only
| | |
| | | =========================== |
| | | |
| | | - Set flexible width to login form fields (#1488418) |
| | | - Force page reload if list columns changed in IE8 (#1487822) |
| | | - Fix re-draw bug on list columns change in IE8 (#1487822) |
| | | - Allow mass-removal of addresses from a group (#1487748) |
| | | - Fix removing all contacts on import to LDAP addressbook |
| | | - Fix so "Back" from compose/show doesn't reset search request (#1488238) |
| | |
| | | public function redirect($p = array(), $delay = 1) |
| | | { |
| | | $location = rcmail::get_instance()->url($p); |
| | | $this->remote_response(sprintf("window.setTimeout(function(){ %s.redirect('%s',true); }, %d);", JS_OBJECT_NAME, $location, $delay)); |
| | | $this->remote_response("window.setTimeout(\"location.href='{$location}'\", $delay);"); |
| | | exit; |
| | | } |
| | | |
| | |
| | | $save_arr['list_cols'] = explode(',', $cols); |
| | | } |
| | | |
| | | if ($save_arr) { |
| | | if ($save_arr) |
| | | $RCMAIL->user->save_prefs($save_arr); |
| | | |
| | | // force page reload if list columns changed in IE8 (#1487822) |
| | | if ($save_arr['list_cols'] && $OUTPUT->browser->ie && $OUTPUT->browser->ver == 8) { |
| | | $OUTPUT->redirect(array('_mbox' => $RCMAIL->storage->get_folder()), 0); |
| | | } |
| | | } |
| | | |
| | | $mbox_name = $RCMAIL->storage->get_folder(); |
| | | $threading = (bool) $RCMAIL->storage->get_threading(); |
| | |
| | | #messagelist thead tr td.subject |
| | | { |
| | | padding-left: 18px; |
| | | width: 99%; |
| | | } |
| | | |
| | | #messagelist tbody tr td |
| | |
| | | width: 26px; |
| | | } |
| | | |
| | | #messagelist thead tr td.subject, |
| | | #messagelist tbody tr td.subject { |
| | | width: 99%; |
| | | white-space: nowrap; |