diff --git a/UI/Common/UIxJSClose.h b/UI/Common/UIxJSClose.h deleted file mode 100644 index 5a0820f78..000000000 --- a/UI/Common/UIxJSClose.h +++ /dev/null @@ -1,41 +0,0 @@ -/* UIxJSClose.h - this file is part of SOGo - * - * Copyright (C) 2006 Inverse inc. - * - * Author: Wolfgang Sourdeau - * - * This file is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2, or (at your option) - * any later version. - * - * This file is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; see the file COPYING. If not, write to - * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef UIXJSCLOSE_H -#define UIXJSCLOSE_H - -#import - -@class NSString; - -@interface UIxJSClose : UIxComponent -{ - NSString *refreshMethod; -} - -- (void) setRefreshMethod: (NSString *) method; -- (NSString *) refreshMethod; -- (BOOL) hasRefreshMethod; - -@end - -#endif /* UIXJSCLOSE_H */ diff --git a/UI/Common/UIxJSClose.m b/UI/Common/UIxJSClose.m deleted file mode 100644 index 6a4c5b780..000000000 --- a/UI/Common/UIxJSClose.m +++ /dev/null @@ -1,71 +0,0 @@ -/* UIxJSClose.m - this file is part of SOGo - * - * Copyright (C) 2006 Inverse inc. - * - * Author: Wolfgang Sourdeau - * - * This file is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2, or (at your option) - * any later version. - * - * This file is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; see the file COPYING. If not, write to - * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#import - -#import "UIxJSClose.h" - -@implementation UIxJSClose - -- (id) init -{ - if ((self = [super init])) - refreshMethod = nil; - - return self; -} - -- (void) dealloc -{ - if (refreshMethod) - [refreshMethod release]; - [super dealloc]; -} - -- (NSString *) doctype -{ - return (@"\n" - @""); -} - -- (void) setRefreshMethod: (NSString *) method -{ - if (refreshMethod) - [refreshMethod release]; - refreshMethod = method; - if (refreshMethod) - [refreshMethod retain]; -} - -- (NSString *) refreshMethod -{ - return refreshMethod; -} - -- (BOOL) hasRefreshMethod -{ - return (refreshMethod != nil); -} - -@end diff --git a/UI/WebServerResources/dragdot.png b/UI/WebServerResources/dragdot.png new file mode 100644 index 000000000..4de496c87 Binary files /dev/null and b/UI/WebServerResources/dragdot.png differ diff --git a/UI/WebServerResources/generic.css b/UI/WebServerResources/generic.css index 5ef5cd2d6..13ddc9cf5 100644 --- a/UI/WebServerResources/generic.css +++ b/UI/WebServerResources/generic.css @@ -424,7 +424,7 @@ TD.tbtv_subject_headercell DIV.dragHandle { position: absolute; z-index: 1; - background-color: #E6E7E6; } + background: #E6E7E6 url("dragdot.png") no-repeat center center; } DIV.dragHandle:active { background-color: #99a; } diff --git a/UI/WebServerResources/iefixes.css b/UI/WebServerResources/iefixes.css index 2da881053..85f223247 100644 --- a/UI/WebServerResources/iefixes.css +++ b/UI/WebServerResources/iefixes.css @@ -177,7 +177,7 @@ A.toolbarButton:active SPAN { background-position: auto; /*broken*/ } A.toolbarButton, A.toolbarButton SPAN, A.button, A.button SPAN -{ color: #535D6D; } +{ color: #262B33; } DIV#toolbar { overflow: hidden; }